@peter.naydenov/cuts 2.1.0 → 2.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/Changelog.md +6 -0
  2. package/dist/cuts.umd.js +1 -1
  3. package/graphify-out/.graphify_labels.json +56 -0
  4. package/graphify-out/.graphify_root +1 -0
  5. package/graphify-out/GRAPH_REPORT.md +116 -247
  6. package/graphify-out/cache/ast/v0.8.39/043be2e32281a59e2bacb95418b95816b558a290aa581434b22666fb9a6a3a6c.json +1 -0
  7. package/graphify-out/cache/ast/v0.8.39/151934b5e716a5f1d14f4954ebca16c64f767c94ea65182896565a0a845a99d8.json +1 -0
  8. package/graphify-out/cache/ast/v0.8.39/2b64175ef58c779348b9f3b1bc212093f30455a8c3b30e90ec66bc0c83893a17.json +1 -0
  9. package/graphify-out/cache/ast/v0.8.39/93e3201ab0f7055efb1bd85240bdae46fcc21d36089825bafeb9ba97e082b25d.json +1 -0
  10. package/graphify-out/cache/ast/v0.8.39/a54f836214535c9d3ff5d4ba866f261748789984734e148a99dff099f0977cd4.json +1 -0
  11. package/graphify-out/cache/ast/v0.8.39/ac32180db1477eed72583ce9d06051d06eb0336e02b1894789b5a039392b7255.json +1 -0
  12. package/graphify-out/cache/ast/v0.8.39/b3a576733a49496a7d162b3a08710f6ca29fd2678532e9406755046f6250acb9.json +1 -0
  13. package/graphify-out/cache/ast/v0.8.39/c2b57052ba235afaf3195c026546eabbe2ab6274aa24bc3e4481f92904fe6a9d.json +1 -0
  14. package/graphify-out/cache/stat-index.json +1 -0
  15. package/graphify-out/graph.html +69 -28
  16. package/graphify-out/graph.json +4052 -1782
  17. package/graphify-out/manifest.json +300 -50
  18. package/package.json +10 -10
  19. package/types/findInstructions.d.ts +1 -1
  20. package/types/findInstructions.d.ts.map +1 -1
  21. package/types/main.d.ts +76 -12
  22. package/types/main.d.ts.map +1 -1
  23. package/types/methods/hide.d.ts +1 -1
  24. package/types/methods/hide.d.ts.map +1 -1
  25. package/types/methods/jump.d.ts +1 -1
  26. package/types/methods/jump.d.ts.map +1 -1
  27. package/types/methods/jumpBack.d.ts +2 -2
  28. package/types/methods/jumpBack.d.ts.map +1 -1
  29. package/types/methods/jumpsReset.d.ts +1 -1
  30. package/types/methods/jumpsReset.d.ts.map +1 -1
  31. package/types/methods/listShortcuts.d.ts +1 -1
  32. package/types/methods/listShortcuts.d.ts.map +1 -1
  33. package/types/methods/setScenes.d.ts +11 -17
  34. package/types/methods/setScenes.d.ts.map +1 -1
  35. package/types/methods/show.d.ts +2 -2
  36. package/types/methods/show.d.ts.map +1 -1
  37. package/types/setInstruction.d.ts +1 -1
  38. package/types/setInstruction.d.ts.map +1 -1
@@ -3,7 +3,9 @@
3
3
  <head>
4
4
  <meta charset="UTF-8">
5
5
  <title>graphify - graphify-out/graph.html</title>
6
- <script src="https://unpkg.com/vis-network/standalone/umd/vis-network.min.js"></script>
6
+ <script src="https://unpkg.com/vis-network@9.1.6/standalone/umd/vis-network.min.js"
7
+ integrity="sha384-Ux6phic9PEHJ38YtrijhkzyJ8yQlH8i/+buBR8s3mAZOJrP1gwyvAcIYl3GWtpX1"
8
+ crossorigin="anonymous"></script>
7
9
  <style>
8
10
  * { box-sizing: border-box; margin: 0; padding: 0; }
9
11
  body { background: #0f0f1a; color: #e0e0e0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; display: flex; height: 100vh; overflow: hidden; }
@@ -33,6 +35,14 @@
33
35
  .legend-label { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
34
36
  .legend-count { color: #666; font-size: 11px; }
35
37
  #stats { padding: 10px 14px; border-top: 1px solid #2a2a4e; font-size: 11px; color: #555; }
38
+ #legend-controls { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; padding: 4px 0; }
39
+ #legend-controls label { display: flex; align-items: center; gap: 6px; cursor: pointer; font-size: 12px; color: #aaa; user-select: none; }
40
+ #legend-controls label:hover { color: #e0e0e0; }
41
+ .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; }
42
+ .legend-cb:checked, #select-all-cb:checked { background: #4E79A7; border-color: #4E79A7; }
43
+ .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); }
44
+ #select-all-cb:indeterminate { background: #4E79A7; border-color: #4E79A7; }
45
+ #select-all-cb:indeterminate::after { content: ''; position: absolute; left: 2px; top: 5px; width: 8px; height: 2px; background: #fff; border: none; transform: none; }
36
46
  </style>
37
47
  </head>
38
48
  <body>
@@ -48,14 +58,17 @@
48
58
  </div>
49
59
  <div id="legend-wrap">
50
60
  <h3>Communities</h3>
61
+ <div id="legend-controls">
62
+ <label><input type="checkbox" id="select-all-cb" checked onchange="toggleAllCommunities(!this.checked)">Select All</label>
63
+ </div>
51
64
  <div id="legend"></div>
52
65
  </div>
53
- <div id="stats">136 nodes &middot; 138 edges &middot; 44 communities</div>
66
+ <div id="stats">257 nodes &middot; 249 edges &middot; 54 communities</div>
54
67
  </div>
55
68
  <script>
56
- const RAW_NODES = [{"id": "playwright_config", "label": "playwright.config.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "playwright.config.js", "community": 19, "community_name": "Playwright Config", "source_file": "playwright.config.js", "file_type": "code", "degree": 0}, {"id": "vite_config", "label": "vite.config.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "vite.config.js", "community": 20, "community_name": "Vite Config", "source_file": "test-e2e/vite.config.js", "file_type": "code", "degree": 0}, {"id": "vitest_config", "label": "vitest.config.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest.config.js", "community": 21, "community_name": "Vitest Config", "source_file": "vitest.config.js", "file_type": "code", "degree": 0}, {"id": "main", "label": "main.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "main.js", "community": 10, "community_name": "Entry Point", "source_file": "src/main.js", "file_type": "code", "degree": 1}, {"id": "rollup_config", "label": "rollup.config.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "rollup.config.js", "community": 22, "community_name": "Rollup Config", "source_file": "rollup.config.js", "file_type": "code", "degree": 0}, {"id": "findinstructions_d", "label": "findInstructions.d.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "findInstructions.d.ts", "community": 23, "community_name": "findInstructions.d.ts", "source_file": "types/src/findInstructions.d.ts", "file_type": "code", "degree": 0}, {"id": "main_d", "label": "main.d.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "main.d.ts", "community": 24, "community_name": "main.d.ts", "source_file": "types/src/main.d.ts", "file_type": "code", "degree": 0}, {"id": "setinstruction_d", "label": "setInstruction.d.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "setInstruction.d.ts", "community": 25, "community_name": "setInstruction.d.ts", "source_file": "types/src/setInstruction.d.ts", "file_type": "code", "degree": 0}, {"id": "hide_d", "label": "hide.d.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "hide.d.ts", "community": 26, "community_name": "hide.d.ts", "source_file": "types/src/methods/hide.d.ts", "file_type": "code", "degree": 0}, {"id": "jumpsreset_d", "label": "jumpsReset.d.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "jumpsReset.d.ts", "community": 27, "community_name": "jumpsReset.d.ts", "source_file": "types/src/methods/jumpsReset.d.ts", "file_type": "code", "degree": 0}, {"id": "jump_d", "label": "jump.d.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "jump.d.ts", "community": 28, "community_name": "jump.d.ts", "source_file": "types/src/methods/jump.d.ts", "file_type": "code", "degree": 0}, {"id": "listshortcuts_d", "label": "listShortcuts.d.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "listShortcuts.d.ts", "community": 29, "community_name": "listShortcuts.d.ts", "source_file": "types/src/methods/listShortcuts.d.ts", "file_type": "code", "degree": 0}, {"id": "jumpback_d", "label": "jumpBack.d.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "jumpBack.d.ts", "community": 30, "community_name": "jumpBack.d.ts", "source_file": "types/src/methods/jumpBack.d.ts", "file_type": "code", "degree": 0}, {"id": "index_d", "label": "index.d.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.d.ts", "community": 31, "community_name": "index.d.ts", "source_file": "types/methods/index.d.ts", "file_type": "code", "degree": 0}, {"id": "show_d", "label": "show.d.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "show.d.ts", "community": 32, "community_name": "show.d.ts", "source_file": "types/src/methods/show.d.ts", "file_type": "code", "degree": 0}, {"id": "setscenes_d", "label": "setScenes.d.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "setScenes.d.ts", "community": 33, "community_name": "setScenes.d.ts", "source_file": "types/src/methods/setScenes.d.ts", "file_type": "code", "degree": 0}, {"id": "01_findposition_test", "label": "01-findPosition.test.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "01-findPosition.test.js", "community": 34, "community_name": "findPosition test", "source_file": "test/01-findPosition.test.js", "file_type": "code", "degree": 0}, {"id": "02_cuts_test", "label": "02-cuts.test.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "02-cuts.test.js", "community": 35, "community_name": "cuts test", "source_file": "test/02-cuts.test.js", "file_type": "code", "degree": 0}, {"id": "01_general_test", "label": "01-general.test.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "01-general.test.js", "community": 36, "community_name": "general test", "source_file": "test-e2e/01-general.test.js", "file_type": "code", "degree": 0}, {"id": "block_navigation", "label": "block-navigation.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 19.2, "font": {"size": 12, "color": "#ffffff"}, "title": "block-navigation.js", "community": 6, "community_name": "Block Navigation Module", "source_file": "coverage/lcov-report/block-navigation.js", "file_type": "code", "degree": 4}, {"id": "block_navigation_toggleclass", "label": "toggleClass()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "toggleClass()", "community": 6, "community_name": "Block Navigation Module", "source_file": "coverage/lcov-report/block-navigation.js", "file_type": "code", "degree": 2}, {"id": "block_navigation_makecurrent", "label": "makeCurrent()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 19.2, "font": {"size": 12, "color": "#ffffff"}, "title": "makeCurrent()", "community": 6, "community_name": "Block Navigation Module", "source_file": "coverage/lcov-report/block-navigation.js", "file_type": "code", "degree": 4}, {"id": "block_navigation_gotoprevious", "label": "goToPrevious()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "goToPrevious()", "community": 6, "community_name": "Block Navigation Module", "source_file": "coverage/lcov-report/block-navigation.js", "file_type": "code", "degree": 2}, {"id": "block_navigation_gotonext", "label": "goToNext()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "goToNext()", "community": 6, "community_name": "Block Navigation Module", "source_file": "coverage/lcov-report/block-navigation.js", "file_type": "code", "degree": 2}, {"id": "prettify", "label": "prettify.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 33.1, "font": {"size": 12, "color": "#ffffff"}, "title": "prettify.js", "community": 3, "community_name": "Code Prettify Module", "source_file": "coverage/lcov-report/prettify.js", "file_type": "code", "degree": 10}, {"id": "prettify_k", "label": "k()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "k()", "community": 3, "community_name": "Code Prettify Module", "source_file": "coverage/lcov-report/prettify.js", "file_type": "code", "degree": 2}, {"id": "prettify_a", "label": "a()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "a()", "community": 3, "community_name": "Code Prettify Module", "source_file": "coverage/lcov-report/prettify.js", "file_type": "code", "degree": 2}, {"id": "prettify_b", "label": "B()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "B()", "community": 3, "community_name": "Code Prettify Module", "source_file": "coverage/lcov-report/prettify.js", "file_type": "code", "degree": 3}, {"id": "prettify_o", "label": "o()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "o()", "community": 3, "community_name": "Code Prettify Module", "source_file": "coverage/lcov-report/prettify.js", "file_type": "code", "degree": 1}, {"id": "prettify_g", "label": "g()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 21.5, "font": {"size": 12, "color": "#ffffff"}, "title": "g()", "community": 3, "community_name": "Code Prettify Module", "source_file": "coverage/lcov-report/prettify.js", "file_type": "code", "degree": 5}, {"id": "prettify_i", "label": "i()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "i()", "community": 3, "community_name": "Code Prettify Module", "source_file": "coverage/lcov-report/prettify.js", "file_type": "code", "degree": 2}, {"id": "prettify_q", "label": "Q()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 19.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Q()", "community": 3, "community_name": "Code Prettify Module", "source_file": "coverage/lcov-report/prettify.js", "file_type": "code", "degree": 4}, {"id": "prettify_d", "label": "D()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 19.2, "font": {"size": 12, "color": "#ffffff"}, "title": "D()", "community": 3, "community_name": "Code Prettify Module", "source_file": "coverage/lcov-report/prettify.js", "file_type": "code", "degree": 4}, {"id": "prettify_c", "label": "c()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "c()", "community": 3, "community_name": "Code Prettify Module", "source_file": "coverage/lcov-report/prettify.js", "file_type": "code", "degree": 1}, {"id": "prettify_y", "label": "y()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 19.2, "font": {"size": 12, "color": "#ffffff"}, "title": "y()", "community": 3, "community_name": "Code Prettify Module", "source_file": "coverage/lcov-report/prettify.js", "file_type": "code", "degree": 4}, {"id": "sorter", "label": "sorter.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "sorter.js", "community": 2, "community_name": "Table Sorter Module", "source_file": "coverage/lcov-report/sorter.js", "file_type": "code", "degree": 13}, {"id": "sorter_gettable", "label": "getTable()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "getTable()", "community": 2, "community_name": "Table Sorter Module", "source_file": "coverage/lcov-report/sorter.js", "file_type": "code", "degree": 3}, {"id": "sorter_gettableheader", "label": "getTableHeader()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 19.2, "font": {"size": 12, "color": "#ffffff"}, "title": "getTableHeader()", "community": 2, "community_name": "Table Sorter Module", "source_file": "coverage/lcov-report/sorter.js", "file_type": "code", "degree": 4}, {"id": "sorter_gettablebody", "label": "getTableBody()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "getTableBody()", "community": 2, "community_name": "Table Sorter Module", "source_file": "coverage/lcov-report/sorter.js", "file_type": "code", "degree": 3}, {"id": "sorter_getnthcolumn", "label": "getNthColumn()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 21.5, "font": {"size": 12, "color": "#ffffff"}, "title": "getNthColumn()", "community": 2, "community_name": "Table Sorter Module", "source_file": "coverage/lcov-report/sorter.js", "file_type": "code", "degree": 5}, {"id": "sorter_onfilterinput", "label": "onFilterInput()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "onFilterInput()", "community": 2, "community_name": "Table Sorter Module", "source_file": "coverage/lcov-report/sorter.js", "file_type": "code", "degree": 1}, {"id": "sorter_addsearchbox", "label": "addSearchBox()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "addSearchBox()", "community": 2, "community_name": "Table Sorter Module", "source_file": "coverage/lcov-report/sorter.js", "file_type": "code", "degree": 1}, {"id": "sorter_loadcolumns", "label": "loadColumns()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "loadColumns()", "community": 2, "community_name": "Table Sorter Module", "source_file": "coverage/lcov-report/sorter.js", "file_type": "code", "degree": 2}, {"id": "sorter_loadrowdata", "label": "loadRowData()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "loadRowData()", "community": 2, "community_name": "Table Sorter Module", "source_file": "coverage/lcov-report/sorter.js", "file_type": "code", "degree": 2}, {"id": "sorter_loaddata", "label": "loadData()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "loadData()", "community": 2, "community_name": "Table Sorter Module", "source_file": "coverage/lcov-report/sorter.js", "file_type": "code", "degree": 3}, {"id": "sorter_sortbyindex", "label": "sortByIndex()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "sortByIndex()", "community": 2, "community_name": "Table Sorter Module", "source_file": "coverage/lcov-report/sorter.js", "file_type": "code", "degree": 2}, {"id": "sorter_removesortindicators", "label": "removeSortIndicators()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "removeSortIndicators()", "community": 2, "community_name": "Table Sorter Module", "source_file": "coverage/lcov-report/sorter.js", "file_type": "code", "degree": 3}, {"id": "sorter_addsortindicators", "label": "addSortIndicators()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "addSortIndicators()", "community": 2, "community_name": "Table Sorter Module", "source_file": "coverage/lcov-report/sorter.js", "file_type": "code", "degree": 3}, {"id": "sorter_enableui", "label": "enableUI()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 21.5, "font": {"size": 12, "color": "#ffffff"}, "title": "enableUI()", "community": 2, "community_name": "Table Sorter Module", "source_file": "coverage/lcov-report/sorter.js", "file_type": "code", "degree": 5}, {"id": "main_main", "label": "main()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "main()", "community": 10, "community_name": "Entry Point", "source_file": "src/main.js", "file_type": "code", "degree": 1}, {"id": "findinstructions", "label": "findInstructions.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "findInstructions.js", "community": 37, "community_name": "findInstructions Module", "source_file": "src/findInstructions.js", "file_type": "code", "degree": 0}, {"id": "setinstruction", "label": "setInstruction.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "setInstruction.js", "community": 11, "community_name": "Set Instruction Module", "source_file": "src/setInstruction.js", "file_type": "code", "degree": 1}, {"id": "setinstruction_setinstruction", "label": "setInstruction()", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "setInstruction()", "community": 11, "community_name": "Set Instruction Module", "source_file": "src/setInstruction.js", "file_type": "code", "degree": 1}, {"id": "listshortcuts", "label": "listShortcuts.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "listShortcuts.js", "community": 12, "community_name": "List Shortcuts Module", "source_file": "src/methods/listShortcuts.js", "file_type": "code", "degree": 1}, {"id": "listshortcuts_listshortcuts", "label": "listShortcuts()", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "listShortcuts()", "community": 12, "community_name": "List Shortcuts Module", "source_file": "src/methods/listShortcuts.js", "file_type": "code", "degree": 1}, {"id": "jumpsreset", "label": "jumpsReset.js", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "jumpsReset.js", "community": 13, "community_name": "jumpsReset Module", "source_file": "src/methods/jumpsReset.js", "file_type": "code", "degree": 1}, {"id": "jumpsreset_jumpsreset", "label": "jumpsReset()", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "jumpsReset()", "community": 13, "community_name": "jumpsReset Module", "source_file": "src/methods/jumpsReset.js", "file_type": "code", "degree": 1}, {"id": "jump", "label": "jump.js", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "jump.js", "community": 14, "community_name": "jump Module", "source_file": "src/methods/jump.js", "file_type": "code", "degree": 1}, {"id": "jump_jump", "label": "jump()", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "jump()", "community": 14, "community_name": "jump Module", "source_file": "src/methods/jump.js", "file_type": "code", "degree": 1}, {"id": "show", "label": "show.js", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "show.js", "community": 15, "community_name": "show Module", "source_file": "src/methods/show.js", "file_type": "code", "degree": 1}, {"id": "show_show", "label": "show()", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "show()", "community": 15, "community_name": "show Module", "source_file": "src/methods/show.js", "file_type": "code", "degree": 1}, {"id": "jumpback", "label": "jumpBack.js", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "jumpBack.js", "community": 16, "community_name": "jumpBack Module", "source_file": "src/methods/jumpBack.js", "file_type": "code", "degree": 1}, {"id": "jumpback_jumpback", "label": "jumpBack()", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "jumpBack()", "community": 16, "community_name": "jumpBack Module", "source_file": "src/methods/jumpBack.js", "file_type": "code", "degree": 1}, {"id": "setscenes", "label": "setScenes.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "setScenes.js", "community": 17, "community_name": "setScenes Module", "source_file": "src/methods/setScenes.js", "file_type": "code", "degree": 1}, {"id": "setscenes_setscenes", "label": "setScenes()", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "setScenes()", "community": 17, "community_name": "setScenes Module", "source_file": "src/methods/setScenes.js", "file_type": "code", "degree": 1}, {"id": "hide", "label": "hide.js", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "hide.js", "community": 18, "community_name": "hide Module", "source_file": "src/methods/hide.js", "file_type": "code", "degree": 1}, {"id": "hide_hide", "label": "hide()", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "hide()", "community": 18, "community_name": "hide Module", "source_file": "src/methods/hide.js", "file_type": "code", "degree": 1}, {"id": "changelog_app_error_event", "label": "@app-error Event", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "@app-error Event", "community": 1, "community_name": "Release Notes & Migration", "source_file": "Changelog.md", "file_type": "document", "degree": 2}, {"id": "changelog_loglevel", "label": "logLevel Configuration", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "logLevel Configuration", "community": 1, "community_name": "Release Notes & Migration", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_bug_ssr", "label": "Bug: SSR First Scene Loading", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Bug: SSR First Scene Loading", "community": 1, "community_name": "Release Notes & Migration", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_bug_long_scenes", "label": "Bug: Long Scene List State", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Bug: Long Scene List State", "community": 38, "community_name": "Bug: Long Scene List", "source_file": "Changelog.md", "file_type": "document", "degree": 0}, {"id": "changelog_v2_release", "label": "Cuts v2.0.0 Release", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 23.8, "font": {"size": 12, "color": "#ffffff"}, "title": "Cuts v2.0.0 Release", "community": 1, "community_name": "Release Notes & Migration", "source_file": "Changelog.md", "file_type": "document", "degree": 6}, {"id": "changelog_v1_4_jumps", "label": "Jump/JumpBack/JumpsReset Methods", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Jump/JumpBack/JumpsReset Methods", "community": 39, "community_name": "Jump Methods (Changelog)", "source_file": "Changelog.md", "file_type": "document", "degree": 0}, {"id": "changelog_afterShow_beforeHide_hooks", "label": "Scene Hooks: afterShow and beforeHide", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Scene Hooks: afterShow and beforeHide", "community": 0, "community_name": "Scene Methods (README + Changelog)", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "migration_v1_to_v2", "label": "Migration v1.x to v2.x", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 19.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Migration v1.x to v2.x", "community": 1, "community_name": "Release Notes & Migration", "source_file": "Migration.guide.md", "file_type": "document", "degree": 4}, {"id": "migration_click_target", "label": "clickTarget Array Migration", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "clickTarget Array Migration", "community": 1, "community_name": "Release Notes & Migration", "source_file": "Migration.guide.md", "file_type": "document", "degree": 3}, {"id": "migration_hover_target", "label": "hoverTarget Array Migration", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "hoverTarget Array Migration", "community": 1, "community_name": "Release Notes & Migration", "source_file": "Migration.guide.md", "file_type": "document", "degree": 3}, {"id": "migration_shortcuts_v4", "label": "Shortcuts v4.x Upgrade", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Shortcuts v4.x Upgrade", "community": 1, "community_name": "Release Notes & Migration", "source_file": "Migration.guide.md", "file_type": "document", "degree": 2}, {"id": "migration_rationale", "label": "Rationale: Array Target Flexibility", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Rationale: Array Target Flexibility", "community": 1, "community_name": "Release Notes & Migration", "source_file": "Migration.guide.md", "file_type": "document", "degree": 2}, {"id": "readme_cuts", "label": "Cuts Library (@peter.naydenov/cuts)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 28.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Cuts Library (@peter.naydenov/cuts)", "community": 1, "community_name": "Release Notes & Migration", "source_file": "README.md", "file_type": "document", "degree": 8}, {"id": "readme_shortcuts", "label": "@peter.naydenov/shortcuts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 30.8, "font": {"size": 12, "color": "#ffffff"}, "title": "@peter.naydenov/shortcuts", "community": 4, "community_name": "Plugin System (README)", "source_file": "README.md", "file_type": "document", "degree": 9}, {"id": "readme_log", "label": "@peter.naydenov/log", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "@peter.naydenov/log", "community": 1, "community_name": "Release Notes & Migration", "source_file": "README.md", "file_type": "document", "degree": 2}, {"id": "readme_scene", "label": "Scene (SPA visual state)", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Scene (SPA visual state)", "community": 0, "community_name": "Scene Methods (README + Changelog)", "source_file": "README.md", "file_type": "document", "degree": 13}, {"id": "readme_jumpstack", "label": "Jump Stack", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Jump Stack", "community": 0, "community_name": "Scene Methods (README + Changelog)", "source_file": "README.md", "file_type": "document", "degree": 3}, {"id": "readme_dependencies", "label": "Dependencies Object", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Dependencies Object", "community": 9, "community_name": "Dependencies Object", "source_file": "README.md", "file_type": "document", "degree": 2}, {"id": "readme_parents", "label": "Scene Parents List", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Scene Parents List", "community": 0, "community_name": "Scene Methods (README + Changelog)", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_show", "label": "show() method", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "show() method", "community": 0, "community_name": "Scene Methods (README + Changelog)", "source_file": "README.md", "file_type": "document", "degree": 2}, {"id": "readme_hide", "label": "hide() method", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "hide() method", "community": 0, "community_name": "Scene Methods (README + Changelog)", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_aftershow", "label": "afterShow() method", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "afterShow() method", "community": 0, "community_name": "Scene Methods (README + Changelog)", "source_file": "README.md", "file_type": "document", "degree": 3}, {"id": "readme_beforehide", "label": "beforeHide() method", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "beforeHide() method", "community": 0, "community_name": "Scene Methods (README + Changelog)", "source_file": "README.md", "file_type": "document", "degree": 3}, {"id": "readme_jump", "label": "jump() method", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "jump() method", "community": 0, "community_name": "Scene Methods (README + Changelog)", "source_file": "README.md", "file_type": "document", "degree": 3}, {"id": "readme_jumpback", "label": "jumpBack() method", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "jumpBack() method", "community": 0, "community_name": "Scene Methods (README + Changelog)", "source_file": "README.md", "file_type": "document", "degree": 2}, {"id": "readme_jumpsreset", "label": "jumpsReset() method", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "jumpsReset() method", "community": 0, "community_name": "Scene Methods (README + Changelog)", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_setscenes", "label": "setScenes() method", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "setScenes() method", "community": 0, "community_name": "Scene Methods (README + Changelog)", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_setdependencies", "label": "setDependencies() method", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "setDependencies() method", "community": 9, "community_name": "Dependencies Object", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_getdependencies", "label": "getDependencies() method", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "getDependencies() method", "community": 9, "community_name": "Dependencies Object", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_listscenes", "label": "listScenes() method", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "listScenes() method", "community": 40, "community_name": "listScenes() (doc)", "source_file": "README.md", "file_type": "document", "degree": 0}, {"id": "readme_listshortcuts", "label": "listShortcuts() method", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "listShortcuts() method", "community": 41, "community_name": "listShortcuts() (doc)", "source_file": "README.md", "file_type": "document", "degree": 0}, {"id": "readme_enableplugin", "label": "enablePlugin() method", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 23.8, "font": {"size": 12, "color": "#ffffff"}, "title": "enablePlugin() method", "community": 4, "community_name": "Plugin System (README)", "source_file": "README.md", "file_type": "document", "degree": 6}, {"id": "readme_disableplugin", "label": "disablePlugin() method", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "disablePlugin() method", "community": 4, "community_name": "Plugin System (README)", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_getstate", "label": "getState() method", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "getState() method", "community": 42, "community_name": "getState() (doc)", "source_file": "README.md", "file_type": "document", "degree": 0}, {"id": "readme_emit", "label": "emit() method", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "emit() method", "community": 4, "community_name": "Plugin System (README)", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_loadplugins", "label": "loadPlugins() method", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 21.5, "font": {"size": 12, "color": "#ffffff"}, "title": "loadPlugins() method", "community": 4, "community_name": "Plugin System (README)", "source_file": "README.md", "file_type": "document", "degree": 5}, {"id": "readme_loglevel", "label": "logLevel configuration option", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "logLevel configuration option", "community": 1, "community_name": "Release Notes & Migration", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_app_error", "label": "@app-error event", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "@app-error event", "community": 1, "community_name": "Release Notes & Migration", "source_file": "README.md", "file_type": "document", "degree": 3}, {"id": "readme_plugin_key", "label": "Key plugin (keyboard)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Key plugin (keyboard)", "community": 4, "community_name": "Plugin System (README)", "source_file": "README.md", "file_type": "document", "degree": 3}, {"id": "readme_plugin_click", "label": "Click plugin (mouse)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 19.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Click plugin (mouse)", "community": 4, "community_name": "Plugin System (README)", "source_file": "README.md", "file_type": "document", "degree": 4}, {"id": "readme_plugin_form", "label": "Form plugin (input)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Form plugin (input)", "community": 4, "community_name": "Plugin System (README)", "source_file": "README.md", "file_type": "document", "degree": 3}, {"id": "readme_plugin_hover", "label": "Hover plugin", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 19.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Hover plugin", "community": 4, "community_name": "Plugin System (README)", "source_file": "README.md", "file_type": "document", "degree": 4}, {"id": "readme_plugin_scroll", "label": "Scroll plugin", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Scroll plugin", "community": 4, "community_name": "Plugin System (README)", "source_file": "README.md", "file_type": "document", "degree": 3}, {"id": "readme_rationale_aftershow", "label": "Rationale: afterShow models document.onload for deferred SPA work", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Rationale: afterShow models document.onload for deferred SPA work", "community": 0, "community_name": "Scene Methods (README + Changelog)", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_rationale_beforehide", "label": "Rationale: beforeHide inspired by beforeunload event", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Rationale: beforeHide inspired by beforeunload event", "community": 0, "community_name": "Scene Methods (README + Changelog)", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_rationale_scene_decomposition", "label": "Rationale: scenes enable independent dev/test", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Rationale: scenes enable independent dev/test", "community": 0, "community_name": "Scene Methods (README + Changelog)", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_rationale_flow_reshape", "label": "Rationale: scene-based design makes flow easy to reshape", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Rationale: scene-based design makes flow easy to reshape", "community": 1, "community_name": "Release Notes & Migration", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_rationale_parallel_dev", "label": "Rationale: scene isolation enables parallel developer work", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Rationale: scene isolation enables parallel developer work", "community": 0, "community_name": "Scene Methods (README + Changelog)", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_rationale_ui_decoupling", "label": "Rationale: shortcuts library decouples UI from native DOM events", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Rationale: shortcuts library decouples UI from native DOM events", "community": 4, "community_name": "Plugin System (README)", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_rationale_framework_agnostic", "label": "Rationale: scene separation allows any template engine (react/vue/svelte/morph)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Rationale: scene separation allows any template engine (react/vue/svelte/morph)", "community": 1, "community_name": "Release Notes & Migration", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_rationale_visual_reuse", "label": "Rationale: separated user-interaction enables visual component reuse", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Rationale: separated user-interaction enables visual component reuse", "community": 0, "community_name": "Scene Methods (README + Changelog)", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_morph", "label": "morph (template engine example)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "morph (template engine example)", "community": 1, "community_name": "Release Notes & Migration", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "agents_graphify", "label": "graphify Knowledge Graph", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "graphify Knowledge Graph", "community": 7, "community_name": "graphify Tooling (self)", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_graphify_out", "label": "graphify-out/ Directory", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 19.2, "font": {"size": 12, "color": "#ffffff"}, "title": "graphify-out/ Directory", "community": 7, "community_name": "graphify Tooling (self)", "source_file": "AGENTS.md", "file_type": "document", "degree": 4}, {"id": "agents_graph_report", "label": "GRAPH_REPORT.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "GRAPH_REPORT.md", "community": 7, "community_name": "graphify Tooling (self)", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_wiki_index", "label": "wiki/index.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "wiki/index.md", "community": 7, "community_name": "graphify Tooling (self)", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_watch_rebuild", "label": "graphify.watch._rebuild_code", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "graphify.watch._rebuild_code", "community": 7, "community_name": "graphify Tooling (self)", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "cuts_brand_logo", "label": "Cuts Brand Logo", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 19.2, "font": {"size": 12, "color": "#ffffff"}, "title": "Cuts Brand Logo", "community": 5, "community_name": "Brand & Visual Identity", "source_file": "cuts.png", "file_type": "image", "degree": 4}, {"id": "cuts_wordmark", "label": "Cuts Wordmark", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Cuts Wordmark", "community": 5, "community_name": "Brand & Visual Identity", "source_file": "cuts.png", "file_type": "image", "degree": 2}, {"id": "cuts_film_strip_icon", "label": "Film Strip Icon", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Film Strip Icon", "community": 5, "community_name": "Brand & Visual Identity", "source_file": "cuts.png", "file_type": "image", "degree": 2}, {"id": "cuts_background_pattern", "label": "Decorative N-Pattern Background", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Decorative N-Pattern Background", "community": 5, "community_name": "Brand & Visual Identity", "source_file": "cuts.png", "file_type": "image", "degree": 2}, {"id": "cuts_film_editing_metaphor", "label": "Film Editing Metaphor", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "Film Editing Metaphor", "community": 5, "community_name": "Brand & Visual Identity", "source_file": "cuts.png", "file_type": "image", "degree": 3}, {"id": "cuts_brand_identity", "label": "Git-Cuts Brand Identity", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Git-Cuts Brand Identity", "community": 5, "community_name": "Brand & Visual Identity", "source_file": "cuts.png", "file_type": "image", "degree": 2}, {"id": "cuts_dark_theme_design", "label": "Dark Theme Visual Design", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "Dark Theme Visual Design", "community": 5, "community_name": "Brand & Visual Identity", "source_file": "cuts.png", "file_type": "image", "degree": 1}, {"id": "favicon_favicon_image", "label": "lcov-report favicon", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 16.9, "font": {"size": 12, "color": "#ffffff"}, "title": "lcov-report favicon", "community": 8, "community_name": "Coverage Report Assets", "source_file": "coverage/lcov-report/favicon.png", "file_type": "image", "degree": 3}, {"id": "favicon_building_silhouette", "label": "Dark architectural silhouette (dome + towers)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Dark architectural silhouette (dome + towers)", "community": 8, "community_name": "Coverage Report Assets", "source_file": "coverage/lcov-report/favicon.png", "file_type": "image", "degree": 2}, {"id": "favicon_yellow_background", "label": "Yellow/olive solid background fill", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.6, "font": {"size": 12, "color": "#ffffff"}, "title": "Yellow/olive solid background fill", "community": 8, "community_name": "Coverage Report Assets", "source_file": "coverage/lcov-report/favicon.png", "file_type": "image", "degree": 2}, {"id": "favicon_lcov_report", "label": "lcov HTML coverage report (parent context)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 12.3, "font": {"size": 0, "color": "#ffffff"}, "title": "lcov HTML coverage report (parent context)", "community": 8, "community_name": "Coverage Report Assets", "source_file": "coverage/lcov-report/favicon.png", "file_type": "image", "degree": 1}, {"id": "sort-arrow-sprite_sort_indicators", "label": "Sort Arrow Sprite (lcov report)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Sort Arrow Sprite (lcov report)", "community": 43, "community_name": "Sort Arrow Sprite", "source_file": "coverage/lcov-report/sort-arrow-sprite.png", "file_type": "image", "degree": 0}];
57
- const RAW_EDGES = [{"from": "main", "to": "main_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "block_navigation", "to": "block_navigation_toggleclass", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "block_navigation", "to": "block_navigation_makecurrent", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "block_navigation", "to": "block_navigation_gotoprevious", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "block_navigation", "to": "block_navigation_gotonext", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "block_navigation_toggleclass", "to": "block_navigation_makecurrent", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "block_navigation_makecurrent", "to": "block_navigation_gotoprevious", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "block_navigation_makecurrent", "to": "block_navigation_gotonext", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prettify", "to": "prettify_k", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prettify", "to": "prettify_a", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prettify", "to": "prettify_b", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prettify", "to": "prettify_o", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prettify", "to": "prettify_g", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prettify", "to": "prettify_i", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prettify", "to": "prettify_q", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prettify", "to": "prettify_d", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prettify", "to": "prettify_c", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prettify", "to": "prettify_y", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prettify_k", "to": "prettify_g", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prettify_a", "to": "prettify_d", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prettify_b", "to": "prettify_g", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prettify_b", "to": "prettify_y", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prettify_g", "to": "prettify_q", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prettify_g", "to": "prettify_i", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prettify_q", "to": "prettify_d", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prettify_q", "to": "prettify_y", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "prettify_d", "to": "prettify_y", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter", "to": "sorter_gettable", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter", "to": "sorter_gettableheader", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter", "to": "sorter_gettablebody", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter", "to": "sorter_getnthcolumn", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter", "to": "sorter_onfilterinput", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter", "to": "sorter_addsearchbox", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter", "to": "sorter_loadcolumns", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter", "to": "sorter_loadrowdata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter", "to": "sorter_loaddata", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter", "to": "sorter_sortbyindex", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter", "to": "sorter_removesortindicators", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter", "to": "sorter_addsortindicators", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter", "to": "sorter_enableui", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter_gettable", "to": "sorter_gettableheader", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter_gettable", "to": "sorter_gettablebody", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter_gettableheader", "to": "sorter_getnthcolumn", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter_gettableheader", "to": "sorter_loadcolumns", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter_gettablebody", "to": "sorter_loaddata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter_getnthcolumn", "to": "sorter_removesortindicators", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter_getnthcolumn", "to": "sorter_addsortindicators", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter_getnthcolumn", "to": "sorter_enableui", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter_loadrowdata", "to": "sorter_loaddata", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter_sortbyindex", "to": "sorter_enableui", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter_removesortindicators", "to": "sorter_enableui", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "sorter_addsortindicators", "to": "sorter_enableui", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "setinstruction", "to": "setinstruction_setinstruction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "listshortcuts", "to": "listshortcuts_listshortcuts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "jumpsreset", "to": "jumpsreset_jumpsreset", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "jump", "to": "jump_jump", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "show", "to": "show_show", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "jumpback", "to": "jumpback_jumpback", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "setscenes", "to": "setscenes_setscenes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "hide", "to": "hide_hide", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_app_error_event", "to": "changelog_v2_release", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_app_error_event", "to": "readme_cuts", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "changelog_loglevel", "to": "changelog_v2_release", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_bug_ssr", "to": "changelog_v2_release", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_v2_release", "to": "readme_cuts", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_v2_release", "to": "migration_v1_to_v2", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "changelog_v2_release", "to": "migration_shortcuts_v4", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "changelog_afterShow_beforeHide_hooks", "to": "readme_scene", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "migration_v1_to_v2", "to": "migration_shortcuts_v4", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "migration_v1_to_v2", "to": "migration_click_target", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "migration_v1_to_v2", "to": "migration_hover_target", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "migration_click_target", "to": "migration_rationale", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "migration_click_target", "to": "readme_plugin_click", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "migration_hover_target", "to": "migration_rationale", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "migration_hover_target", "to": "readme_plugin_hover", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_cuts", "to": "readme_shortcuts", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts", "to": "readme_log", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts", "to": "readme_app_error", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts", "to": "readme_morph", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts", "to": "readme_rationale_flow_reshape", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts", "to": "readme_rationale_framework_agnostic", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_shortcuts", "to": "readme_emit", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_shortcuts", "to": "readme_scene", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_shortcuts", "to": "readme_plugin_key", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_shortcuts", "to": "readme_plugin_click", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_shortcuts", "to": "readme_plugin_form", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_shortcuts", "to": "readme_plugin_hover", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_shortcuts", "to": "readme_plugin_scroll", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_shortcuts", "to": "readme_rationale_ui_decoupling", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_log", "to": "readme_app_error", "label": "cites", "title": "cites [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_scene", "to": "readme_show", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_scene", "to": "readme_hide", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_scene", "to": "readme_aftershow", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_scene", "to": "readme_beforehide", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_scene", "to": "readme_parents", "label": "shares_data_with", "title": "shares_data_with [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_scene", "to": "readme_setscenes", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_scene", "to": "readme_jump", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_scene", "to": "readme_jumpback", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_scene", "to": "readme_rationale_scene_decomposition", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_scene", "to": "readme_rationale_parallel_dev", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_scene", "to": "readme_rationale_visual_reuse", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_jumpstack", "to": "readme_jump", "label": "shares_data_with", "title": "shares_data_with [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_jumpstack", "to": "readme_jumpback", "label": "shares_data_with", "title": "shares_data_with [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_jumpstack", "to": "readme_jumpsreset", "label": "shares_data_with", "title": "shares_data_with [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_dependencies", "to": "readme_setdependencies", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_dependencies", "to": "readme_getdependencies", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_show", "to": "readme_jump", "label": "semantically_similar_to", "title": "semantically_similar_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_aftershow", "to": "readme_beforehide", "label": "semantically_similar_to", "title": "semantically_similar_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_aftershow", "to": "readme_rationale_aftershow", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_beforehide", "to": "readme_rationale_beforehide", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_enableplugin", "to": "readme_plugin_key", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_enableplugin", "to": "readme_plugin_click", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_enableplugin", "to": "readme_plugin_form", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_enableplugin", "to": "readme_plugin_hover", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_enableplugin", "to": "readme_plugin_scroll", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_enableplugin", "to": "readme_disableplugin", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_loadplugins", "to": "readme_plugin_key", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_loadplugins", "to": "readme_plugin_click", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_loadplugins", "to": "readme_plugin_form", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_loadplugins", "to": "readme_plugin_hover", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_loadplugins", "to": "readme_plugin_scroll", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_loglevel", "to": "readme_app_error", "label": "conceptually_related_to", "title": "conceptually_related_to [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_graphify", "to": "agents_graphify_out", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_graphify_out", "to": "agents_graph_report", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_graphify_out", "to": "agents_wiki_index", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_graphify_out", "to": "agents_watch_rebuild", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cuts_brand_logo", "to": "cuts_wordmark", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cuts_brand_logo", "to": "cuts_film_strip_icon", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cuts_brand_logo", "to": "cuts_background_pattern", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cuts_brand_logo", "to": "cuts_brand_identity", "label": "implements", "title": "implements [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "cuts_wordmark", "to": "cuts_film_editing_metaphor", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "cuts_film_strip_icon", "to": "cuts_film_editing_metaphor", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "cuts_background_pattern", "to": "cuts_dark_theme_design", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "cuts_film_editing_metaphor", "to": "cuts_brand_identity", "label": "rationale_for", "title": "rationale_for [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "favicon_favicon_image", "to": "favicon_lcov_report", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "favicon_favicon_image", "to": "favicon_building_silhouette", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "favicon_favicon_image", "to": "favicon_yellow_background", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "favicon_building_silhouette", "to": "favicon_yellow_background", "label": "shares_data_with", "title": "shares_data_with [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}];
58
- const LEGEND = [{"cid": 0, "color": "#4E79A7", "label": "Scene Methods (README + Changelog)", "count": 17}, {"cid": 1, "color": "#F28E2B", "label": "Release Notes &amp; Migration", "count": 16}, {"cid": 2, "color": "#E15759", "label": "Table Sorter Module", "count": 14}, {"cid": 3, "color": "#76B7B2", "label": "Code Prettify Module", "count": 11}, {"cid": 4, "color": "#59A14F", "label": "Plugin System (README)", "count": 11}, {"cid": 5, "color": "#EDC948", "label": "Brand &amp; Visual Identity", "count": 7}, {"cid": 6, "color": "#B07AA1", "label": "Block Navigation Module", "count": 5}, {"cid": 7, "color": "#FF9DA7", "label": "graphify Tooling (self)", "count": 5}, {"cid": 8, "color": "#9C755F", "label": "Coverage Report Assets", "count": 4}, {"cid": 9, "color": "#BAB0AC", "label": "Dependencies Object", "count": 3}, {"cid": 10, "color": "#4E79A7", "label": "Entry Point", "count": 2}, {"cid": 11, "color": "#F28E2B", "label": "Set Instruction Module", "count": 2}, {"cid": 12, "color": "#E15759", "label": "List Shortcuts Module", "count": 2}, {"cid": 13, "color": "#76B7B2", "label": "jumpsReset Module", "count": 2}, {"cid": 14, "color": "#59A14F", "label": "jump Module", "count": 2}, {"cid": 15, "color": "#EDC948", "label": "show Module", "count": 2}, {"cid": 16, "color": "#B07AA1", "label": "jumpBack Module", "count": 2}, {"cid": 17, "color": "#FF9DA7", "label": "setScenes Module", "count": 2}, {"cid": 18, "color": "#9C755F", "label": "hide Module", "count": 2}, {"cid": 19, "color": "#BAB0AC", "label": "Playwright Config", "count": 1}, {"cid": 20, "color": "#4E79A7", "label": "Vite Config", "count": 1}, {"cid": 21, "color": "#F28E2B", "label": "Vitest Config", "count": 1}, {"cid": 22, "color": "#E15759", "label": "Rollup Config", "count": 1}, {"cid": 23, "color": "#76B7B2", "label": "findInstructions.d.ts", "count": 1}, {"cid": 24, "color": "#59A14F", "label": "main.d.ts", "count": 1}, {"cid": 25, "color": "#EDC948", "label": "setInstruction.d.ts", "count": 1}, {"cid": 26, "color": "#B07AA1", "label": "hide.d.ts", "count": 1}, {"cid": 27, "color": "#FF9DA7", "label": "jumpsReset.d.ts", "count": 1}, {"cid": 28, "color": "#9C755F", "label": "jump.d.ts", "count": 1}, {"cid": 29, "color": "#BAB0AC", "label": "listShortcuts.d.ts", "count": 1}, {"cid": 30, "color": "#4E79A7", "label": "jumpBack.d.ts", "count": 1}, {"cid": 31, "color": "#F28E2B", "label": "index.d.ts", "count": 1}, {"cid": 32, "color": "#E15759", "label": "show.d.ts", "count": 1}, {"cid": 33, "color": "#76B7B2", "label": "setScenes.d.ts", "count": 1}, {"cid": 34, "color": "#59A14F", "label": "findPosition test", "count": 1}, {"cid": 35, "color": "#EDC948", "label": "cuts test", "count": 1}, {"cid": 36, "color": "#B07AA1", "label": "general test", "count": 1}, {"cid": 37, "color": "#FF9DA7", "label": "findInstructions Module", "count": 1}, {"cid": 38, "color": "#9C755F", "label": "Bug: Long Scene List", "count": 1}, {"cid": 39, "color": "#BAB0AC", "label": "Jump Methods (Changelog)", "count": 1}, {"cid": 40, "color": "#4E79A7", "label": "listScenes() (doc)", "count": 1}, {"cid": 41, "color": "#F28E2B", "label": "listShortcuts() (doc)", "count": 1}, {"cid": 42, "color": "#E15759", "label": "getState() (doc)", "count": 1}, {"cid": 43, "color": "#76B7B2", "label": "Sort Arrow Sprite", "count": 1}];
69
+ const RAW_NODES = [{"id": "main", "label": "main.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "main.js", "community": 10, "community_name": "Community 10", "source_file": "main.js", "file_type": "code", "degree": 2}, {"id": "package", "label": "package.json", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 31.0, "font": {"size": 12, "color": "#ffffff"}, "title": "package.json", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 14}, {"id": "package_name", "label": "name", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "name", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_description", "label": "description", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "description", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_version", "label": "version", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "version", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_license", "label": "license", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "license", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_author", "label": "author", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "author", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_main", "label": "main", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "main", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_type", "label": "type", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "type", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_types", "label": "types", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "types", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_exports", "label": "exports", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 20.5, "font": {"size": 12, "color": "#ffffff"}, "title": "exports", "community": 16, "community_name": "Community 16", "source_file": "package.json", "file_type": "code", "degree": 7}, {"id": "package_import", "label": "import", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "import", "community": 16, "community_name": "Community 16", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_require", "label": "require", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "require", "community": 16, "community_name": "Community 16", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_default", "label": "default", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "default", "community": 16, "community_name": "Community 16", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_exports_package_json", "label": "./package.json", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "./package.json", "community": 16, "community_name": "Community 16", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_exports_dist", "label": "./dist/*", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "./dist/*", "community": 16, "community_name": "Community 16", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_exports_src", "label": "./src/*", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "./src/*", "community": 16, "community_name": "Community 16", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts", "label": "scripts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 22.0, "font": {"size": 12, "color": "#ffffff"}, "title": "scripts", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 8}, {"id": "package_scripts_dev", "label": "dev", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "dev", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_build", "label": "build", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "build", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_postbuild", "label": "postbuild", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "postbuild", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_preview", "label": "preview", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "preview", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_test", "label": "test", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "test", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_test_e2e", "label": "test:e2e", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "test:e2e", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_scripts_cover", "label": "cover", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "cover", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies", "label": "devDependencies", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 31.0, "font": {"size": 12, "color": "#ffffff"}, "title": "devDependencies", "community": 12, "community_name": "Community 12", "source_file": "package.json", "file_type": "code", "degree": 14}, {"id": "package_devdependencies_peter_naydenov_visual_controller_for_vue3", "label": "@peter.naydenov/visual-controller-for-vue3", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@peter.naydenov/visual-controller-for-vue3", "community": 12, "community_name": "Community 12", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_playwright_test", "label": "@playwright/test", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@playwright/test", "community": 12, "community_name": "Community 12", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_rollup_plugin_commonjs", "label": "@rollup/plugin-commonjs", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@rollup/plugin-commonjs", "community": 12, "community_name": "Community 12", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_rollup_plugin_node_resolve", "label": "@rollup/plugin-node-resolve", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@rollup/plugin-node-resolve", "community": 12, "community_name": "Community 12", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_rollup_plugin_terser", "label": "@rollup/plugin-terser", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@rollup/plugin-terser", "community": 12, "community_name": "Community 12", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_types_node", "label": "@types/node", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@types/node", "community": 12, "community_name": "Community 12", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_vitejs_plugin_vue", "label": "@vitejs/plugin-vue", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@vitejs/plugin-vue", "community": 12, "community_name": "Community 12", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_vitest_coverage_v8", "label": "@vitest/coverage-v8", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@vitest/coverage-v8", "community": 12, "community_name": "Community 12", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_rollup", "label": "rollup", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "rollup", "community": 12, "community_name": "Community 12", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_typescript", "label": "typescript", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "typescript", "community": 12, "community_name": "Community 12", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_vite", "label": "vite", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "vite", "community": 12, "community_name": "Community 12", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_vitest", "label": "vitest", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest", "community": 12, "community_name": "Community 12", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_devdependencies_vue", "label": "vue", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "vue", "community": 12, "community_name": "Community 12", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies", "label": "dependencies", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "dependencies", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 4}, {"id": "package_dependencies_peter_naydenov_log", "label": "@peter.naydenov/log", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@peter.naydenov/log", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_peter_naydenov_shortcuts", "label": "@peter.naydenov/shortcuts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@peter.naydenov/shortcuts", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_dependencies_ask_for_promise", "label": "ask-for-promise", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "ask-for-promise", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_keywords", "label": "keywords", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "keywords", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_allowscripts", "label": "allowScripts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "allowScripts", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 3}, {"id": "package_allowscripts_fsevents_2_3_3", "label": "fsevents@2.3.3", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "fsevents@2.3.3", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "package_allowscripts_fsevents_2_3_2", "label": "fsevents@2.3.2", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "fsevents@2.3.2", "community": 2, "community_name": "Community 2", "source_file": "package.json", "file_type": "code", "degree": 1}, {"id": "playwright_config", "label": "playwright.config.js", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "playwright.config.js", "community": 19, "community_name": "Community 19", "source_file": "playwright.config.js", "file_type": "code", "degree": 0}, {"id": "rollup_config", "label": "rollup.config.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "rollup.config.js", "community": 22, "community_name": "Community 22", "source_file": "rollup.config.js", "file_type": "code", "degree": 0}, {"id": "src_findinstructions", "label": "findInstructions.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "findInstructions.js", "community": 10, "community_name": "Community 10", "source_file": "src/findInstructions.js", "file_type": "code", "degree": 2}, {"id": "src_main", "label": "main.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 40.0, "font": {"size": 12, "color": "#ffffff"}, "title": "main.js", "community": 10, "community_name": "Community 10", "source_file": "src/main.js", "file_type": "code", "degree": 20}, {"id": "src_main_main", "label": "main()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 26.5, "font": {"size": 12, "color": "#ffffff"}, "title": "main()", "community": 10, "community_name": "Community 10", "source_file": "src/main.js", "file_type": "code", "degree": 11}, {"id": "methods_hide", "label": "hide.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "hide.js", "community": 10, "community_name": "Community 10", "source_file": "src/methods/hide.js", "file_type": "code", "degree": 2}, {"id": "methods_hide_hide", "label": "hide()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "hide()", "community": 10, "community_name": "Community 10", "source_file": "src/methods/hide.js", "file_type": "code", "degree": 4}, {"id": "methods_jump", "label": "jump.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "jump.js", "community": 10, "community_name": "Community 10", "source_file": "src/methods/jump.js", "file_type": "code", "degree": 2}, {"id": "methods_jump_jump", "label": "jump()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "jump()", "community": 10, "community_name": "Community 10", "source_file": "src/methods/jump.js", "file_type": "code", "degree": 3}, {"id": "methods_jumpback", "label": "jumpBack.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "jumpBack.js", "community": 10, "community_name": "Community 10", "source_file": "src/methods/jumpBack.js", "file_type": "code", "degree": 2}, {"id": "methods_jumpback_jumpback", "label": "jumpBack()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "jumpBack()", "community": 10, "community_name": "Community 10", "source_file": "src/methods/jumpBack.js", "file_type": "code", "degree": 3}, {"id": "methods_jumpsreset", "label": "jumpsReset.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "jumpsReset.js", "community": 10, "community_name": "Community 10", "source_file": "src/methods/jumpsReset.js", "file_type": "code", "degree": 2}, {"id": "methods_jumpsreset_jumpsreset", "label": "jumpsReset()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "jumpsReset()", "community": 10, "community_name": "Community 10", "source_file": "src/methods/jumpsReset.js", "file_type": "code", "degree": 3}, {"id": "methods_listshortcuts", "label": "listShortcuts.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "listShortcuts.js", "community": 10, "community_name": "Community 10", "source_file": "src/methods/listShortcuts.js", "file_type": "code", "degree": 2}, {"id": "methods_listshortcuts_listshortcuts", "label": "listShortcuts()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "listShortcuts()", "community": 10, "community_name": "Community 10", "source_file": "src/methods/listShortcuts.js", "file_type": "code", "degree": 3}, {"id": "methods_setscenes", "label": "setScenes.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "setScenes.js", "community": 10, "community_name": "Community 10", "source_file": "src/methods/setScenes.js", "file_type": "code", "degree": 2}, {"id": "methods_setscenes_setscenes", "label": "setScenes()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "setScenes()", "community": 10, "community_name": "Community 10", "source_file": "src/methods/setScenes.js", "file_type": "code", "degree": 3}, {"id": "methods_show", "label": "show.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "show.js", "community": 10, "community_name": "Community 10", "source_file": "src/methods/show.js", "file_type": "code", "degree": 2}, {"id": "methods_show_show", "label": "show()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "show()", "community": 10, "community_name": "Community 10", "source_file": "src/methods/show.js", "file_type": "code", "degree": 3}, {"id": "src_setinstruction", "label": "setInstruction.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "setInstruction.js", "community": 10, "community_name": "Community 10", "source_file": "src/setInstruction.js", "file_type": "code", "degree": 2}, {"id": "src_setinstruction_setinstruction", "label": "setInstruction()", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "setInstruction()", "community": 10, "community_name": "Community 10", "source_file": "src/setInstruction.js", "file_type": "code", "degree": 4}, {"id": "test_e2e_01_general_test", "label": "01-general.test.js", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "01-general.test.js", "community": 27, "community_name": "Community 27", "source_file": "test-e2e/01-general.test.js", "file_type": "code", "degree": 0}, {"id": "test_e2e_blue", "label": "blue.vue", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "blue.vue", "community": 28, "community_name": "Community 28", "source_file": "test-e2e/blue.vue", "file_type": "code", "degree": 0}, {"id": "test_e2e_dummy", "label": "dummy.vue", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "dummy.vue", "community": 29, "community_name": "Community 29", "source_file": "test-e2e/dummy.vue", "file_type": "code", "degree": 0}, {"id": "test_e2e_gray", "label": "gray.vue", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "gray.vue", "community": 30, "community_name": "Community 30", "source_file": "test-e2e/gray.vue", "file_type": "code", "degree": 0}, {"id": "test_e2e_package", "label": "package.json", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 19.0, "font": {"size": 12, "color": "#ffffff"}, "title": "package.json", "community": 13, "community_name": "Community 13", "source_file": "test-e2e/package.json", "file_type": "code", "degree": 6}, {"id": "test_e2e_package_name", "label": "name", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "name", "community": 13, "community_name": "Community 13", "source_file": "test-e2e/package.json", "file_type": "code", "degree": 1}, {"id": "test_e2e_package_version", "label": "version", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "version", "community": 13, "community_name": "Community 13", "source_file": "test-e2e/package.json", "file_type": "code", "degree": 1}, {"id": "test_e2e_package_type", "label": "type", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "type", "community": 13, "community_name": "Community 13", "source_file": "test-e2e/package.json", "file_type": "code", "degree": 1}, {"id": "test_e2e_package_scripts", "label": "scripts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "scripts", "community": 13, "community_name": "Community 13", "source_file": "test-e2e/package.json", "file_type": "code", "degree": 2}, {"id": "test_e2e_package_scripts_dev", "label": "dev", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "dev", "community": 13, "community_name": "Community 13", "source_file": "test-e2e/package.json", "file_type": "code", "degree": 1}, {"id": "test_e2e_package_dependencies", "label": "dependencies", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "dependencies", "community": 13, "community_name": "Community 13", "source_file": "test-e2e/package.json", "file_type": "code", "degree": 4}, {"id": "test_e2e_package_dependencies_peter_naydenov_shortcuts", "label": "@peter.naydenov/shortcuts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@peter.naydenov/shortcuts", "community": 13, "community_name": "Community 13", "source_file": "test-e2e/package.json", "file_type": "code", "degree": 1}, {"id": "test_e2e_package_dependencies_peter_naydenov_visual_controller_for_vue3", "label": "@peter.naydenov/visual-controller-for-vue3", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@peter.naydenov/visual-controller-for-vue3", "community": 13, "community_name": "Community 13", "source_file": "test-e2e/package.json", "file_type": "code", "degree": 1}, {"id": "test_e2e_package_dependencies_vue", "label": "vue", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "vue", "community": 13, "community_name": "Community 13", "source_file": "test-e2e/package.json", "file_type": "code", "degree": 1}, {"id": "test_e2e_package_devdependencies", "label": "devDependencies", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "devDependencies", "community": 13, "community_name": "Community 13", "source_file": "test-e2e/package.json", "file_type": "code", "degree": 3}, {"id": "test_e2e_package_devdependencies_vitejs_plugin_vue", "label": "@vitejs/plugin-vue", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "@vitejs/plugin-vue", "community": 13, "community_name": "Community 13", "source_file": "test-e2e/package.json", "file_type": "code", "degree": 1}, {"id": "test_e2e_package_devdependencies_vite", "label": "vite", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "vite", "community": 13, "community_name": "Community 13", "source_file": "test-e2e/package.json", "file_type": "code", "degree": 1}, {"id": "test_e2e_red", "label": "red.vue", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "red.vue", "community": 31, "community_name": "Community 31", "source_file": "test-e2e/red.vue", "file_type": "code", "degree": 0}, {"id": "test_e2e_vite_config", "label": "vite.config.js", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "vite.config.js", "community": 32, "community_name": "Community 32", "source_file": "test-e2e/vite.config.js", "file_type": "code", "degree": 0}, {"id": "test_01_findposition_test", "label": "01-findPosition.test.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "01-findPosition.test.js", "community": 10, "community_name": "Community 10", "source_file": "test/01-findPosition.test.js", "file_type": "code", "degree": 1}, {"id": "test_02_cuts_test", "label": "02-cuts.test.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "02-cuts.test.js", "community": 10, "community_name": "Community 10", "source_file": "test/02-cuts.test.js", "file_type": "code", "degree": 2}, {"id": "tsconfig", "label": "tsconfig.json", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "tsconfig.json", "community": 11, "community_name": "Community 11", "source_file": "tsconfig.json", "file_type": "code", "degree": 3}, {"id": "tsconfig_include", "label": "include", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "include", "community": 11, "community_name": "Community 11", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_exclude", "label": "exclude", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "exclude", "community": 11, "community_name": "Community 11", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions", "label": "compilerOptions", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 28.0, "font": {"size": 12, "color": "#ffffff"}, "title": "compilerOptions", "community": 11, "community_name": "Community 11", "source_file": "tsconfig.json", "file_type": "code", "degree": 12}, {"id": "tsconfig_compileroptions_allowjs", "label": "allowJs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "allowJs", "community": 11, "community_name": "Community 11", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_checkjs", "label": "checkJs", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "checkJs", "community": 11, "community_name": "Community 11", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_declaration", "label": "declaration", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "declaration", "community": 11, "community_name": "Community 11", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_emitdeclarationonly", "label": "emitDeclarationOnly", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "emitDeclarationOnly", "community": 11, "community_name": "Community 11", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_outdir", "label": "outDir", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "outDir", "community": 11, "community_name": "Community 11", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_rootdir", "label": "rootDir", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "rootDir", "community": 11, "community_name": "Community 11", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_declarationmap", "label": "declarationMap", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "declarationMap", "community": 11, "community_name": "Community 11", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_moduleresolution", "label": "moduleResolution", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "moduleResolution", "community": 11, "community_name": "Community 11", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_target", "label": "target", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "target", "community": 11, "community_name": "Community 11", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_module", "label": "module", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "module", "community": 11, "community_name": "Community 11", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "tsconfig_compileroptions_skiplibcheck", "label": "skipLibCheck", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "skipLibCheck", "community": 11, "community_name": "Community 11", "source_file": "tsconfig.json", "file_type": "code", "degree": 1}, {"id": "types_findinstructions_d", "label": "findInstructions.d.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "findInstructions.d.ts", "community": 33, "community_name": "Community 33", "source_file": "types/findInstructions.d.ts", "file_type": "code", "degree": 0}, {"id": "types_main_d", "label": "main.d.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "main.d.ts", "community": 34, "community_name": "Community 34", "source_file": "types/main.d.ts", "file_type": "code", "degree": 0}, {"id": "types_methods_hide_d_ts_methods_hide_d", "label": "hide.d.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "hide.d.ts", "community": 35, "community_name": "Community 35", "source_file": "types/methods/hide.d.ts", "file_type": "code", "degree": 0}, {"id": "methods_index_d", "label": "index.d.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "index.d.ts", "community": 23, "community_name": "Community 23", "source_file": "types/methods/index.d.ts", "file_type": "code", "degree": 0}, {"id": "types_methods_jump_d_ts_methods_jump_d", "label": "jump.d.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "jump.d.ts", "community": 36, "community_name": "Community 36", "source_file": "types/methods/jump.d.ts", "file_type": "code", "degree": 0}, {"id": "types_methods_jumpback_d_ts_methods_jumpback_d", "label": "jumpBack.d.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "jumpBack.d.ts", "community": 37, "community_name": "Community 37", "source_file": "types/methods/jumpBack.d.ts", "file_type": "code", "degree": 0}, {"id": "types_methods_jumpsreset_d_ts_methods_jumpsreset_d", "label": "jumpsReset.d.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "jumpsReset.d.ts", "community": 44, "community_name": "Community 44", "source_file": "types/methods/jumpsReset.d.ts", "file_type": "code", "degree": 0}, {"id": "types_methods_listshortcuts_d_ts_methods_listshortcuts_d", "label": "listShortcuts.d.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "listShortcuts.d.ts", "community": 45, "community_name": "Community 45", "source_file": "types/methods/listShortcuts.d.ts", "file_type": "code", "degree": 0}, {"id": "types_methods_setscenes_d_ts_methods_setscenes_d", "label": "setScenes.d.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "setScenes.d.ts", "community": 17, "community_name": "Community 17", "source_file": "types/methods/setScenes.d.ts", "file_type": "code", "degree": 3}, {"id": "types_methods_setscenes_d_ts_methods_setscenes_d_askobject", "label": "AskObject", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AskObject", "community": 17, "community_name": "Community 17", "source_file": "types/methods/setScenes.d.ts", "file_type": "code", "degree": 1}, {"id": "types_methods_setscenes_d_ts_methods_setscenes_d_sceneobject", "label": "SceneObject", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SceneObject", "community": 17, "community_name": "Community 17", "source_file": "types/methods/setScenes.d.ts", "file_type": "code", "degree": 1}, {"id": "types_methods_setscenes_d_ts_methods_setscenes_d_scenedescription", "label": "sceneDescription", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "sceneDescription", "community": 17, "community_name": "Community 17", "source_file": "types/methods/setScenes.d.ts", "file_type": "code", "degree": 1}, {"id": "types_methods_show_d_ts_methods_show_d", "label": "show.d.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "show.d.ts", "community": 46, "community_name": "Community 46", "source_file": "types/methods/show.d.ts", "file_type": "code", "degree": 0}, {"id": "types_setinstruction_d", "label": "setInstruction.d.ts", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "setInstruction.d.ts", "community": 47, "community_name": "Community 47", "source_file": "types/setInstruction.d.ts", "file_type": "code", "degree": 0}, {"id": "src_findinstructions_d", "label": "findInstructions.d.ts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "findInstructions.d.ts", "community": 24, "community_name": "Community 24", "source_file": "types/src/findInstructions.d.ts", "file_type": "code", "degree": 0}, {"id": "src_main_d", "label": "main.d.ts", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "main.d.ts", "community": 25, "community_name": "Community 25", "source_file": "types/src/main.d.ts", "file_type": "code", "degree": 0}, {"id": "types_src_methods_hide_d_ts_methods_hide_d", "label": "hide.d.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "hide.d.ts", "community": 48, "community_name": "Community 48", "source_file": "types/src/methods/hide.d.ts", "file_type": "code", "degree": 0}, {"id": "types_src_methods_jump_d_ts_methods_jump_d", "label": "jump.d.ts", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "jump.d.ts", "community": 49, "community_name": "Community 49", "source_file": "types/src/methods/jump.d.ts", "file_type": "code", "degree": 0}, {"id": "types_src_methods_jumpback_d_ts_methods_jumpback_d", "label": "jumpBack.d.ts", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "jumpBack.d.ts", "community": 50, "community_name": "Community 50", "source_file": "types/src/methods/jumpBack.d.ts", "file_type": "code", "degree": 0}, {"id": "types_src_methods_jumpsreset_d_ts_methods_jumpsreset_d", "label": "jumpsReset.d.ts", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "jumpsReset.d.ts", "community": 51, "community_name": "Community 51", "source_file": "types/src/methods/jumpsReset.d.ts", "file_type": "code", "degree": 0}, {"id": "types_src_methods_listshortcuts_d_ts_methods_listshortcuts_d", "label": "listShortcuts.d.ts", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "listShortcuts.d.ts", "community": 52, "community_name": "Community 52", "source_file": "types/src/methods/listShortcuts.d.ts", "file_type": "code", "degree": 0}, {"id": "types_src_methods_setscenes_d_ts_methods_setscenes_d", "label": "setScenes.d.ts", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "setScenes.d.ts", "community": 18, "community_name": "Community 18", "source_file": "types/src/methods/setScenes.d.ts", "file_type": "code", "degree": 3}, {"id": "types_src_methods_setscenes_d_ts_methods_setscenes_d_askobject", "label": "AskObject", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AskObject", "community": 18, "community_name": "Community 18", "source_file": "types/src/methods/setScenes.d.ts", "file_type": "code", "degree": 1}, {"id": "types_src_methods_setscenes_d_ts_methods_setscenes_d_sceneobject", "label": "SceneObject", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "SceneObject", "community": 18, "community_name": "Community 18", "source_file": "types/src/methods/setScenes.d.ts", "file_type": "code", "degree": 1}, {"id": "types_src_methods_setscenes_d_ts_methods_setscenes_d_scenedescription", "label": "sceneDescription", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "sceneDescription", "community": 18, "community_name": "Community 18", "source_file": "types/src/methods/setScenes.d.ts", "file_type": "code", "degree": 1}, {"id": "types_src_methods_show_d_ts_methods_show_d", "label": "show.d.ts", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "show.d.ts", "community": 53, "community_name": "Community 53", "source_file": "types/src/methods/show.d.ts", "file_type": "code", "degree": 0}, {"id": "src_setinstruction_d", "label": "setInstruction.d.ts", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "setInstruction.d.ts", "community": 26, "community_name": "Community 26", "source_file": "types/src/setInstruction.d.ts", "file_type": "code", "degree": 0}, {"id": "vite_config", "label": "vite.config.js", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "vite.config.js", "community": 20, "community_name": "Community 20", "source_file": "vite.config.js", "file_type": "code", "degree": 0}, {"id": "vitest_config", "label": "vitest.config.js", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "vitest.config.js", "community": 21, "community_name": "Community 21", "source_file": "vitest.config.js", "file_type": "code", "degree": 0}, {"id": "agents", "label": "AGENTS.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AGENTS.md", "community": 7, "community_name": "Community 7", "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": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "graphify", "community": 7, "community_name": "Community 7", "source_file": "AGENTS.md", "file_type": "document", "degree": 2}, {"id": "changelog", "label": "Changelog.md", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Changelog.md", "community": 6, "community_name": "Community 6", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_release_history", "label": "Release History", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 34.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Release History", "community": 6, "community_name": "Community 6", "source_file": "Changelog.md", "file_type": "document", "degree": 16}, {"id": "changelog_2_1_1_2026_07_08", "label": "2.1.1 ( 2026-07-08 )", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2.1.1 ( 2026-07-08 )", "community": 6, "community_name": "Community 6", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_2_1_0_2026_06_07", "label": "2.1.0 ( 2026-06-07 )", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2.1.0 ( 2026-06-07 )", "community": 6, "community_name": "Community 6", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_2_0_3_2026_04_23", "label": "2.0.3 ( 2026-04-23 )", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2.0.3 ( 2026-04-23 )", "community": 6, "community_name": "Community 6", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_2_0_2_2026_04_02", "label": "2.0.2 ( 2026-04-02 )", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2.0.2 ( 2026-04-02 )", "community": 6, "community_name": "Community 6", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_2_0_1_2026_03_24", "label": "2.0.1 ( 2026-03-24 )", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2.0.1 ( 2026-03-24 )", "community": 6, "community_name": "Community 6", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_2_0_0_2025_11_09", "label": "2.0.0 ( 2025-11-09 )", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "2.0.0 ( 2025-11-09 )", "community": 6, "community_name": "Community 6", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_1_5_0_2025_10_23", "label": "1.5.0 ( 2025-10-23 )", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1.5.0 ( 2025-10-23 )", "community": 6, "community_name": "Community 6", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_1_4_4_2025_10_10", "label": "1.4.4 ( 2025-10-10)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1.4.4 ( 2025-10-10)", "community": 6, "community_name": "Community 6", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_1_4_3_2025_09_30", "label": "1.4.3 ( 2025-09-30)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1.4.3 ( 2025-09-30)", "community": 6, "community_name": "Community 6", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_1_4_2_2025_09_29", "label": "1.4.2 ( 2025-09-29)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1.4.2 ( 2025-09-29)", "community": 6, "community_name": "Community 6", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_1_4_1_2025_09_24", "label": "1.4.1. ( 2025-09-24)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1.4.1. ( 2025-09-24)", "community": 6, "community_name": "Community 6", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_1_4_0_2025_09_06", "label": "1.4.0 ( 2025-09-06)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1.4.0 ( 2025-09-06)", "community": 6, "community_name": "Community 6", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_1_3_1_2025_08_15", "label": "1.3.1 ( 2025-08-15)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1.3.1 ( 2025-08-15)", "community": 6, "community_name": "Community 6", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_1_3_0_2025_08_15", "label": "1.3.0 ( 2025-08-15)", "color": {"background": "#B07AA1", "border": "#B07AA1", "highlight": {"background": "#ffffff", "border": "#B07AA1"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1.3.0 ( 2025-08-15)", "community": 6, "community_name": "Community 6", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_1_2_8_2025_05_03", "label": "1.2.8 ( 2025-05-03)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 28.0, "font": {"size": 12, "color": "#ffffff"}, "title": "1.2.8 ( 2025-05-03)", "community": 14, "community_name": "Community 14", "source_file": "Changelog.md", "file_type": "document", "degree": 12}, {"id": "changelog_1_2_7_2025_02_04", "label": "1.2.7 ( 2025-02-04)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1.2.7 ( 2025-02-04)", "community": 14, "community_name": "Community 14", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_1_2_6_2025_01_23", "label": "1.2.6 ( 2025-01-23)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1.2.6 ( 2025-01-23)", "community": 14, "community_name": "Community 14", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_1_2_4_2025_01_15", "label": "1.2.4 ( 2025-01-15)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1.2.4 ( 2025-01-15)", "community": 14, "community_name": "Community 14", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_1_2_3_2024_12_23", "label": "1.2.3 ( 2024-12-23)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1.2.3 ( 2024-12-23)", "community": 14, "community_name": "Community 14", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_1_2_2_2024_12_22", "label": "1.2.2 ( 2024-12-22 )", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1.2.2 ( 2024-12-22 )", "community": 14, "community_name": "Community 14", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_1_2_1_2024_12_21", "label": "1.2.1 ( 2024-12-21 )", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1.2.1 ( 2024-12-21 )", "community": 14, "community_name": "Community 14", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_1_2_0_2024_12_21", "label": "1.2.0 (2024-12-21)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1.2.0 (2024-12-21)", "community": 14, "community_name": "Community 14", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_1_1_0_2024_12_13", "label": "1.1.0 (2024-12-13)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1.1.0 (2024-12-13)", "community": 14, "community_name": "Community 14", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_1_0_2_2024_12_12", "label": "1.0.2 (2024-12-12)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1.0.2 (2024-12-12)", "community": 14, "community_name": "Community 14", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_1_0_1_2024_05_10", "label": "1.0.1 (2024-05-10)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1.0.1 (2024-05-10)", "community": 14, "community_name": "Community 14", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_1_0_0_2024_05_08", "label": "1.0.0 (2024-05-08)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "1.0.0 (2024-05-08)", "community": 14, "community_name": "Community 14", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "migration_guide", "label": "Migration.guide.md", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Migration.guide.md", "community": 15, "community_name": "Community 15", "source_file": "Migration.guide.md", "file_type": "document", "degree": 1}, {"id": "migration_guide_migration_guides", "label": "Migration Guides", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Migration Guides", "community": 15, "community_name": "Community 15", "source_file": "Migration.guide.md", "file_type": "document", "degree": 2}, {"id": "migration_guide_from_version_1_x_x_to_version_2_x_x", "label": "From version 1.x.x to version 2.x.x", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 19.0, "font": {"size": 12, "color": "#ffffff"}, "title": "From version 1.x.x to version 2.x.x", "community": 15, "community_name": "Community 15", "source_file": "Migration.guide.md", "file_type": "document", "degree": 6}, {"id": "migration_guide_plugin_target_attributes_changes", "label": "Plugin Target Attributes Changes", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Plugin Target Attributes Changes", "community": 15, "community_name": "Community 15", "source_file": "Migration.guide.md", "file_type": "document", "degree": 1}, {"id": "migration_guide_per_context_setup_examples_updated", "label": "Per-Context Setup Examples Updated", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Per-Context Setup Examples Updated", "community": 15, "community_name": "Community 15", "source_file": "Migration.guide.md", "file_type": "document", "degree": 1}, {"id": "migration_guide_package_dependencies_update", "label": "Package Dependencies Update", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Package Dependencies Update", "community": 15, "community_name": "Community 15", "source_file": "Migration.guide.md", "file_type": "document", "degree": 1}, {"id": "migration_guide_backward_compatibility", "label": "Backward Compatibility", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Backward Compatibility", "community": 15, "community_name": "Community 15", "source_file": "Migration.guide.md", "file_type": "document", "degree": 1}, {"id": "migration_guide_example_migration", "label": "Example Migration", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Example Migration", "community": 15, "community_name": "Community 15", "source_file": "Migration.guide.md", "file_type": "document", "degree": 1}, {"id": "readme", "label": "README.md", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "README.md", "community": 3, "community_name": "Community 3", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_cuts_peter_naydenov_cuts", "label": "Cuts (@peter.naydenov/cuts)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 32.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Cuts (@peter.naydenov/cuts)", "community": 3, "community_name": "Community 3", "source_file": "README.md", "file_type": "document", "degree": 15}, {"id": "readme_description", "label": "Description", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Description", "community": 3, "community_name": "Community 3", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_why_cuts", "label": "Why Cuts?", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Why Cuts?", "community": 3, "community_name": "Community 3", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_installation", "label": "Installation", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Installation", "community": 3, "community_name": "Community 3", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_usage", "label": "Usage", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Usage", "community": 3, "community_name": "Community 3", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_configuration", "label": "Configuration", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Configuration", "community": 3, "community_name": "Community 3", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_screen_cuts_methods_overview", "label": "Screen Cuts Methods Overview", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Screen Cuts Methods Overview", "community": 3, "community_name": "Community 3", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_scene", "label": "Scene", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 31.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Scene", "community": 0, "community_name": "Community 0", "source_file": "README.md", "file_type": "document", "degree": 14}, {"id": "readme_aftershow_and_beforehide", "label": "AfterShow and BeforeHide", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "AfterShow and BeforeHide", "community": 3, "community_name": "Community 3", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_jump_jumpback_and_jumpsreset_methods", "label": "Jump, JumpBack and JumpsReset methods", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Jump, JumpBack and JumpsReset methods", "community": 3, "community_name": "Community 3", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_plugin_configuration", "label": "Plugin Configuration", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Plugin Configuration", "community": 3, "community_name": "Community 3", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_events", "label": "Events", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Events", "community": 3, "community_name": "Community 3", "source_file": "README.md", "file_type": "document", "degree": 3}, {"id": "readme_app_error", "label": "`@app-error`", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "`@app-error`", "community": 1, "community_name": "Community 1", "source_file": "README.md", "file_type": "document", "degree": 5}, {"id": "readme_loglevel_default_1", "label": "`logLevel` (default: `1`)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "`logLevel` (default: `1`)", "community": 1, "community_name": "Community 1", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_custom_events_via_emit", "label": "Custom events via `emit`", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Custom events via `emit`", "community": 3, "community_name": "Community 3", "source_file": "README.md", "file_type": "document", "degree": 2}, {"id": "readme_emitting_from_inside_a_handler", "label": "Emitting from inside a handler", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Emitting from inside a handler", "community": 3, "community_name": "Community 3", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_links", "label": "Links", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Links", "community": 3, "community_name": "Community 3", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_credits", "label": "Credits", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Credits", "community": 3, "community_name": "Community 3", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_license", "label": "License", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "License", "community": 3, "community_name": "Community 3", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "changelog_app_error_event", "label": "@app-error Event", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "@app-error Event", "community": 1, "community_name": "Community 1", "source_file": "Changelog.md", "file_type": "document", "degree": 2}, {"id": "changelog_loglevel", "label": "logLevel Configuration", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "logLevel Configuration", "community": 1, "community_name": "Community 1", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_bug_ssr", "label": "Bug: SSR First Scene Loading", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Bug: SSR First Scene Loading", "community": 1, "community_name": "Community 1", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "changelog_bug_long_scenes", "label": "Bug: Long Scene List State", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Bug: Long Scene List State", "community": 38, "community_name": "Community 38", "source_file": "Changelog.md", "file_type": "document", "degree": 0}, {"id": "changelog_v2_release", "label": "Cuts v2.0.0 Release", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 19.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Cuts v2.0.0 Release", "community": 1, "community_name": "Community 1", "source_file": "Changelog.md", "file_type": "document", "degree": 6}, {"id": "changelog_v1_4_jumps", "label": "Jump/JumpBack/JumpsReset Methods", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Jump/JumpBack/JumpsReset Methods", "community": 39, "community_name": "Community 39", "source_file": "Changelog.md", "file_type": "document", "degree": 0}, {"id": "changelog_afterShow_beforeHide_hooks", "label": "Scene Hooks: afterShow and beforeHide", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Scene Hooks: afterShow and beforeHide", "community": 0, "community_name": "Community 0", "source_file": "Changelog.md", "file_type": "document", "degree": 1}, {"id": "migration_v1_to_v2", "label": "Migration v1.x to v2.x", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Migration v1.x to v2.x", "community": 1, "community_name": "Community 1", "source_file": "Migration.guide.md", "file_type": "document", "degree": 4}, {"id": "migration_click_target", "label": "clickTarget Array Migration", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "clickTarget Array Migration", "community": 1, "community_name": "Community 1", "source_file": "Migration.guide.md", "file_type": "document", "degree": 3}, {"id": "migration_hover_target", "label": "hoverTarget Array Migration", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "hoverTarget Array Migration", "community": 1, "community_name": "Community 1", "source_file": "Migration.guide.md", "file_type": "document", "degree": 3}, {"id": "migration_shortcuts_v4", "label": "Shortcuts v4.x Upgrade", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Shortcuts v4.x Upgrade", "community": 1, "community_name": "Community 1", "source_file": "Migration.guide.md", "file_type": "document", "degree": 2}, {"id": "migration_rationale", "label": "Rationale: Array Target Flexibility", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Rationale: Array Target Flexibility", "community": 1, "community_name": "Community 1", "source_file": "Migration.guide.md", "file_type": "document", "degree": 2}, {"id": "readme_cuts", "label": "Cuts Library (@peter.naydenov/cuts)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 22.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Cuts Library (@peter.naydenov/cuts)", "community": 1, "community_name": "Community 1", "source_file": "README.md", "file_type": "document", "degree": 8}, {"id": "readme_shortcuts", "label": "@peter.naydenov/shortcuts", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 23.5, "font": {"size": 12, "color": "#ffffff"}, "title": "@peter.naydenov/shortcuts", "community": 4, "community_name": "Community 4", "source_file": "README.md", "file_type": "document", "degree": 9}, {"id": "readme_log", "label": "@peter.naydenov/log", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "@peter.naydenov/log", "community": 1, "community_name": "Community 1", "source_file": "README.md", "file_type": "document", "degree": 2}, {"id": "readme_jumpstack", "label": "Jump Stack", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Jump Stack", "community": 0, "community_name": "Community 0", "source_file": "README.md", "file_type": "document", "degree": 3}, {"id": "readme_dependencies", "label": "Dependencies Object", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Dependencies Object", "community": 9, "community_name": "Community 9", "source_file": "README.md", "file_type": "document", "degree": 2}, {"id": "readme_parents", "label": "Scene Parents List", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Scene Parents List", "community": 0, "community_name": "Community 0", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_show", "label": "show() method", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "show() method", "community": 0, "community_name": "Community 0", "source_file": "README.md", "file_type": "document", "degree": 2}, {"id": "readme_hide", "label": "hide() method", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "hide() method", "community": 0, "community_name": "Community 0", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_aftershow", "label": "afterShow() method", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "afterShow() method", "community": 0, "community_name": "Community 0", "source_file": "README.md", "file_type": "document", "degree": 3}, {"id": "readme_beforehide", "label": "beforeHide() method", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "beforeHide() method", "community": 0, "community_name": "Community 0", "source_file": "README.md", "file_type": "document", "degree": 3}, {"id": "readme_jump", "label": "jump() method", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "jump() method", "community": 0, "community_name": "Community 0", "source_file": "README.md", "file_type": "document", "degree": 3}, {"id": "readme_jumpback", "label": "jumpBack() method", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "jumpBack() method", "community": 0, "community_name": "Community 0", "source_file": "README.md", "file_type": "document", "degree": 2}, {"id": "readme_jumpsreset", "label": "jumpsReset() method", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "jumpsReset() method", "community": 0, "community_name": "Community 0", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_setscenes", "label": "setScenes() method", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "setScenes() method", "community": 0, "community_name": "Community 0", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_setdependencies", "label": "setDependencies() method", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "setDependencies() method", "community": 9, "community_name": "Community 9", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_getdependencies", "label": "getDependencies() method", "color": {"background": "#BAB0AC", "border": "#BAB0AC", "highlight": {"background": "#ffffff", "border": "#BAB0AC"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "getDependencies() method", "community": 9, "community_name": "Community 9", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_listscenes", "label": "listScenes() method", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "listScenes() method", "community": 40, "community_name": "Community 40", "source_file": "README.md", "file_type": "document", "degree": 0}, {"id": "readme_listshortcuts", "label": "listShortcuts() method", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "listShortcuts() method", "community": 41, "community_name": "Community 41", "source_file": "README.md", "file_type": "document", "degree": 0}, {"id": "readme_enableplugin", "label": "enablePlugin() method", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 19.0, "font": {"size": 12, "color": "#ffffff"}, "title": "enablePlugin() method", "community": 4, "community_name": "Community 4", "source_file": "README.md", "file_type": "document", "degree": 6}, {"id": "readme_disableplugin", "label": "disablePlugin() method", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "disablePlugin() method", "community": 4, "community_name": "Community 4", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_getstate", "label": "getState() method", "color": {"background": "#E15759", "border": "#E15759", "highlight": {"background": "#ffffff", "border": "#E15759"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "getState() method", "community": 42, "community_name": "Community 42", "source_file": "README.md", "file_type": "document", "degree": 0}, {"id": "readme_emit", "label": "emit() method", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "emit() method", "community": 4, "community_name": "Community 4", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_loadplugins", "label": "loadPlugins() method", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 17.5, "font": {"size": 12, "color": "#ffffff"}, "title": "loadPlugins() method", "community": 4, "community_name": "Community 4", "source_file": "README.md", "file_type": "document", "degree": 5}, {"id": "readme_loglevel", "label": "logLevel configuration option", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "logLevel configuration option", "community": 1, "community_name": "Community 1", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_plugin_key", "label": "Key plugin (keyboard)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Key plugin (keyboard)", "community": 4, "community_name": "Community 4", "source_file": "README.md", "file_type": "document", "degree": 3}, {"id": "readme_plugin_click", "label": "Click plugin (mouse)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Click plugin (mouse)", "community": 4, "community_name": "Community 4", "source_file": "README.md", "file_type": "document", "degree": 4}, {"id": "readme_plugin_form", "label": "Form plugin (input)", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Form plugin (input)", "community": 4, "community_name": "Community 4", "source_file": "README.md", "file_type": "document", "degree": 3}, {"id": "readme_plugin_hover", "label": "Hover plugin", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Hover plugin", "community": 4, "community_name": "Community 4", "source_file": "README.md", "file_type": "document", "degree": 4}, {"id": "readme_plugin_scroll", "label": "Scroll plugin", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Scroll plugin", "community": 4, "community_name": "Community 4", "source_file": "README.md", "file_type": "document", "degree": 3}, {"id": "readme_rationale_aftershow", "label": "Rationale: afterShow models document.onload for deferred SPA work", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Rationale: afterShow models document.onload for deferred SPA work", "community": 0, "community_name": "Community 0", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_rationale_beforehide", "label": "Rationale: beforeHide inspired by beforeunload event", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Rationale: beforeHide inspired by beforeunload event", "community": 0, "community_name": "Community 0", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_rationale_scene_decomposition", "label": "Rationale: scenes enable independent dev/test", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Rationale: scenes enable independent dev/test", "community": 0, "community_name": "Community 0", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_rationale_flow_reshape", "label": "Rationale: scene-based design makes flow easy to reshape", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Rationale: scene-based design makes flow easy to reshape", "community": 1, "community_name": "Community 1", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_rationale_parallel_dev", "label": "Rationale: scene isolation enables parallel developer work", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Rationale: scene isolation enables parallel developer work", "community": 0, "community_name": "Community 0", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_rationale_ui_decoupling", "label": "Rationale: shortcuts library decouples UI from native DOM events", "color": {"background": "#59A14F", "border": "#59A14F", "highlight": {"background": "#ffffff", "border": "#59A14F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Rationale: shortcuts library decouples UI from native DOM events", "community": 4, "community_name": "Community 4", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_rationale_framework_agnostic", "label": "Rationale: scene separation allows any template engine (react/vue/svelte/morph)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Rationale: scene separation allows any template engine (react/vue/svelte/morph)", "community": 1, "community_name": "Community 1", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_rationale_visual_reuse", "label": "Rationale: separated user-interaction enables visual component reuse", "color": {"background": "#4E79A7", "border": "#4E79A7", "highlight": {"background": "#ffffff", "border": "#4E79A7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Rationale: separated user-interaction enables visual component reuse", "community": 0, "community_name": "Community 0", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "readme_morph", "label": "morph (template engine example)", "color": {"background": "#F28E2B", "border": "#F28E2B", "highlight": {"background": "#ffffff", "border": "#F28E2B"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "morph (template engine example)", "community": 1, "community_name": "Community 1", "source_file": "README.md", "file_type": "document", "degree": 1}, {"id": "agents_graphify_out", "label": "graphify-out/ Directory", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "graphify-out/ Directory", "community": 7, "community_name": "Community 7", "source_file": "AGENTS.md", "file_type": "document", "degree": 4}, {"id": "agents_graph_report", "label": "GRAPH_REPORT.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "GRAPH_REPORT.md", "community": 7, "community_name": "Community 7", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_wiki_index", "label": "wiki/index.md", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "wiki/index.md", "community": 7, "community_name": "Community 7", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "agents_watch_rebuild", "label": "graphify.watch._rebuild_code", "color": {"background": "#FF9DA7", "border": "#FF9DA7", "highlight": {"background": "#ffffff", "border": "#FF9DA7"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "graphify.watch._rebuild_code", "community": 7, "community_name": "Community 7", "source_file": "AGENTS.md", "file_type": "document", "degree": 1}, {"id": "cuts_brand_logo", "label": "Cuts Brand Logo", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 16.0, "font": {"size": 12, "color": "#ffffff"}, "title": "Cuts Brand Logo", "community": 5, "community_name": "Community 5", "source_file": "cuts.png", "file_type": "image", "degree": 4}, {"id": "cuts_wordmark", "label": "Cuts Wordmark", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Cuts Wordmark", "community": 5, "community_name": "Community 5", "source_file": "cuts.png", "file_type": "image", "degree": 2}, {"id": "cuts_film_strip_icon", "label": "Film Strip Icon", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Film Strip Icon", "community": 5, "community_name": "Community 5", "source_file": "cuts.png", "file_type": "image", "degree": 2}, {"id": "cuts_background_pattern", "label": "Decorative N-Pattern Background", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Decorative N-Pattern Background", "community": 5, "community_name": "Community 5", "source_file": "cuts.png", "file_type": "image", "degree": 2}, {"id": "cuts_film_editing_metaphor", "label": "Film Editing Metaphor", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "Film Editing Metaphor", "community": 5, "community_name": "Community 5", "source_file": "cuts.png", "file_type": "image", "degree": 3}, {"id": "cuts_brand_identity", "label": "Git-Cuts Brand Identity", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Git-Cuts Brand Identity", "community": 5, "community_name": "Community 5", "source_file": "cuts.png", "file_type": "image", "degree": 2}, {"id": "cuts_dark_theme_design", "label": "Dark Theme Visual Design", "color": {"background": "#EDC948", "border": "#EDC948", "highlight": {"background": "#ffffff", "border": "#EDC948"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "Dark Theme Visual Design", "community": 5, "community_name": "Community 5", "source_file": "cuts.png", "file_type": "image", "degree": 1}, {"id": "favicon_favicon_image", "label": "lcov-report favicon", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 14.5, "font": {"size": 12, "color": "#ffffff"}, "title": "lcov-report favicon", "community": 8, "community_name": "Community 8", "source_file": "coverage/lcov-report/favicon.png", "file_type": "image", "degree": 3}, {"id": "favicon_building_silhouette", "label": "Dark architectural silhouette (dome + towers)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Dark architectural silhouette (dome + towers)", "community": 8, "community_name": "Community 8", "source_file": "coverage/lcov-report/favicon.png", "file_type": "image", "degree": 2}, {"id": "favicon_yellow_background", "label": "Yellow/olive solid background fill", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 13.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Yellow/olive solid background fill", "community": 8, "community_name": "Community 8", "source_file": "coverage/lcov-report/favicon.png", "file_type": "image", "degree": 2}, {"id": "favicon_lcov_report", "label": "lcov HTML coverage report (parent context)", "color": {"background": "#9C755F", "border": "#9C755F", "highlight": {"background": "#ffffff", "border": "#9C755F"}}, "size": 11.5, "font": {"size": 0, "color": "#ffffff"}, "title": "lcov HTML coverage report (parent context)", "community": 8, "community_name": "Community 8", "source_file": "coverage/lcov-report/favicon.png", "file_type": "image", "degree": 1}, {"id": "sort-arrow-sprite_sort_indicators", "label": "Sort Arrow Sprite (lcov report)", "color": {"background": "#76B7B2", "border": "#76B7B2", "highlight": {"background": "#ffffff", "border": "#76B7B2"}}, "size": 10.0, "font": {"size": 0, "color": "#ffffff"}, "title": "Sort Arrow Sprite (lcov report)", "community": 43, "community_name": "Community 43", "source_file": "coverage/lcov-report/sort-arrow-sprite.png", "file_type": "image", "degree": 0}];
70
+ const RAW_EDGES = [{"from": "main", "to": "src_main_main", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "main", "to": "src_main", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_allowscripts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_author", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_description", "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_exports", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_keywords", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_license", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_main", "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_scripts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_type", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_types", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package", "to": "package_version", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_exports", "to": "package_default", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_exports", "to": "package_exports_dist", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_exports", "to": "package_exports_package_json", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_exports", "to": "package_exports_src", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_exports", "to": "package_import", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_exports", "to": "package_require", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_build", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_cover", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_dev", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_postbuild", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_preview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_test", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_scripts", "to": "package_scripts_test_e2e", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_peter_naydenov_visual_controller_for_vue3", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_playwright_test", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_rollup", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_rollup_plugin_commonjs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_rollup_plugin_node_resolve", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_rollup_plugin_terser", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_types_node", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_typescript", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_vite", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_vitejs_plugin_vue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_vitest", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_vitest_coverage_v8", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_devdependencies", "to": "package_devdependencies_vue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_ask_for_promise", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_peter_naydenov_log", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_dependencies", "to": "package_dependencies_peter_naydenov_shortcuts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_allowscripts", "to": "package_allowscripts_fsevents_2_3_2", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "package_allowscripts", "to": "package_allowscripts_fsevents_2_3_3", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_findinstructions", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_01_findposition_test", "to": "src_findinstructions", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "methods_hide", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "methods_hide_hide", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "methods_jump", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "methods_jump_jump", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "methods_jumpback", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "methods_jumpback_jumpback", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "methods_jumpsreset", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "methods_jumpsreset_jumpsreset", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "methods_listshortcuts", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "methods_listshortcuts_listshortcuts", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "methods_setscenes", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "methods_setscenes_setscenes", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "methods_show", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "methods_show_show", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_main_main", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_setinstruction", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main", "to": "src_setinstruction_setinstruction", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_02_cuts_test", "to": "src_main", "label": "imports_from", "title": "imports_from [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_main", "to": "methods_hide_hide", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_main", "to": "methods_jump_jump", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_main", "to": "methods_jumpback_jumpback", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_main", "to": "methods_jumpsreset_jumpsreset", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_main", "to": "methods_listshortcuts_listshortcuts", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_main", "to": "methods_setscenes_setscenes", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_main", "to": "methods_show_show", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_main_main", "to": "src_setinstruction_setinstruction", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_02_cuts_test", "to": "src_main_main", "label": "imports", "title": "imports [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "methods_hide", "to": "methods_hide_hide", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "methods_hide_hide", "to": "src_setinstruction_setinstruction", "label": "calls", "title": "calls [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "methods_jump", "to": "methods_jump_jump", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "methods_jumpback", "to": "methods_jumpback_jumpback", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "methods_jumpsreset", "to": "methods_jumpsreset_jumpsreset", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "methods_listshortcuts", "to": "methods_listshortcuts_listshortcuts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "methods_setscenes", "to": "methods_setscenes_setscenes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "methods_show", "to": "methods_show_show", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "src_setinstruction", "to": "src_setinstruction_setinstruction", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_e2e_package", "to": "test_e2e_package_dependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_e2e_package", "to": "test_e2e_package_devdependencies", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_e2e_package", "to": "test_e2e_package_name", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_e2e_package", "to": "test_e2e_package_scripts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_e2e_package", "to": "test_e2e_package_type", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_e2e_package", "to": "test_e2e_package_version", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_e2e_package_scripts", "to": "test_e2e_package_scripts_dev", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_e2e_package_dependencies", "to": "test_e2e_package_dependencies_peter_naydenov_shortcuts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_e2e_package_dependencies", "to": "test_e2e_package_dependencies_peter_naydenov_visual_controller_for_vue3", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_e2e_package_dependencies", "to": "test_e2e_package_dependencies_vue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_e2e_package_devdependencies", "to": "test_e2e_package_devdependencies_vite", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "test_e2e_package_devdependencies", "to": "test_e2e_package_devdependencies_vitejs_plugin_vue", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig", "to": "tsconfig_compileroptions", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig", "to": "tsconfig_exclude", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig", "to": "tsconfig_include", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_allowjs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_checkjs", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_declaration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_declarationmap", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_emitdeclarationonly", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_module", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_moduleresolution", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_outdir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_rootdir", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_skiplibcheck", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "tsconfig_compileroptions", "to": "tsconfig_compileroptions_target", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_methods_setscenes_d_ts_methods_setscenes_d", "to": "types_methods_setscenes_d_ts_methods_setscenes_d_askobject", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_methods_setscenes_d_ts_methods_setscenes_d", "to": "types_methods_setscenes_d_ts_methods_setscenes_d_scenedescription", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_methods_setscenes_d_ts_methods_setscenes_d", "to": "types_methods_setscenes_d_ts_methods_setscenes_d_sceneobject", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_src_methods_setscenes_d_ts_methods_setscenes_d", "to": "types_src_methods_setscenes_d_ts_methods_setscenes_d_askobject", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_src_methods_setscenes_d_ts_methods_setscenes_d", "to": "types_src_methods_setscenes_d_ts_methods_setscenes_d_scenedescription", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "types_src_methods_setscenes_d_ts_methods_setscenes_d", "to": "types_src_methods_setscenes_d_ts_methods_setscenes_d_sceneobject", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents", "to": "agents_graphify", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_graphify", "to": "agents_graphify_out", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog", "to": "changelog_release_history", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_release_history", "to": "changelog_1_2_8_2025_05_03", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_release_history", "to": "changelog_1_3_0_2025_08_15", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_release_history", "to": "changelog_1_3_1_2025_08_15", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_release_history", "to": "changelog_1_4_0_2025_09_06", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_release_history", "to": "changelog_1_4_1_2025_09_24", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_release_history", "to": "changelog_1_4_2_2025_09_29", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_release_history", "to": "changelog_1_4_3_2025_09_30", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_release_history", "to": "changelog_1_4_4_2025_10_10", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_release_history", "to": "changelog_1_5_0_2025_10_23", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_release_history", "to": "changelog_2_0_0_2025_11_09", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_release_history", "to": "changelog_2_0_1_2026_03_24", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_release_history", "to": "changelog_2_0_2_2026_04_02", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_release_history", "to": "changelog_2_0_3_2026_04_23", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_release_history", "to": "changelog_2_1_0_2026_06_07", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_release_history", "to": "changelog_2_1_1_2026_07_08", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_1_2_8_2025_05_03", "to": "changelog_1_0_0_2024_05_08", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_1_2_8_2025_05_03", "to": "changelog_1_0_1_2024_05_10", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_1_2_8_2025_05_03", "to": "changelog_1_0_2_2024_12_12", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_1_2_8_2025_05_03", "to": "changelog_1_1_0_2024_12_13", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_1_2_8_2025_05_03", "to": "changelog_1_2_0_2024_12_21", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_1_2_8_2025_05_03", "to": "changelog_1_2_1_2024_12_21", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_1_2_8_2025_05_03", "to": "changelog_1_2_2_2024_12_22", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_1_2_8_2025_05_03", "to": "changelog_1_2_3_2024_12_23", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_1_2_8_2025_05_03", "to": "changelog_1_2_4_2025_01_15", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_1_2_8_2025_05_03", "to": "changelog_1_2_6_2025_01_23", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_1_2_8_2025_05_03", "to": "changelog_1_2_7_2025_02_04", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "migration_guide", "to": "migration_guide_migration_guides", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "migration_guide_migration_guides", "to": "migration_guide_from_version_1_x_x_to_version_2_x_x", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "migration_guide_from_version_1_x_x_to_version_2_x_x", "to": "migration_guide_backward_compatibility", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "migration_guide_from_version_1_x_x_to_version_2_x_x", "to": "migration_guide_example_migration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "migration_guide_from_version_1_x_x_to_version_2_x_x", "to": "migration_guide_package_dependencies_update", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "migration_guide_from_version_1_x_x_to_version_2_x_x", "to": "migration_guide_per_context_setup_examples_updated", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "migration_guide_from_version_1_x_x_to_version_2_x_x", "to": "migration_guide_plugin_target_attributes_changes", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme", "to": "readme_cuts_peter_naydenov_cuts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts_peter_naydenov_cuts", "to": "readme_aftershow_and_beforehide", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts_peter_naydenov_cuts", "to": "readme_configuration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts_peter_naydenov_cuts", "to": "readme_credits", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts_peter_naydenov_cuts", "to": "readme_description", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts_peter_naydenov_cuts", "to": "readme_events", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts_peter_naydenov_cuts", "to": "readme_installation", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts_peter_naydenov_cuts", "to": "readme_jump_jumpback_and_jumpsreset_methods", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts_peter_naydenov_cuts", "to": "readme_license", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts_peter_naydenov_cuts", "to": "readme_links", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts_peter_naydenov_cuts", "to": "readme_plugin_configuration", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts_peter_naydenov_cuts", "to": "readme_scene", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts_peter_naydenov_cuts", "to": "readme_screen_cuts_methods_overview", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts_peter_naydenov_cuts", "to": "readme_usage", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts_peter_naydenov_cuts", "to": "readme_why_cuts", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_afterShow_beforeHide_hooks", "to": "readme_scene", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_scene", "to": "readme_aftershow", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_scene", "to": "readme_beforehide", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_scene", "to": "readme_hide", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_scene", "to": "readme_jump", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_scene", "to": "readme_jumpback", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_scene", "to": "readme_parents", "label": "shares_data_with", "title": "shares_data_with [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_scene", "to": "readme_rationale_parallel_dev", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_scene", "to": "readme_rationale_scene_decomposition", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_scene", "to": "readme_rationale_visual_reuse", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_scene", "to": "readme_setscenes", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_scene", "to": "readme_show", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_shortcuts", "to": "readme_scene", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_events", "to": "readme_app_error", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_events", "to": "readme_custom_events_via_emit", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_app_error", "to": "readme_loglevel_default_1", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts", "to": "readme_app_error", "label": "implements", "title": "implements [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_log", "to": "readme_app_error", "label": "cites", "title": "cites [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_loglevel", "to": "readme_app_error", "label": "conceptually_related_to", "title": "conceptually_related_to [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_custom_events_via_emit", "to": "readme_emitting_from_inside_a_handler", "label": "contains", "title": "contains [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_app_error_event", "to": "changelog_v2_release", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_app_error_event", "to": "readme_cuts", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "changelog_loglevel", "to": "changelog_v2_release", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_bug_ssr", "to": "changelog_v2_release", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "changelog_v2_release", "to": "migration_shortcuts_v4", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "changelog_v2_release", "to": "migration_v1_to_v2", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "changelog_v2_release", "to": "readme_cuts", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "migration_v1_to_v2", "to": "migration_click_target", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "migration_v1_to_v2", "to": "migration_hover_target", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "migration_v1_to_v2", "to": "migration_shortcuts_v4", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "migration_click_target", "to": "migration_rationale", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "migration_click_target", "to": "readme_plugin_click", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "migration_hover_target", "to": "migration_rationale", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "migration_hover_target", "to": "readme_plugin_hover", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_cuts", "to": "readme_log", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts", "to": "readme_morph", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts", "to": "readme_rationale_flow_reshape", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts", "to": "readme_rationale_framework_agnostic", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_cuts", "to": "readme_shortcuts", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_shortcuts", "to": "readme_emit", "label": "calls", "title": "calls [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_shortcuts", "to": "readme_plugin_click", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_shortcuts", "to": "readme_plugin_form", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_shortcuts", "to": "readme_plugin_hover", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_shortcuts", "to": "readme_plugin_key", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_shortcuts", "to": "readme_plugin_scroll", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_shortcuts", "to": "readme_rationale_ui_decoupling", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_jumpstack", "to": "readme_jump", "label": "shares_data_with", "title": "shares_data_with [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_jumpstack", "to": "readme_jumpback", "label": "shares_data_with", "title": "shares_data_with [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_jumpstack", "to": "readme_jumpsreset", "label": "shares_data_with", "title": "shares_data_with [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_dependencies", "to": "readme_getdependencies", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_dependencies", "to": "readme_setdependencies", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_show", "to": "readme_jump", "label": "semantically_similar_to", "title": "semantically_similar_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_aftershow", "to": "readme_beforehide", "label": "semantically_similar_to", "title": "semantically_similar_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_aftershow", "to": "readme_rationale_aftershow", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_beforehide", "to": "readme_rationale_beforehide", "label": "rationale_for", "title": "rationale_for [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "readme_enableplugin", "to": "readme_disableplugin", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_enableplugin", "to": "readme_plugin_click", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_enableplugin", "to": "readme_plugin_form", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_enableplugin", "to": "readme_plugin_hover", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_enableplugin", "to": "readme_plugin_key", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_enableplugin", "to": "readme_plugin_scroll", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_loadplugins", "to": "readme_plugin_click", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_loadplugins", "to": "readme_plugin_form", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_loadplugins", "to": "readme_plugin_hover", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_loadplugins", "to": "readme_plugin_key", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "readme_loadplugins", "to": "readme_plugin_scroll", "label": "references", "title": "references [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "agents_graphify_out", "to": "agents_graph_report", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_graphify_out", "to": "agents_watch_rebuild", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "agents_graphify_out", "to": "agents_wiki_index", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cuts_brand_logo", "to": "cuts_background_pattern", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cuts_brand_logo", "to": "cuts_brand_identity", "label": "implements", "title": "implements [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "cuts_brand_logo", "to": "cuts_film_strip_icon", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cuts_brand_logo", "to": "cuts_wordmark", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "cuts_wordmark", "to": "cuts_film_editing_metaphor", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "cuts_film_strip_icon", "to": "cuts_film_editing_metaphor", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "cuts_background_pattern", "to": "cuts_dark_theme_design", "label": "conceptually_related_to", "title": "conceptually_related_to [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "cuts_film_editing_metaphor", "to": "cuts_brand_identity", "label": "rationale_for", "title": "rationale_for [INFERRED]", "dashes": true, "width": 1, "color": {"opacity": 0.35}, "confidence": "INFERRED"}, {"from": "favicon_favicon_image", "to": "favicon_building_silhouette", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "favicon_favicon_image", "to": "favicon_lcov_report", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "favicon_favicon_image", "to": "favicon_yellow_background", "label": "references", "title": "references [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}, {"from": "favicon_building_silhouette", "to": "favicon_yellow_background", "label": "shares_data_with", "title": "shares_data_with [EXTRACTED]", "dashes": false, "width": 2, "color": {"opacity": 0.7}, "confidence": "EXTRACTED"}];
71
+ const LEGEND = [{"cid": 0, "color": "#4E79A7", "label": "Community 0", "count": 17}, {"cid": 1, "color": "#F28E2B", "label": "Community 1", "count": 17}, {"cid": 2, "color": "#E15759", "label": "Community 2", "count": 25}, {"cid": 3, "color": "#76B7B2", "label": "Community 3", "count": 17}, {"cid": 4, "color": "#59A14F", "label": "Community 4", "count": 11}, {"cid": 5, "color": "#EDC948", "label": "Community 5", "count": 7}, {"cid": 6, "color": "#B07AA1", "label": "Community 6", "count": 16}, {"cid": 7, "color": "#FF9DA7", "label": "Community 7", "count": 6}, {"cid": 8, "color": "#9C755F", "label": "Community 8", "count": 4}, {"cid": 9, "color": "#BAB0AC", "label": "Community 9", "count": 3}, {"cid": 10, "color": "#4E79A7", "label": "Community 10", "count": 22}, {"cid": 11, "color": "#F28E2B", "label": "Community 11", "count": 15}, {"cid": 12, "color": "#E15759", "label": "Community 12", "count": 14}, {"cid": 13, "color": "#76B7B2", "label": "Community 13", "count": 13}, {"cid": 14, "color": "#59A14F", "label": "Community 14", "count": 12}, {"cid": 15, "color": "#EDC948", "label": "Community 15", "count": 8}, {"cid": 16, "color": "#B07AA1", "label": "Community 16", "count": 7}, {"cid": 17, "color": "#FF9DA7", "label": "Community 17", "count": 4}, {"cid": 18, "color": "#9C755F", "label": "Community 18", "count": 4}, {"cid": 19, "color": "#BAB0AC", "label": "Community 19", "count": 1}, {"cid": 20, "color": "#4E79A7", "label": "Community 20", "count": 1}, {"cid": 21, "color": "#F28E2B", "label": "Community 21", "count": 1}, {"cid": 22, "color": "#E15759", "label": "Community 22", "count": 1}, {"cid": 23, "color": "#76B7B2", "label": "Community 23", "count": 1}, {"cid": 24, "color": "#59A14F", "label": "Community 24", "count": 1}, {"cid": 25, "color": "#EDC948", "label": "Community 25", "count": 1}, {"cid": 26, "color": "#B07AA1", "label": "Community 26", "count": 1}, {"cid": 27, "color": "#FF9DA7", "label": "Community 27", "count": 1}, {"cid": 28, "color": "#9C755F", "label": "Community 28", "count": 1}, {"cid": 29, "color": "#BAB0AC", "label": "Community 29", "count": 1}, {"cid": 30, "color": "#4E79A7", "label": "Community 30", "count": 1}, {"cid": 31, "color": "#F28E2B", "label": "Community 31", "count": 1}, {"cid": 32, "color": "#E15759", "label": "Community 32", "count": 1}, {"cid": 33, "color": "#76B7B2", "label": "Community 33", "count": 1}, {"cid": 34, "color": "#59A14F", "label": "Community 34", "count": 1}, {"cid": 35, "color": "#EDC948", "label": "Community 35", "count": 1}, {"cid": 36, "color": "#B07AA1", "label": "Community 36", "count": 1}, {"cid": 37, "color": "#FF9DA7", "label": "Community 37", "count": 1}, {"cid": 38, "color": "#9C755F", "label": "Community 38", "count": 1}, {"cid": 39, "color": "#BAB0AC", "label": "Community 39", "count": 1}, {"cid": 40, "color": "#4E79A7", "label": "Community 40", "count": 1}, {"cid": 41, "color": "#F28E2B", "label": "Community 41", "count": 1}, {"cid": 42, "color": "#E15759", "label": "Community 42", "count": 1}, {"cid": 43, "color": "#76B7B2", "label": "Community 43", "count": 1}, {"cid": 44, "color": "#59A14F", "label": "Community 44", "count": 1}, {"cid": 45, "color": "#EDC948", "label": "Community 45", "count": 1}, {"cid": 46, "color": "#B07AA1", "label": "Community 46", "count": 1}, {"cid": 47, "color": "#FF9DA7", "label": "Community 47", "count": 1}, {"cid": 48, "color": "#9C755F", "label": "Community 48", "count": 1}, {"cid": 49, "color": "#BAB0AC", "label": "Community 49", "count": 1}, {"cid": 50, "color": "#4E79A7", "label": "Community 50", "count": 1}, {"cid": 51, "color": "#F28E2B", "label": "Community 51", "count": 1}, {"cid": 52, "color": "#E15759", "label": "Community 52", "count": 1}, {"cid": 53, "color": "#76B7B2", "label": "Community 53", "count": 1}];
59
72
 
60
73
  // HTML-escape helper — prevents XSS when injecting graph data into innerHTML
61
74
  function esc(s) {
@@ -190,15 +203,42 @@ document.addEventListener('click', e => {
190
203
  });
191
204
 
192
205
  const hiddenCommunities = new Set();
206
+
207
+ const selectAllCb = document.getElementById('select-all-cb');
208
+
209
+ function updateSelectAllState() {
210
+ const total = LEGEND.length;
211
+ const hidden = hiddenCommunities.size;
212
+ selectAllCb.checked = hidden === 0;
213
+ selectAllCb.indeterminate = hidden > 0 && hidden < total;
214
+ }
215
+
216
+ function toggleAllCommunities(hide) {
217
+ document.querySelectorAll('.legend-item').forEach(item => {
218
+ hide ? item.classList.add('dimmed') : item.classList.remove('dimmed');
219
+ });
220
+ document.querySelectorAll('.legend-cb').forEach(cb => {
221
+ cb.checked = !hide;
222
+ });
223
+ LEGEND.forEach(c => {
224
+ if (hide) hiddenCommunities.add(c.cid); else hiddenCommunities.delete(c.cid);
225
+ });
226
+ const updates = RAW_NODES.map(n => ({ id: n.id, hidden: hide }));
227
+ nodesDS.update(updates);
228
+ updateSelectAllState();
229
+ }
230
+
193
231
  const legendEl = document.getElementById('legend');
194
232
  LEGEND.forEach(c => {
195
233
  const item = document.createElement('div');
196
234
  item.className = 'legend-item';
197
- item.innerHTML = `<div class="legend-dot" style="background:${c.color}"></div>
198
- <span class="legend-label">${c.label}</span>
199
- <span class="legend-count">${c.count}</span>`;
200
- item.onclick = () => {
201
- if (hiddenCommunities.has(c.cid)) {
235
+ const cb = document.createElement('input');
236
+ cb.type = 'checkbox';
237
+ cb.className = 'legend-cb';
238
+ cb.checked = true;
239
+ cb.addEventListener('change', (e) => {
240
+ e.stopPropagation();
241
+ if (cb.checked) {
202
242
  hiddenCommunities.delete(c.cid);
203
243
  item.classList.remove('dimmed');
204
244
  } else {
@@ -207,8 +247,18 @@ LEGEND.forEach(c => {
207
247
  }
208
248
  const updates = RAW_NODES
209
249
  .filter(n => n.community === c.cid)
210
- .map(n => ({ id: n.id, hidden: hiddenCommunities.has(c.cid) }));
250
+ .map(n => ({ id: n.id, hidden: !cb.checked }));
211
251
  nodesDS.update(updates);
252
+ updateSelectAllState();
253
+ });
254
+ item.innerHTML = `<div class="legend-dot" style="background:${c.color}"></div>
255
+ <span class="legend-label">${c.label}</span>
256
+ <span class="legend-count">${c.count}</span>`;
257
+ item.prepend(cb);
258
+ item.onclick = (e) => {
259
+ if (e.target === cb) return;
260
+ cb.checked = !cb.checked;
261
+ cb.dispatchEvent(new Event('change'));
212
262
  };
213
263
  legendEl.appendChild(item);
214
264
  });
@@ -216,32 +266,24 @@ LEGEND.forEach(c => {
216
266
  <script>
217
267
  // Render hyperedges as shaded regions
218
268
  const hyperedges = [{"id": "v1_to_v2_migration_concerns", "label": "v1.x to v2.x Migration Concerns", "nodes": ["migration_v1_to_v2", "migration_shortcuts_v4", "migration_click_target", "migration_hover_target", "migration_rationale"], "relation": "form", "confidence": "EXTRACTED", "confidence_score": 0.9, "source_file": "Migration.guide.md"}, {"id": "scene_lifecycle", "label": "Scene lifecycle methods", "nodes": ["readme_scene", "readme_show", "readme_hide", "readme_aftershow", "readme_beforehide"], "relation": "form", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "README.md"}, {"id": "jump_navigation", "label": "Jump-based scene navigation flow", "nodes": ["readme_jump", "readme_jumpback", "readme_jumpsreset", "readme_jumpstack", "readme_scene"], "relation": "participate_in", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "README.md"}, {"id": "plugin_system", "label": "Shortcut plugin system", "nodes": ["readme_loadplugins", "readme_enableplugin", "readme_disableplugin", "readme_plugin_key", "readme_plugin_click", "readme_plugin_form", "readme_plugin_hover", "readme_plugin_scroll", "readme_shortcuts"], "relation": "implement", "confidence": "EXTRACTED", "confidence_score": 1.0, "source_file": "README.md"}, {"id": "cuts_logo_composition", "label": "Cuts Logo Visual Composition", "nodes": ["cuts_wordmark", "cuts_film_strip_icon", "cuts_background_pattern", "cuts_dark_theme_design"], "relation": "form", "confidence": "INFERRED", "confidence_score": 0.85, "source_file": "cuts.png"}];
219
- function drawHyperedges() {
220
- const canvas = network.canvas.frame.canvas;
221
- const ctx = canvas.getContext('2d');
269
+ // afterDrawing passes ctx already transformed to network coordinate space.
270
+ // Draw node positions raw — no manual pan/zoom/DPR math needed.
271
+ network.on('afterDrawing', function(ctx) {
222
272
  hyperedges.forEach(h => {
223
273
  const positions = h.nodes
224
274
  .map(nid => network.getPositions([nid])[nid])
225
275
  .filter(p => p !== undefined);
226
276
  if (positions.length < 2) return;
227
- // Draw convex hull as filled polygon
228
277
  ctx.save();
229
278
  ctx.globalAlpha = 0.12;
230
279
  ctx.fillStyle = '#6366f1';
231
280
  ctx.strokeStyle = '#6366f1';
232
281
  ctx.lineWidth = 2;
233
282
  ctx.beginPath();
234
- const scale = network.getScale();
235
- const offset = network.getViewPosition();
236
- const toCanvas = (p) => ({
237
- x: (p.x - offset.x) * scale + canvas.width / 2,
238
- y: (p.y - offset.y) * scale + canvas.height / 2
239
- });
240
- const pts = positions.map(toCanvas);
241
- // Expand hull slightly
242
- const cx = pts.reduce((s, p) => s + p.x, 0) / pts.length;
243
- const cy = pts.reduce((s, p) => s + p.y, 0) / pts.length;
244
- const expanded = pts.map(p => ({
283
+ // Centroid and expanded hull in network coordinates
284
+ const cx = positions.reduce((s, p) => s + p.x, 0) / positions.length;
285
+ const cy = positions.reduce((s, p) => s + p.y, 0) / positions.length;
286
+ const expanded = positions.map(p => ({
245
287
  x: cx + (p.x - cx) * 1.15,
246
288
  y: cy + (p.y - cy) * 1.15
247
289
  }));
@@ -259,8 +301,7 @@ function drawHyperedges() {
259
301
  ctx.fillText(h.label, cx, cy - 5);
260
302
  ctx.restore();
261
303
  });
262
- }
263
- network.on('afterDrawing', drawHyperedges);
304
+ });
264
305
  </script>
265
306
  </body>
266
307
  </html>