| <!doctype html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8" /> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| <title>Cross-domain Relationship Graph</title> |
| <script type="text/javascript" src="https://unpkg.com/vis-network/standalone/umd/vis-network.min.js"></script> |
| <style> |
| :root { |
| --bg: #f8fafc; |
| --panel: #ffffff; |
| --border: #e2e8f0; |
| --text: #0f172a; |
| --muted: #64748b; |
| --primary: #2563eb; |
| --broadcast: #8b5cf6; |
| --scc: #f97316; |
| } |
| html, body { |
| width: 100%; |
| height: 100%; |
| margin: 0; |
| font-family: "Times New Roman", Times, serif; |
| font-weight: 700; |
| background: var(--bg); |
| color: var(--text); |
| } |
| body { |
| display: flex; |
| flex-direction: column; |
| min-height: 100vh; |
| } |
| #toolbar { |
| box-sizing: border-box; |
| width: 100%; |
| padding: 14px 18px; |
| border-bottom: 1px solid var(--border); |
| background: rgba(255, 255, 255, 0.92); |
| backdrop-filter: blur(10px); |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| gap: 16px; |
| font-size: 14px; |
| } |
| .toolbar-left { |
| display: flex; |
| align-items: center; |
| gap: 10px; |
| } |
| .title-wrap { |
| display: flex; |
| flex-direction: column; |
| gap: 2px; |
| margin-right: 6px; |
| } |
| .title-wrap b { |
| font-size: 16px; |
| letter-spacing: -0.01em; |
| } |
| .subtitle { |
| color: var(--muted); |
| font-size: 12px; |
| font-weight: normal; |
| } |
| .view-btn { |
| border: 1px solid var(--border); |
| background: #fff; |
| color: #334155; |
| border-radius: 999px; |
| padding: 6px 12px; |
| cursor: pointer; |
| font-size: 13px; |
| box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05); |
| } |
| .view-btn.active { |
| border-color: #bfdbfe; |
| background: #eff6ff; |
| color: var(--primary); |
| font-weight: 700; |
| } |
| .search-wrap { |
| display: inline-flex; |
| align-items: center; |
| gap: 6px; |
| margin-left: 6px; |
| } |
| .search-input { |
| width: 170px; |
| padding: 6px 10px; |
| border: 1px solid var(--border); |
| border-radius: 999px; |
| font-size: 13px; |
| outline: none; |
| box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04); |
| } |
| .search-btn { |
| border: 1px solid var(--border); |
| background: #fff; |
| color: #334155; |
| border-radius: 999px; |
| padding: 6px 12px; |
| cursor: pointer; |
| font-size: 13px; |
| } |
| .search-btn:hover { |
| border-color: #2b7cff; |
| color: #135ad8; |
| } |
| .scc-controls { |
| display: inline-flex; |
| align-items: center; |
| gap: 7px; |
| margin-left: 6px; |
| padding-left: 6px; |
| border-left: 1px solid #e2e8f0; |
| } |
| .toolbar-select { |
| height: 30px; |
| border: 1px solid var(--border); |
| border-radius: 999px; |
| padding: 0 9px; |
| background: #fff; |
| color: #334155; |
| font-size: 12px; |
| outline: none; |
| } |
| .toggle-label { |
| display: inline-flex; |
| align-items: center; |
| gap: 4px; |
| color: #334155; |
| font-size: 12px; |
| white-space: nowrap; |
| } |
| .toolbar-right { |
| display: flex; |
| align-items: center; |
| gap: 16px; |
| } |
| .hint { |
| color: var(--muted); |
| white-space: nowrap; |
| } |
| #graphShell { |
| flex: 1; |
| min-height: 0; |
| display: flex; |
| width: 100%; |
| } |
| #network { |
| flex: 1; |
| min-height: 200px; |
| width: 100%; |
| position: relative; |
| overflow: hidden; |
| background: |
| radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 34%), |
| radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.08), transparent 32%), |
| #ffffff; |
| } |
| .scc-glow-layer { |
| position: absolute; |
| inset: 0; |
| width: 100%; |
| height: 100%; |
| overflow: visible; |
| pointer-events: none; |
| z-index: 1; |
| } |
| #network canvas { |
| position: relative; |
| z-index: 2; |
| } |
| .scc-glow .halo, |
| .scc-glow .core { |
| stroke: none; |
| transition: opacity 180ms ease; |
| } |
| .scc-tooltip { |
| position: absolute; |
| left: 0; |
| top: 0; |
| z-index: 5; |
| display: none; |
| max-width: 280px; |
| padding: 8px 12px; |
| border-radius: 6px; |
| background: #ffffff; |
| color: #0f172a; |
| box-shadow: 0 4px 12px rgba(0,0,0,0.12); |
| font-size: 12px; |
| line-height: 1.45; |
| pointer-events: none; |
| white-space: nowrap; |
| } |
| .scc-tooltip b { |
| display: block; |
| margin-bottom: 3px; |
| font-size: 12px; |
| } |
| .scc-tooltip .tooltip-line { |
| color: #475569; |
| } |
| #structurePanel { |
| box-sizing: border-box; |
| width: 340px; |
| max-width: 34vw; |
| min-width: 280px; |
| border-left: 1px solid var(--border); |
| background: rgba(248, 250, 252, 0.96); |
| padding: 14px; |
| overflow: auto; |
| } |
| .panel-title { |
| display: flex; |
| align-items: baseline; |
| justify-content: space-between; |
| gap: 8px; |
| margin-bottom: 10px; |
| } |
| .panel-title b { |
| font-size: 14px; |
| letter-spacing: -0.01em; |
| } |
| .panel-title span { |
| color: var(--muted); |
| font-size: 12px; |
| } |
| .structure-section { |
| margin-bottom: 14px; |
| } |
| .section-label { |
| display: flex; |
| align-items: center; |
| gap: 7px; |
| margin: 0 0 8px; |
| color: #334155; |
| font-size: 12px; |
| font-weight: 800; |
| letter-spacing: 0.04em; |
| text-transform: uppercase; |
| } |
| .section-label::before { |
| content: ""; |
| width: 8px; |
| height: 8px; |
| border-radius: 999px; |
| background: var(--primary); |
| } |
| .section-label.broadcast::before { |
| background: var(--broadcast); |
| } |
| .section-label.scc::before { |
| background: var(--scc); |
| } |
| .section-toggle { |
| width: 100%; |
| border: 0; |
| border-radius: 10px; |
| padding: 8px 10px; |
| margin: 0 0 8px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| gap: 10px; |
| cursor: pointer; |
| color: #334155; |
| font-size: 12px; |
| font-weight: 800; |
| letter-spacing: 0.02em; |
| text-align: left; |
| } |
| .section-toggle.broadcast { |
| background: #f5f3ff; |
| color: #5b21b6; |
| } |
| .section-toggle.unknown { |
| background: #fff7ed; |
| color: #9a3412; |
| } |
| .section-toggle .badge { |
| display: inline-flex; |
| align-items: center; |
| gap: 4px; |
| padding: 2px 7px; |
| border-radius: 999px; |
| background: rgba(255, 255, 255, 0.82); |
| font-size: 11px; |
| } |
| .section-toggle .alert-dot { |
| width: 7px; |
| height: 7px; |
| border-radius: 999px; |
| background: #ef4444; |
| } |
| .empty-note { |
| padding: 12px; |
| border: 1px dashed #cbd5e1; |
| border-radius: 12px; |
| color: var(--muted); |
| background: #fff; |
| font-size: 12px; |
| line-height: 1.5; |
| } |
| .group-card { |
| border: 1px solid var(--border); |
| border-radius: 14px; |
| padding: 10px 11px; |
| margin-bottom: 8px; |
| background: #fff; |
| cursor: pointer; |
| border-left-width: 4px; |
| box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05); |
| transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease; |
| } |
| .group-card:hover { |
| transform: translateY(-1px); |
| box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08); |
| border-color: #cbd5e1; |
| } |
| .group-card.broadcast { |
| border-color: #ddd6fe; |
| border-left-color: #a78bfa; |
| background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%); |
| } |
| .group-card.scc, |
| .group-card.unknown { |
| border-color: #fed7aa; |
| border-left-color: #f59e0b; |
| background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%); |
| } |
| .group-card.active { |
| border-color: #f59e0b; |
| box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.22), 0 8px 18px rgba(15, 23, 42, 0.10); |
| } |
| .group-head { |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| gap: 8px; |
| margin-bottom: 8px; |
| font-size: 13px; |
| font-weight: 800; |
| } |
| .group-meta { |
| color: var(--muted); |
| font-size: 11px; |
| font-weight: 600; |
| white-space: nowrap; |
| } |
| .group-breakdown { |
| margin: -2px 0 8px; |
| color: #64748b; |
| font-size: 11px; |
| font-weight: 700; |
| } |
| .node-chips { |
| display: flex; |
| flex-wrap: wrap; |
| gap: 6px; |
| } |
| .node-chip { |
| display: inline-flex; |
| align-items: center; |
| gap: 4px; |
| max-width: 100%; |
| padding: 3px 7px; |
| border-radius: 999px; |
| background: rgba(255, 255, 255, 0.86); |
| border: 1px solid #e2e8f0; |
| color: #334155; |
| font-family: ui-monospace, SFMono-Regular, Consolas, monospace; |
| font-size: 11px; |
| cursor: crosshair; |
| } |
| .node-chip.virtual { |
| border-style: dashed; |
| color: #7c3aed; |
| } |
| .legend-bar { |
| box-sizing: border-box; |
| width: 100%; |
| padding: 9px 18px 10px; |
| background: #f1f5f9; |
| border-bottom: 1px solid var(--border); |
| font-size: 12px; |
| color: #374151; |
| line-height: 1.45; |
| } |
| .legend-panel { |
| display: none; |
| flex-wrap: wrap; |
| align-items: center; |
| gap: 6px 18px; |
| } |
| .legend-panel.active { |
| display: flex; |
| } |
| .legend-title { |
| font-weight: 700; |
| color: #111827; |
| margin-right: 4px; |
| } |
| .legend-sep { |
| color: #9ca3af; |
| user-select: none; |
| } |
| .legend-item { |
| display: inline-flex; |
| align-items: center; |
| gap: 6px; |
| max-width: 100%; |
| } |
| .lg-node { |
| width: 14px; |
| height: 14px; |
| border-radius: 50%; |
| flex-shrink: 0; |
| border: 2px solid #6366f1; |
| background: #818cf8; |
| } |
| .lg-node.virtual { |
| background: #fff; |
| border: 2px dashed #6366f1; |
| } |
| .lg-edge { |
| width: 32px; |
| flex-shrink: 0; |
| border-top: 2px solid #666666; |
| } |
| .lg-edge.dash { |
| border-top-style: dashed; |
| opacity: 0.85; |
| } |
| .lg-edge.green { |
| border-top-color: #22c55e; |
| } |
| .lg-edge.amber { |
| border-top-color: #f59e0b; |
| } |
| .lg-edge.purple { |
| border-top-color: #8b5cf6; |
| border-top-style: dashed; |
| } |
| .lg-glow { |
| width: 14px; |
| height: 14px; |
| border-radius: 50%; |
| flex-shrink: 0; |
| } |
| .lg-glow.broadcast { |
| background: radial-gradient(circle, rgba(167, 139, 250, 0.85) 0%, rgba(167, 139, 250, 0.35) 48%, rgba(167, 139, 250, 0) 72%); |
| box-shadow: 0 0 10px rgba(167, 139, 250, 0.45); |
| } |
| .lg-glow.unknown { |
| background: radial-gradient(circle, rgba(251, 146, 60, 0.9) 0%, rgba(251, 146, 60, 0.38) 48%, rgba(251, 146, 60, 0) 72%); |
| box-shadow: 0 0 10px rgba(251, 146, 60, 0.48); |
| } |
| .legend-bar code { |
| font-size: 11px; |
| background: #e5e7eb; |
| padding: 1px 4px; |
| border-radius: 3px; |
| font-family: ui-monospace, Consolas, monospace; |
| } |
| .error-box { |
| margin: 12px 16px; |
| padding: 10px 12px; |
| border: 1px solid #fca5a5; |
| border-radius: 6px; |
| background: #fef2f2; |
| color: #991b1b; |
| font-size: 13px; |
| white-space: pre-wrap; |
| } |
| @media print { |
| #toolbar { position: static; } |
| } |
| @media (max-width: 980px) { |
| #toolbar, .toolbar-left { |
| align-items: flex-start; |
| flex-wrap: wrap; |
| } |
| .scc-controls { |
| flex-wrap: wrap; |
| border-left: 0; |
| padding-left: 0; |
| } |
| #graphShell { |
| flex-direction: column; |
| } |
| #structurePanel { |
| width: 100%; |
| max-width: none; |
| min-width: 0; |
| max-height: 34vh; |
| border-left: none; |
| border-top: 1px solid var(--border); |
| } |
| } |
| </style> |
| </head> |
| <body> |
| <div id="toolbar"> |
| <div class="toolbar-left"> |
| <div class="title-wrap"> |
| <b>Cross-domain Relationship Graph</b> |
| <span class="subtitle">Gr.0048.fuzzing.1786006053</span> |
| </div> |
| <div class="search-wrap"> |
| <input id="searchCanId" class="search-input" type="text" placeholder="CAN-ID, e.g. 0x00DB" /> |
| <button id="btnFocusCanId" class="search-btn">Focus</button> |
| </div> |
| <div class="scc-controls"> |
| <label class="toggle-label" for="sccHullMode">SCC Hull</label> |
| <select id="sccHullMode" class="toolbar-select"> |
| <option value="All">All</option> |
| <option value="OnlyBroadcast">Only Co-source Broadcast</option> |
| <option value="OnlyUnknown">Only Potential Forwarding</option> |
| <option value="Off">Off</option> |
| </select> |
| <button id="btnJumpUnknown" class="search-btn" type="button">Jump to next Potential Forwarding</button> |
| <label class="toggle-label" title="Potential Forwarding SCC breathing animation"> |
| <input id="toggleBreathing" type="checkbox" checked /> |
| Breathing |
| </label> |
| </div> |
| </div> |
| <div class="toolbar-right"> |
| <div class="hint">Nodes: <span id="nodeCount"></span> | Edges: <span id="edgeCount"></span></div> |
| </div> |
| </div> |
| <div id="legendBar" class="legend-bar"> |
| <div id="legendForwarding" class="legend-panel active"> |
| <span class="legend-title">Legend</span> |
| <span class="legend-sep">|</span> |
| <span class="legend-item"><span class="lg-node" title="filled"></span> (field, CAN-ID) node</span> |
| <span class="legend-sep">|</span> |
| <span class="legend-item"><span class="lg-node virtual" title="virtual"></span> Dashed ring, white fill: virtual node (domain 0)</span> |
| <span class="legend-sep">|</span> |
| <span class="legend-item"><span class="lg-edge" title="solid"></span> forwarding relationship</span> |
| <span class="legend-sep">|</span> |
| <span class="legend-item"><span class="lg-edge dash" style="border-top-color:#f59e0b;" title="potential forwarding edge"></span> Dashed amber edge with two arrows: potential forwarding</span> |
| <span class="legend-sep">|</span> |
| <span class="legend-item"><span class="lg-edge dash" style="border-top-color:#a78bfa;" title="virtual edge"></span> Dashed, pale tint: virtual edge (touches domain 0 or label <code>virtual_edge</code>)</span> |
| <span class="legend-sep">|</span> |
| <span class="legend-item"><span class="lg-edge purple" title="broadcast edge"></span> co-source broadcast</span> |
| <span class="legend-sep">|</span> |
| <span class="legend-item"><span class="lg-glow broadcast"></span> Co-source Broadcast group</span> |
| <span class="legend-sep">|</span> |
| <span class="legend-item"><span class="lg-glow unknown"></span> Orange glow: Potential Forwarding SCC with breathing animation</span> |
| </div> |
| </div> |
| <div id="errorBox" class="error-box" style="display:none;"></div> |
| <div id="graphShell"> |
| <div id="network"> |
| <div id="sccTooltip" class="scc-tooltip" role="tooltip"></div> |
| </div> |
| <aside id="structurePanel"></aside> |
| </div> |
| <script> |
| (function initGraph() { |
| const errorBox = document.getElementById("errorBox"); |
| const nodeCountEl = document.getElementById("nodeCount"); |
| const edgeCountEl = document.getElementById("edgeCount"); |
| const searchCanIdInput = document.getElementById("searchCanId"); |
| const btnFocusCanId = document.getElementById("btnFocusCanId"); |
| const sccHullModeSelect = document.getElementById("sccHullMode"); |
| const btnJumpUnknown = document.getElementById("btnJumpUnknown"); |
| const toggleBreathing = document.getElementById("toggleBreathing"); |
| const structurePanel = document.getElementById("structurePanel"); |
| const sccTooltip = document.getElementById("sccTooltip"); |
| let nodesDataset = new vis.DataSet([]); |
| let edgesDataset = new vis.DataSet([]); |
| let sccHullMode = "All"; |
| let breathingEnabled = true; |
| let sccGroupsCache = []; |
| let hoveredSccId = null; |
| let focusedCanId = ""; |
| let unknownJumpIndex = -1; |
| let sccGlowSvg = null; |
| let sccGlowDefs = null; |
| let glowRafPending = false; |
| let flashSccId = null; |
| let flashStartedAt = 0; |
| |
| function showError(msg) { |
| if (!errorBox) return; |
| errorBox.style.display = "block"; |
| errorBox.textContent = msg; |
| } |
| function hideError() { |
| if (!errorBox) return; |
| errorBox.style.display = "none"; |
| errorBox.textContent = ""; |
| } |
| |
| try { |
| if (typeof vis === "undefined" || !vis.Network) { |
| showError("Failed to load vis-network. Check your network or CDN access."); |
| return; |
| } |
| |
| const graphNodes = [{"id":"0x3E5:2","label":"0x03E5\nDomain-2","title":"CAN_ID: 0x03E5\ndomain: 2","color":{"background":"#aa6df2","border":"#aa6df2","highlight":{"background":"#aa6df2","border":"#aa6df2"},"hover":{"background":"#aa6df2","border":"#aa6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x31B:2","label":"0x031B\nDomain-2","title":"CAN_ID: 0x031B\ndomain: 2","color":{"background":"#6d76f2","border":"#6d76f2","highlight":{"background":"#6d76f2","border":"#6d76f2"},"hover":{"background":"#6d76f2","border":"#6d76f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x5E1:2","label":"0x05E1\nDomain-2","title":"CAN_ID: 0x05E1\ndomain: 2","color":{"background":"#f26dde","border":"#f26dde","highlight":{"background":"#f26dde","border":"#f26dde"},"hover":{"background":"#f26dde","border":"#f26dde"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x545:2","label":"0x0545\nDomain-2","title":"CAN_ID: 0x0545\ndomain: 2","color":{"background":"#d76df2","border":"#d76df2","highlight":{"background":"#d76df2","border":"#d76df2"},"hover":{"background":"#d76df2","border":"#d76df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x65F:0","label":"0x065F\nDomain-0","title":"CAN_ID: 0x065F\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26dbe","highlight":{"background":"#FFFFFF","border":"#f26dbe"},"hover":{"background":"#FFFFFF","border":"#f26dbe"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x3C0:5","label":"0x03C0\nDomain-5","title":"CAN_ID: 0x03C0\ndomain: 5","color":{"background":"#956df2","border":"#956df2","highlight":{"background":"#956df2","border":"#956df2"},"hover":{"background":"#956df2","border":"#956df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x102:0","label":"0x0102\nDomain-0","title":"CAN_ID: 0x0102\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26f6d","highlight":{"background":"#FFFFFF","border":"#f26f6d"},"hover":{"background":"#FFFFFF","border":"#f26f6d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x6B2:2","label":"0x06B2\nDomain-2","title":"CAN_ID: 0x06B2\ndomain: 2","color":{"background":"#f26db4","border":"#f26db4","highlight":{"background":"#f26db4","border":"#f26db4"},"hover":{"background":"#f26db4","border":"#f26db4"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x365:1","label":"0x0365\nDomain-1","title":"CAN_ID: 0x0365\ndomain: 1","color":{"background":"#786df2","border":"#786df2","highlight":{"background":"#786df2","border":"#786df2"},"hover":{"background":"#786df2","border":"#786df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556EA:1","label":"0x1A5556EA\nDomain-1","title":"CAN_ID: 0x1A5556EA\ndomain: 1","color":{"background":"#6df2f2","border":"#6df2f2","highlight":{"background":"#6df2f2","border":"#6df2f2"},"hover":{"background":"#6df2f2","border":"#6df2f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x9F:0","label":"0x009F\nDomain-0","title":"CAN_ID: 0x009F\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26da9","highlight":{"background":"#FFFFFF","border":"#f26da9"},"hover":{"background":"#FFFFFF","border":"#f26da9"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x3BE:3","label":"0x03BE\nDomain-3","title":"CAN_ID: 0x03BE\ndomain: 3","color":{"background":"#926df2","border":"#926df2","highlight":{"background":"#926df2","border":"#926df2"},"hover":{"background":"#926df2","border":"#926df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xFC:2","label":"0x00FC\nDomain-2","title":"CAN_ID: 0x00FC\ndomain: 2","color":{"background":"#f26d72","border":"#f26d72","highlight":{"background":"#f26d72","border":"#f26d72"},"hover":{"background":"#f26d72","border":"#f26d72"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1F0:2","label":"0x01F0\nDomain-2","title":"CAN_ID: 0x01F0\ndomain: 2","color":{"background":"#6dbdf2","border":"#6dbdf2","highlight":{"background":"#6dbdf2","border":"#6dbdf2"},"hover":{"background":"#6dbdf2","border":"#6dbdf2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555628:0","label":"0x1A555628\nDomain-0","title":"CAN_ID: 0x1A555628\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2df","highlight":{"background":"#FFFFFF","border":"#6df2df"},"hover":{"background":"#FFFFFF","border":"#6df2df"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x670:2","label":"0x0670\nDomain-2","title":"CAN_ID: 0x0670\ndomain: 2","color":{"background":"#f26db9","border":"#f26db9","highlight":{"background":"#f26db9","border":"#f26db9"},"hover":{"background":"#f26db9","border":"#f26db9"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xDB:4","label":"0x00DB\nDomain-4","title":"CAN_ID: 0x00DB\ndomain: 4","color":{"background":"#f26d82","border":"#f26d82","highlight":{"background":"#f26d82","border":"#f26d82"},"hover":{"background":"#f26d82","border":"#f26d82"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3C0:0","label":"0x03C0\nDomain-0","title":"CAN_ID: 0x03C0\ndomain: 0","color":{"background":"#FFFFFF","border":"#956df2","highlight":{"background":"#FFFFFF","border":"#956df2"},"hover":{"background":"#FFFFFF","border":"#956df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x86:1","label":"0x0086\nDomain-1","title":"CAN_ID: 0x0086\ndomain: 1","color":{"background":"#f26dac","border":"#f26dac","highlight":{"background":"#f26dac","border":"#f26dac"},"hover":{"background":"#f26dac","border":"#f26dac"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x16A954AD:2","label":"0x16A954AD\nDomain-2","title":"CAN_ID: 0x16A954AD\ndomain: 2","color":{"background":"#d1f26d","border":"#d1f26d","highlight":{"background":"#d1f26d","border":"#d1f26d"},"hover":{"background":"#d1f26d","border":"#d1f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x102:4","label":"0x0102\nDomain-4","title":"CAN_ID: 0x0102\ndomain: 4","color":{"background":"#f26f6d","border":"#f26f6d","highlight":{"background":"#f26f6d","border":"#f26f6d"},"hover":{"background":"#f26f6d","border":"#f26f6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x14C:4","label":"0x014C\nDomain-4","title":"CAN_ID: 0x014C\ndomain: 4","color":{"background":"#f2db6d","border":"#f2db6d","highlight":{"background":"#f2db6d","border":"#f2db6d"},"hover":{"background":"#f2db6d","border":"#f2db6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A4:2","label":"0x01A4\nDomain-2","title":"CAN_ID: 0x01A4\ndomain: 2","color":{"background":"#6df29e","border":"#6df29e","highlight":{"background":"#6df29e","border":"#6df29e"},"hover":{"background":"#6df29e","border":"#6df29e"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x31B:1","label":"0x031B\nDomain-1","title":"CAN_ID: 0x031B\ndomain: 1","color":{"background":"#6d76f2","border":"#6d76f2","highlight":{"background":"#6d76f2","border":"#6d76f2"},"hover":{"background":"#6d76f2","border":"#6d76f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xAD:2","label":"0x00AD\nDomain-2","title":"CAN_ID: 0x00AD\ndomain: 2","color":{"background":"#f26da4","border":"#f26da4","highlight":{"background":"#f26da4","border":"#f26da4"},"hover":{"background":"#f26da4","border":"#f26da4"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x5E1:1","label":"0x05E1\nDomain-1","title":"CAN_ID: 0x05E1\ndomain: 1","color":{"background":"#f26dde","border":"#f26dde","highlight":{"background":"#f26dde","border":"#f26dde"},"hover":{"background":"#f26dde","border":"#f26dde"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3D4:1","label":"0x03D4\nDomain-1","title":"CAN_ID: 0x03D4\ndomain: 1","color":{"background":"#9d6df2","border":"#9d6df2","highlight":{"background":"#9d6df2","border":"#9d6df2"},"hover":{"background":"#9d6df2","border":"#9d6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xFD:0","label":"0x00FD\nDomain-0","title":"CAN_ID: 0x00FD\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26d6f","highlight":{"background":"#FFFFFF","border":"#f26d6f"},"hover":{"background":"#FFFFFF","border":"#f26d6f"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1A5555BF:0","label":"0x1A5555BF\nDomain-0","title":"CAN_ID: 0x1A5555BF\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2dd","highlight":{"background":"#FFFFFF","border":"#6df2dd"},"hover":{"background":"#FFFFFF","border":"#6df2dd"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x551:1","label":"0x0551\nDomain-1","title":"CAN_ID: 0x0551\ndomain: 1","color":{"background":"#de6df2","border":"#de6df2","highlight":{"background":"#de6df2","border":"#de6df2"},"hover":{"background":"#de6df2","border":"#de6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54AA:2","label":"0x12DD54AA\nDomain-2","title":"CAN_ID: 0x12DD54AA\ndomain: 2","color":{"background":"#f2946d","border":"#f2946d","highlight":{"background":"#f2946d","border":"#f2946d"},"hover":{"background":"#f2946d","border":"#f2946d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3C0:4","label":"0x03C0\nDomain-4","title":"CAN_ID: 0x03C0\ndomain: 4","color":{"background":"#956df2","border":"#956df2","highlight":{"background":"#956df2","border":"#956df2"},"hover":{"background":"#956df2","border":"#956df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x421:2","label":"0x0421\nDomain-2","title":"CAN_ID: 0x0421\ndomain: 2","color":{"background":"#bf6df2","border":"#bf6df2","highlight":{"background":"#bf6df2","border":"#bf6df2"},"hover":{"background":"#bf6df2","border":"#bf6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x40:4","label":"0x0040\nDomain-4","title":"CAN_ID: 0x0040\ndomain: 4","color":{"background":"#b76df2","border":"#b76df2","highlight":{"background":"#b76df2","border":"#b76df2"},"hover":{"background":"#b76df2","border":"#b76df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B2:1","label":"0x06B2\nDomain-1","title":"CAN_ID: 0x06B2\ndomain: 1","color":{"background":"#f26db4","border":"#f26db4","highlight":{"background":"#f26db4","border":"#f26db4"},"hover":{"background":"#f26db4","border":"#f26db4"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x365:0","label":"0x0365\nDomain-0","title":"CAN_ID: 0x0365\ndomain: 0","color":{"background":"#FFFFFF","border":"#786df2","highlight":{"background":"#FFFFFF","border":"#786df2"},"hover":{"background":"#FFFFFF","border":"#786df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x206:4","label":"0x0206\nDomain-4","title":"CAN_ID: 0x0206\ndomain: 4","color":{"background":"#6db5f2","border":"#6db5f2","highlight":{"background":"#6db5f2","border":"#6db5f2"},"hover":{"background":"#6db5f2","border":"#6db5f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xFD:4","label":"0x00FD\nDomain-4","title":"CAN_ID: 0x00FD\ndomain: 4","color":{"background":"#f26d6f","border":"#f26d6f","highlight":{"background":"#f26d6f","border":"#f26d6f"},"hover":{"background":"#f26d6f","border":"#f26d6f"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3BE:2","label":"0x03BE\nDomain-2","title":"CAN_ID: 0x03BE\ndomain: 2","color":{"background":"#926df2","border":"#926df2","highlight":{"background":"#926df2","border":"#926df2"},"hover":{"background":"#926df2","border":"#926df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x520:0","label":"0x0520\nDomain-0","title":"CAN_ID: 0x0520\ndomain: 0","color":{"background":"#FFFFFF","border":"#d46df2","highlight":{"background":"#FFFFFF","border":"#d46df2"},"hover":{"background":"#FFFFFF","border":"#d46df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1A5555BF:4","label":"0x1A5555BF\nDomain-4","title":"CAN_ID: 0x1A5555BF\ndomain: 4","color":{"background":"#6df2dd","border":"#6df2dd","highlight":{"background":"#6df2dd","border":"#6df2dd"},"hover":{"background":"#6df2dd","border":"#6df2dd"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x86:0","label":"0x0086\nDomain-0","title":"CAN_ID: 0x0086\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26dac","highlight":{"background":"#FFFFFF","border":"#f26dac"},"hover":{"background":"#FFFFFF","border":"#f26dac"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x16A954AD:1","label":"0x16A954AD\nDomain-1","title":"CAN_ID: 0x16A954AD\ndomain: 1","color":{"background":"#d1f26d","border":"#d1f26d","highlight":{"background":"#d1f26d","border":"#d1f26d"},"hover":{"background":"#d1f26d","border":"#d1f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B2:5","label":"0x06B2\nDomain-5","title":"CAN_ID: 0x06B2\ndomain: 5","color":{"background":"#f26db4","border":"#f26db4","highlight":{"background":"#f26db4","border":"#f26db4"},"hover":{"background":"#f26db4","border":"#f26db4"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3E5:0","label":"0x03E5\nDomain-0","title":"CAN_ID: 0x03E5\ndomain: 0","color":{"background":"#FFFFFF","border":"#aa6df2","highlight":{"background":"#FFFFFF","border":"#aa6df2"},"hover":{"background":"#FFFFFF","border":"#aa6df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x139:0","label":"0x0139\nDomain-0","title":"CAN_ID: 0x0139\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2cb6d","highlight":{"background":"#FFFFFF","border":"#f2cb6d"},"hover":{"background":"#FFFFFF","border":"#f2cb6d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x13D:0","label":"0x013D\nDomain-0","title":"CAN_ID: 0x013D\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2ce6d","highlight":{"background":"#FFFFFF","border":"#f2ce6d"},"hover":{"background":"#FFFFFF","border":"#f2ce6d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x5F0:2","label":"0x05F0\nDomain-2","title":"CAN_ID: 0x05F0\ndomain: 2","color":{"background":"#f26dd6","border":"#f26dd6","highlight":{"background":"#f26dd6","border":"#f26dd6"},"hover":{"background":"#f26dd6","border":"#f26dd6"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xAD:1","label":"0x00AD\nDomain-1","title":"CAN_ID: 0x00AD\ndomain: 1","color":{"background":"#f26da4","border":"#f26da4","highlight":{"background":"#f26da4","border":"#f26da4"},"hover":{"background":"#f26da4","border":"#f26da4"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3FB:1","label":"0x03FB\nDomain-1","title":"CAN_ID: 0x03FB\ndomain: 1","color":{"background":"#b26df2","border":"#b26df2","highlight":{"background":"#b26df2","border":"#b26df2"},"hover":{"background":"#b26df2","border":"#b26df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x520:4","label":"0x0520\nDomain-4","title":"CAN_ID: 0x0520\ndomain: 4","color":{"background":"#d46df2","border":"#d46df2","highlight":{"background":"#d46df2","border":"#d46df2"},"hover":{"background":"#d46df2","border":"#d46df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54C9:2","label":"0x12DD54C9\nDomain-2","title":"CAN_ID: 0x12DD54C9\ndomain: 2","color":{"background":"#f29c6d","border":"#f29c6d","highlight":{"background":"#f29c6d","border":"#f29c6d"},"hover":{"background":"#f29c6d","border":"#f29c6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555541:1","label":"0x1A555541\nDomain-1","title":"CAN_ID: 0x1A555541\ndomain: 1","color":{"background":"#6df2b3","border":"#6df2b3","highlight":{"background":"#6df2b3","border":"#6df2b3"},"hover":{"background":"#6df2b3","border":"#6df2b3"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54AA:1","label":"0x12DD54AA\nDomain-1","title":"CAN_ID: 0x12DD54AA\ndomain: 1","color":{"background":"#f2946d","border":"#f2946d","highlight":{"background":"#f2946d","border":"#f2946d"},"hover":{"background":"#f2946d","border":"#f2946d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x65D:2","label":"0x065D\nDomain-2","title":"CAN_ID: 0x065D\ndomain: 2","color":{"background":"#f26dc1","border":"#f26dc1","highlight":{"background":"#f26dc1","border":"#f26dc1"},"hover":{"background":"#f26dc1","border":"#f26dc1"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3C0:3","label":"0x03C0\nDomain-3","title":"CAN_ID: 0x03C0\ndomain: 3","color":{"background":"#956df2","border":"#956df2","highlight":{"background":"#956df2","border":"#956df2"},"hover":{"background":"#956df2","border":"#956df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x86:4","label":"0x0086\nDomain-4","title":"CAN_ID: 0x0086\ndomain: 4","color":{"background":"#f26dac","border":"#f26dac","highlight":{"background":"#f26dac","border":"#f26dac"},"hover":{"background":"#f26dac","border":"#f26dac"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x421:1","label":"0x0421\nDomain-1","title":"CAN_ID: 0x0421\ndomain: 1","color":{"background":"#bf6df2","border":"#bf6df2","highlight":{"background":"#bf6df2","border":"#bf6df2"},"hover":{"background":"#bf6df2","border":"#bf6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x40:3","label":"0x0040\nDomain-3","title":"CAN_ID: 0x0040\ndomain: 3","color":{"background":"#b76df2","border":"#b76df2","highlight":{"background":"#b76df2","border":"#b76df2"},"hover":{"background":"#b76df2","border":"#b76df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B2:0","label":"0x06B2\nDomain-0","title":"CAN_ID: 0x06B2\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26db4","highlight":{"background":"#FFFFFF","border":"#f26db4"},"hover":{"background":"#FFFFFF","border":"#f26db4"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x12DD5501:2","label":"0x12DD5501\nDomain-2","title":"CAN_ID: 0x12DD5501\ndomain: 2","color":{"background":"#f2b46d","border":"#f2b46d","highlight":{"background":"#f2b46d","border":"#f2b46d"},"hover":{"background":"#f2b46d","border":"#f2b46d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x10B:1","label":"0x010B\nDomain-1","title":"CAN_ID: 0x010B\ndomain: 1","color":{"background":"#f2726d","border":"#f2726d","highlight":{"background":"#f2726d","border":"#f2726d"},"hover":{"background":"#f2726d","border":"#f2726d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x139:4","label":"0x0139\nDomain-4","title":"CAN_ID: 0x0139\ndomain: 4","color":{"background":"#f2cb6d","border":"#f2cb6d","highlight":{"background":"#f2cb6d","border":"#f2cb6d"},"hover":{"background":"#f2cb6d","border":"#f2cb6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x13D:4","label":"0x013D\nDomain-4","title":"CAN_ID: 0x013D\ndomain: 4","color":{"background":"#f2ce6d","border":"#f2ce6d","highlight":{"background":"#f2ce6d","border":"#f2ce6d"},"hover":{"background":"#f2ce6d","border":"#f2ce6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54D1:2","label":"0x12DD54D1\nDomain-2","title":"CAN_ID: 0x12DD54D1\ndomain: 2","color":{"background":"#f2a16d","border":"#f2a16d","highlight":{"background":"#f2a16d","border":"#f2a16d"},"hover":{"background":"#f2a16d","border":"#f2a16d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x176:2","label":"0x0176\nDomain-2","title":"CAN_ID: 0x0176\ndomain: 2","color":{"background":"#88f26d","border":"#88f26d","highlight":{"background":"#88f26d","border":"#88f26d"},"hover":{"background":"#88f26d","border":"#88f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x641:3","label":"0x0641\nDomain-3","title":"CAN_ID: 0x0641\ndomain: 3","color":{"background":"#f26dce","border":"#f26dce","highlight":{"background":"#f26dce","border":"#f26dce"},"hover":{"background":"#f26dce","border":"#f26dce"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555AC:2","label":"0x1A5555AC\nDomain-2","title":"CAN_ID: 0x1A5555AC\ndomain: 2","color":{"background":"#6df2cd","border":"#6df2cd","highlight":{"background":"#6df2cd","border":"#6df2cd"},"hover":{"background":"#6df2cd","border":"#6df2cd"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD553D:1","label":"0x12DD553D\nDomain-1","title":"CAN_ID: 0x12DD553D\ndomain: 1","color":{"background":"#f2bb6d","border":"#f2bb6d","highlight":{"background":"#f2bb6d","border":"#f2bb6d"},"hover":{"background":"#f2bb6d","border":"#f2bb6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x397:4","label":"0x0397\nDomain-4","title":"CAN_ID: 0x0397\ndomain: 4","color":{"background":"#8d6df2","border":"#8d6df2","highlight":{"background":"#8d6df2","border":"#8d6df2"},"hover":{"background":"#8d6df2","border":"#8d6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x24F:4","label":"0x024F\nDomain-4","title":"CAN_ID: 0x024F\ndomain: 4","color":{"background":"#6d9ef2","border":"#6d9ef2","highlight":{"background":"#6d9ef2","border":"#6d9ef2"},"hover":{"background":"#6d9ef2","border":"#6d9ef2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x14C:2","label":"0x014C\nDomain-2","title":"CAN_ID: 0x014C\ndomain: 2","color":{"background":"#f2db6d","border":"#f2db6d","highlight":{"background":"#f2db6d","border":"#f2db6d"},"hover":{"background":"#f2db6d","border":"#f2db6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xF6:2","label":"0x00F6\nDomain-2","title":"CAN_ID: 0x00F6\ndomain: 2","color":{"background":"#f26d77","border":"#f26d77","highlight":{"background":"#f26d77","border":"#f26d77"},"hover":{"background":"#f26d77","border":"#f26d77"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555541:0","label":"0x1A555541\nDomain-0","title":"CAN_ID: 0x1A555541\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2b3","highlight":{"background":"#FFFFFF","border":"#6df2b3"},"hover":{"background":"#FFFFFF","border":"#6df2b3"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1A555521:2","label":"0x1A555521\nDomain-2","title":"CAN_ID: 0x1A555521\ndomain: 2","color":{"background":"#6df2ad","border":"#6df2ad","highlight":{"background":"#6df2ad","border":"#6df2ad"},"hover":{"background":"#6df2ad","border":"#6df2ad"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556E9:1","label":"0x1A5556E9\nDomain-1","title":"CAN_ID: 0x1A5556E9\ndomain: 1","color":{"background":"#6df2ef","border":"#6df2ef","highlight":{"background":"#6df2ef","border":"#6df2ef"},"hover":{"background":"#6df2ef","border":"#6df2ef"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x65D:1","label":"0x065D\nDomain-1","title":"CAN_ID: 0x065D\ndomain: 1","color":{"background":"#f26dc1","border":"#f26dc1","highlight":{"background":"#f26dc1","border":"#f26dc1"},"hover":{"background":"#f26dc1","border":"#f26dc1"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5501:1","label":"0x12DD5501\nDomain-1","title":"CAN_ID: 0x12DD5501\ndomain: 1","color":{"background":"#f2b46d","border":"#f2b46d","highlight":{"background":"#f2b46d","border":"#f2b46d"},"hover":{"background":"#f2b46d","border":"#f2b46d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x10B:0","label":"0x010B\nDomain-0","title":"CAN_ID: 0x010B\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2726d","highlight":{"background":"#FFFFFF","border":"#f2726d"},"hover":{"background":"#FFFFFF","border":"#f2726d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x12DD54D1:1","label":"0x12DD54D1\nDomain-1","title":"CAN_ID: 0x12DD54D1\ndomain: 1","color":{"background":"#f2a16d","border":"#f2a16d","highlight":{"background":"#f2a16d","border":"#f2a16d"},"hover":{"background":"#f2a16d","border":"#f2a16d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x641:2","label":"0x0641\nDomain-2","title":"CAN_ID: 0x0641\ndomain: 2","color":{"background":"#f26dce","border":"#f26dce","highlight":{"background":"#f26dce","border":"#f26dce"},"hover":{"background":"#f26dce","border":"#f26dce"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555AC:1","label":"0x1A5555AC\nDomain-1","title":"CAN_ID: 0x1A5555AC\ndomain: 1","color":{"background":"#6df2cd","border":"#6df2cd","highlight":{"background":"#6df2cd","border":"#6df2cd"},"hover":{"background":"#6df2cd","border":"#6df2cd"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x138:2","label":"0x0138\nDomain-2","title":"CAN_ID: 0x0138\ndomain: 2","color":{"background":"#f2c96d","border":"#f2c96d","highlight":{"background":"#f2c96d","border":"#f2c96d"},"hover":{"background":"#f2c96d","border":"#f2c96d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3FB:4","label":"0x03FB\nDomain-4","title":"CAN_ID: 0x03FB\ndomain: 4","color":{"background":"#b26df2","border":"#b26df2","highlight":{"background":"#b26df2","border":"#b26df2"},"hover":{"background":"#b26df2","border":"#b26df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x116:2","label":"0x0116\nDomain-2","title":"CAN_ID: 0x0116\ndomain: 2","color":{"background":"#f2776d","border":"#f2776d","highlight":{"background":"#f2776d","border":"#f2776d"},"hover":{"background":"#f2776d","border":"#f2776d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556E9:5","label":"0x1A5556E9\nDomain-5","title":"CAN_ID: 0x1A5556E9\ndomain: 5","color":{"background":"#6df2ef","border":"#6df2ef","highlight":{"background":"#6df2ef","border":"#6df2ef"},"hover":{"background":"#6df2ef","border":"#6df2ef"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556E9:0","label":"0x1A5556E9\nDomain-0","title":"CAN_ID: 0x1A5556E9\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2ef","highlight":{"background":"#FFFFFF","border":"#6df2ef"},"hover":{"background":"#FFFFFF","border":"#6df2ef"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0xE4:2","label":"0x00E4\nDomain-2","title":"CAN_ID: 0x00E4\ndomain: 2","color":{"background":"#f26d7f","border":"#f26d7f","highlight":{"background":"#f26d7f","border":"#f26d7f"},"hover":{"background":"#f26d7f","border":"#f26d7f"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3D5:4","label":"0x03D5\nDomain-4","title":"CAN_ID: 0x03D5\ndomain: 4","color":{"background":"#9f6df2","border":"#9f6df2","highlight":{"background":"#9f6df2","border":"#9f6df2"},"hover":{"background":"#9f6df2","border":"#9f6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x14D:2","label":"0x014D\nDomain-2","title":"CAN_ID: 0x014D\ndomain: 2","color":{"background":"#f2de6d","border":"#f2de6d","highlight":{"background":"#f2de6d","border":"#f2de6d"},"hover":{"background":"#f2de6d","border":"#f2de6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x641:1","label":"0x0641\nDomain-1","title":"CAN_ID: 0x0641\ndomain: 1","color":{"background":"#f26dce","border":"#f26dce","highlight":{"background":"#f26dce","border":"#f26dce"},"hover":{"background":"#f26dce","border":"#f26dce"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x65F:4","label":"0x065F\nDomain-4","title":"CAN_ID: 0x065F\ndomain: 4","color":{"background":"#f26dbe","border":"#f26dbe","highlight":{"background":"#f26dbe","border":"#f26dbe"},"hover":{"background":"#f26dbe","border":"#f26dbe"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x116:1","label":"0x0116\nDomain-1","title":"CAN_ID: 0x0116\ndomain: 1","color":{"background":"#f2776d","border":"#f2776d","highlight":{"background":"#f2776d","border":"#f2776d"},"hover":{"background":"#f2776d","border":"#f2776d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556E9:4","label":"0x1A5556E9\nDomain-4","title":"CAN_ID: 0x1A5556E9\ndomain: 4","color":{"background":"#6df2ef","border":"#6df2ef","highlight":{"background":"#6df2ef","border":"#6df2ef"},"hover":{"background":"#6df2ef","border":"#6df2ef"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556EA:5","label":"0x1A5556EA\nDomain-5","title":"CAN_ID: 0x1A5556EA\ndomain: 5","color":{"background":"#6df2f2","border":"#6df2f2","highlight":{"background":"#6df2f2","border":"#6df2f2"},"hover":{"background":"#6df2f2","border":"#6df2f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x366:0","label":"0x0366\nDomain-0","title":"CAN_ID: 0x0366\ndomain: 0","color":{"background":"#FFFFFF","border":"#7b6df2","highlight":{"background":"#FFFFFF","border":"#7b6df2"},"hover":{"background":"#FFFFFF","border":"#7b6df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x25D:2","label":"0x025D\nDomain-2","title":"CAN_ID: 0x025D\ndomain: 2","color":{"background":"#6d9bf2","border":"#6d9bf2","highlight":{"background":"#6d9bf2","border":"#6d9bf2"},"hover":{"background":"#6d9bf2","border":"#6d9bf2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x9F:4","label":"0x009F\nDomain-4","title":"CAN_ID: 0x009F\ndomain: 4","color":{"background":"#f26da9","border":"#f26da9","highlight":{"background":"#f26da9","border":"#f26da9"},"hover":{"background":"#f26da9","border":"#f26da9"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555628:4","label":"0x1A555628\nDomain-4","title":"CAN_ID: 0x1A555628\ndomain: 4","color":{"background":"#6df2df","border":"#6df2df","highlight":{"background":"#6df2df","border":"#6df2df"},"hover":{"background":"#6df2df","border":"#6df2df"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xE4:1","label":"0x00E4\nDomain-1","title":"CAN_ID: 0x00E4\ndomain: 1","color":{"background":"#f26d7f","border":"#f26d7f","highlight":{"background":"#f26d7f","border":"#f26d7f"},"hover":{"background":"#f26d7f","border":"#f26d7f"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556EA:0","label":"0x1A5556EA\nDomain-0","title":"CAN_ID: 0x1A5556EA\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2f2","highlight":{"background":"#FFFFFF","border":"#6df2f2"},"hover":{"background":"#FFFFFF","border":"#6df2f2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x3D5:3","label":"0x03D5\nDomain-3","title":"CAN_ID: 0x03D5\ndomain: 3","color":{"background":"#9f6df2","border":"#9f6df2","highlight":{"background":"#9f6df2","border":"#9f6df2"},"hover":{"background":"#9f6df2","border":"#9f6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x366:4","label":"0x0366\nDomain-4","title":"CAN_ID: 0x0366\ndomain: 4","color":{"background":"#7b6df2","border":"#7b6df2","highlight":{"background":"#7b6df2","border":"#7b6df2"},"hover":{"background":"#7b6df2","border":"#7b6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5497:2","label":"0x12DD5497\nDomain-2","title":"CAN_ID: 0x12DD5497\ndomain: 2","color":{"background":"#f28f6d","border":"#f28f6d","highlight":{"background":"#f28f6d","border":"#f28f6d"},"hover":{"background":"#f28f6d","border":"#f28f6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xFC:1","label":"0x00FC\nDomain-1","title":"CAN_ID: 0x00FC\ndomain: 1","color":{"background":"#f26d72","border":"#f26d72","highlight":{"background":"#f26d72","border":"#f26d72"},"hover":{"background":"#f26d72","border":"#f26d72"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x670:1","label":"0x0670\nDomain-1","title":"CAN_ID: 0x0670\ndomain: 1","color":{"background":"#f26db9","border":"#f26db9","highlight":{"background":"#f26db9","border":"#f26db9"},"hover":{"background":"#f26db9","border":"#f26db9"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54D6:2","label":"0x12DD54D6\nDomain-2","title":"CAN_ID: 0x12DD54D6\ndomain: 2","color":{"background":"#f2a46d","border":"#f2a46d","highlight":{"background":"#f2a46d","border":"#f2a46d"},"hover":{"background":"#f2a46d","border":"#f2a46d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x16A954C4:4","label":"0x16A954C4\nDomain-4","title":"CAN_ID: 0x16A954C4\ndomain: 4","color":{"background":"#c2f26d","border":"#c2f26d","highlight":{"background":"#c2f26d","border":"#c2f26d"},"hover":{"background":"#c2f26d","border":"#c2f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A4:1","label":"0x01A4\nDomain-1","title":"CAN_ID: 0x01A4\ndomain: 1","color":{"background":"#6df29e","border":"#6df29e","highlight":{"background":"#6df29e","border":"#6df29e"},"hover":{"background":"#6df29e","border":"#6df29e"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556EA:4","label":"0x1A5556EA\nDomain-4","title":"CAN_ID: 0x1A5556EA\ndomain: 4","color":{"background":"#6df2f2","border":"#6df2f2","highlight":{"background":"#6df2f2","border":"#6df2f2"},"hover":{"background":"#6df2f2","border":"#6df2f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x16A954C2:4","label":"0x16A954C2\nDomain-4","title":"CAN_ID: 0x16A954C2\ndomain: 4","color":{"background":"#c7f26d","border":"#c7f26d","highlight":{"background":"#c7f26d","border":"#c7f26d"},"hover":{"background":"#c7f26d","border":"#c7f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x545:0","label":"0x0545\nDomain-0","title":"CAN_ID: 0x0545\ndomain: 0","color":{"background":"#FFFFFF","border":"#d76df2","highlight":{"background":"#FFFFFF","border":"#d76df2"},"hover":{"background":"#FFFFFF","border":"#d76df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x3E5:4","label":"0x03E5\nDomain-4","title":"CAN_ID: 0x03E5\ndomain: 4","color":{"background":"#aa6df2","border":"#aa6df2","highlight":{"background":"#aa6df2","border":"#aa6df2"},"hover":{"background":"#aa6df2","border":"#aa6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x14D:0","label":"0x014D\nDomain-0","title":"CAN_ID: 0x014D\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2de6d","highlight":{"background":"#FFFFFF","border":"#f2de6d"},"hover":{"background":"#FFFFFF","border":"#f2de6d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x3D4:4","label":"0x03D4\nDomain-4","title":"CAN_ID: 0x03D4\ndomain: 4","color":{"background":"#9d6df2","border":"#9d6df2","highlight":{"background":"#9d6df2","border":"#9d6df2"},"hover":{"background":"#9d6df2","border":"#9d6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xFD:3","label":"0x00FD\nDomain-3","title":"CAN_ID: 0x00FD\ndomain: 3","color":{"background":"#f26d6f","border":"#f26d6f","highlight":{"background":"#f26d6f","border":"#f26d6f"},"hover":{"background":"#f26d6f","border":"#f26d6f"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3BE:1","label":"0x03BE\nDomain-1","title":"CAN_ID: 0x03BE\ndomain: 1","color":{"background":"#926df2","border":"#926df2","highlight":{"background":"#926df2","border":"#926df2"},"hover":{"background":"#926df2","border":"#926df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xFC:0","label":"0x00FC\nDomain-0","title":"CAN_ID: 0x00FC\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26d72","highlight":{"background":"#FFFFFF","border":"#f26d72"},"hover":{"background":"#FFFFFF","border":"#f26d72"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x545:4","label":"0x0545\nDomain-4","title":"CAN_ID: 0x0545\ndomain: 4","color":{"background":"#d76df2","border":"#d76df2","highlight":{"background":"#d76df2","border":"#d76df2"},"hover":{"background":"#d76df2","border":"#d76df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x551:4","label":"0x0551\nDomain-4","title":"CAN_ID: 0x0551\ndomain: 4","color":{"background":"#de6df2","border":"#de6df2","highlight":{"background":"#de6df2","border":"#de6df2"},"hover":{"background":"#de6df2","border":"#de6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x670:0","label":"0x0670\nDomain-0","title":"CAN_ID: 0x0670\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26db9","highlight":{"background":"#FFFFFF","border":"#f26db9"},"hover":{"background":"#FFFFFF","border":"#f26db9"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0xDB:2","label":"0x00DB\nDomain-2","title":"CAN_ID: 0x00DB\ndomain: 2","color":{"background":"#f26d82","border":"#f26d82","highlight":{"background":"#f26d82","border":"#f26d82"},"hover":{"background":"#f26d82","border":"#f26d82"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x102:2","label":"0x0102\nDomain-2","title":"CAN_ID: 0x0102\ndomain: 2","color":{"background":"#f26f6d","border":"#f26f6d","highlight":{"background":"#f26f6d","border":"#f26f6d"},"hover":{"background":"#f26f6d","border":"#f26f6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B2:4","label":"0x06B2\nDomain-4","title":"CAN_ID: 0x06B2\ndomain: 4","color":{"background":"#f26db4","border":"#f26db4","highlight":{"background":"#f26db4","border":"#f26db4"},"hover":{"background":"#f26db4","border":"#f26db4"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A4:0","label":"0x01A4\nDomain-0","title":"CAN_ID: 0x01A4\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df29e","highlight":{"background":"#FFFFFF","border":"#6df29e"},"hover":{"background":"#FFFFFF","border":"#6df29e"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x5F0:1","label":"0x05F0\nDomain-1","title":"CAN_ID: 0x05F0\ndomain: 1","color":{"background":"#f26dd6","border":"#f26dd6","highlight":{"background":"#f26dd6","border":"#f26dd6"},"hover":{"background":"#f26dd6","border":"#f26dd6"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xAD:0","label":"0x00AD\nDomain-0","title":"CAN_ID: 0x00AD\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26da4","highlight":{"background":"#FFFFFF","border":"#f26da4"},"hover":{"background":"#FFFFFF","border":"#f26da4"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0xFC:4","label":"0x00FC\nDomain-4","title":"CAN_ID: 0x00FC\ndomain: 4","color":{"background":"#f26d72","border":"#f26d72","highlight":{"background":"#f26d72","border":"#f26d72"},"hover":{"background":"#f26d72","border":"#f26d72"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1F0:4","label":"0x01F0\nDomain-4","title":"CAN_ID: 0x01F0\ndomain: 4","color":{"background":"#6dbdf2","border":"#6dbdf2","highlight":{"background":"#6dbdf2","border":"#6dbdf2"},"hover":{"background":"#6dbdf2","border":"#6dbdf2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54AA:0","label":"0x12DD54AA\nDomain-0","title":"CAN_ID: 0x12DD54AA\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2946d","highlight":{"background":"#FFFFFF","border":"#f2946d"},"hover":{"background":"#FFFFFF","border":"#f2946d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x670:4","label":"0x0670\nDomain-4","title":"CAN_ID: 0x0670\ndomain: 4","color":{"background":"#f26db9","border":"#f26db9","highlight":{"background":"#f26db9","border":"#f26db9"},"hover":{"background":"#f26db9","border":"#f26db9"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3C0:2","label":"0x03C0\nDomain-2","title":"CAN_ID: 0x03C0\ndomain: 2","color":{"background":"#956df2","border":"#956df2","highlight":{"background":"#956df2","border":"#956df2"},"hover":{"background":"#956df2","border":"#956df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x40:2","label":"0x0040\nDomain-2","title":"CAN_ID: 0x0040\ndomain: 2","color":{"background":"#b76df2","border":"#b76df2","highlight":{"background":"#b76df2","border":"#b76df2"},"hover":{"background":"#b76df2","border":"#b76df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x16A954AD:4","label":"0x16A954AD\nDomain-4","title":"CAN_ID: 0x16A954AD\ndomain: 4","color":{"background":"#d1f26d","border":"#d1f26d","highlight":{"background":"#d1f26d","border":"#d1f26d"},"hover":{"background":"#d1f26d","border":"#d1f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x5F0:5","label":"0x05F0\nDomain-5","title":"CAN_ID: 0x05F0\ndomain: 5","color":{"background":"#f26dd6","border":"#f26dd6","highlight":{"background":"#f26dd6","border":"#f26dd6"},"hover":{"background":"#f26dd6","border":"#f26dd6"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x176:1","label":"0x0176\nDomain-1","title":"CAN_ID: 0x0176\ndomain: 1","color":{"background":"#88f26d","border":"#88f26d","highlight":{"background":"#88f26d","border":"#88f26d"},"hover":{"background":"#88f26d","border":"#88f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x206:2","label":"0x0206\nDomain-2","title":"CAN_ID: 0x0206\ndomain: 2","color":{"background":"#6db5f2","border":"#6db5f2","highlight":{"background":"#6db5f2","border":"#6db5f2"},"hover":{"background":"#6db5f2","border":"#6db5f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xFD:2","label":"0x00FD\nDomain-2","title":"CAN_ID: 0x00FD\ndomain: 2","color":{"background":"#f26d6f","border":"#f26d6f","highlight":{"background":"#f26d6f","border":"#f26d6f"},"hover":{"background":"#f26d6f","border":"#f26d6f"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3BE:0","label":"0x03BE\nDomain-0","title":"CAN_ID: 0x03BE\ndomain: 0","color":{"background":"#FFFFFF","border":"#926df2","highlight":{"background":"#FFFFFF","border":"#926df2"},"hover":{"background":"#FFFFFF","border":"#926df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1A5555BF:2","label":"0x1A5555BF\nDomain-2","title":"CAN_ID: 0x1A5555BF\ndomain: 2","color":{"background":"#6df2dd","border":"#6df2dd","highlight":{"background":"#6df2dd","border":"#6df2dd"},"hover":{"background":"#6df2dd","border":"#6df2dd"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x5A0:4","label":"0x05A0\nDomain-4","title":"CAN_ID: 0x05A0\ndomain: 4","color":{"background":"#f26df0","border":"#f26df0","highlight":{"background":"#f26df0","border":"#f26df0"},"hover":{"background":"#f26df0","border":"#f26df0"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555541:4","label":"0x1A555541\nDomain-4","title":"CAN_ID: 0x1A555541\ndomain: 4","color":{"background":"#6df2b3","border":"#6df2b3","highlight":{"background":"#6df2b3","border":"#6df2b3"},"hover":{"background":"#6df2b3","border":"#6df2b3"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B2:3","label":"0x06B2\nDomain-3","title":"CAN_ID: 0x06B2\ndomain: 3","color":{"background":"#f26db4","border":"#f26db4","highlight":{"background":"#f26db4","border":"#f26db4"},"hover":{"background":"#f26db4","border":"#f26db4"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x14C:1","label":"0x014C\nDomain-1","title":"CAN_ID: 0x014C\ndomain: 1","color":{"background":"#f2db6d","border":"#f2db6d","highlight":{"background":"#f2db6d","border":"#f2db6d"},"hover":{"background":"#f2db6d","border":"#f2db6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5501:5","label":"0x12DD5501\nDomain-5","title":"CAN_ID: 0x12DD5501\ndomain: 5","color":{"background":"#f2b46d","border":"#f2b46d","highlight":{"background":"#f2b46d","border":"#f2b46d"},"hover":{"background":"#f2b46d","border":"#f2b46d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xF6:1","label":"0x00F6\nDomain-1","title":"CAN_ID: 0x00F6\ndomain: 1","color":{"background":"#f26d77","border":"#f26d77","highlight":{"background":"#f26d77","border":"#f26d77"},"hover":{"background":"#f26d77","border":"#f26d77"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x5F0:0","label":"0x05F0\nDomain-0","title":"CAN_ID: 0x05F0\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26dd6","highlight":{"background":"#FFFFFF","border":"#f26dd6"},"hover":{"background":"#FFFFFF","border":"#f26dd6"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x10B:4","label":"0x010B\nDomain-4","title":"CAN_ID: 0x010B\ndomain: 4","color":{"background":"#f2726d","border":"#f2726d","highlight":{"background":"#f2726d","border":"#f2726d"},"hover":{"background":"#f2726d","border":"#f2726d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3BE:4","label":"0x03BE\nDomain-4","title":"CAN_ID: 0x03BE\ndomain: 4","color":{"background":"#926df2","border":"#926df2","highlight":{"background":"#926df2","border":"#926df2"},"hover":{"background":"#926df2","border":"#926df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x520:2","label":"0x0520\nDomain-2","title":"CAN_ID: 0x0520\ndomain: 2","color":{"background":"#d46df2","border":"#d46df2","highlight":{"background":"#d46df2","border":"#d46df2"},"hover":{"background":"#d46df2","border":"#d46df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54C9:0","label":"0x12DD54C9\nDomain-0","title":"CAN_ID: 0x12DD54C9\ndomain: 0","color":{"background":"#FFFFFF","border":"#f29c6d","highlight":{"background":"#FFFFFF","border":"#f29c6d"},"hover":{"background":"#FFFFFF","border":"#f29c6d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x12DD553D:4","label":"0x12DD553D\nDomain-4","title":"CAN_ID: 0x12DD553D\ndomain: 4","color":{"background":"#f2bb6d","border":"#f2bb6d","highlight":{"background":"#f2bb6d","border":"#f2bb6d"},"hover":{"background":"#f2bb6d","border":"#f2bb6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555521:1","label":"0x1A555521\nDomain-1","title":"CAN_ID: 0x1A555521\ndomain: 1","color":{"background":"#6df2ad","border":"#6df2ad","highlight":{"background":"#6df2ad","border":"#6df2ad"},"hover":{"background":"#6df2ad","border":"#6df2ad"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x65D:0","label":"0x065D\nDomain-0","title":"CAN_ID: 0x065D\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26dc1","highlight":{"background":"#FFFFFF","border":"#f26dc1"},"hover":{"background":"#FFFFFF","border":"#f26dc1"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x3C0:1","label":"0x03C0\nDomain-1","title":"CAN_ID: 0x03C0\ndomain: 1","color":{"background":"#956df2","border":"#956df2","highlight":{"background":"#956df2","border":"#956df2"},"hover":{"background":"#956df2","border":"#956df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x86:2","label":"0x0086\nDomain-2","title":"CAN_ID: 0x0086\ndomain: 2","color":{"background":"#f26dac","border":"#f26dac","highlight":{"background":"#f26dac","border":"#f26dac"},"hover":{"background":"#f26dac","border":"#f26dac"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x40:1","label":"0x0040\nDomain-1","title":"CAN_ID: 0x0040\ndomain: 1","color":{"background":"#b76df2","border":"#b76df2","highlight":{"background":"#b76df2","border":"#b76df2"},"hover":{"background":"#b76df2","border":"#b76df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5501:0","label":"0x12DD5501\nDomain-0","title":"CAN_ID: 0x12DD5501\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2b46d","highlight":{"background":"#FFFFFF","border":"#f2b46d"},"hover":{"background":"#FFFFFF","border":"#f2b46d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x139:2","label":"0x0139\nDomain-2","title":"CAN_ID: 0x0139\ndomain: 2","color":{"background":"#f2cb6d","border":"#f2cb6d","highlight":{"background":"#f2cb6d","border":"#f2cb6d"},"hover":{"background":"#f2cb6d","border":"#f2cb6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x13D:2","label":"0x013D\nDomain-2","title":"CAN_ID: 0x013D\ndomain: 2","color":{"background":"#f2ce6d","border":"#f2ce6d","highlight":{"background":"#f2ce6d","border":"#f2ce6d"},"hover":{"background":"#f2ce6d","border":"#f2ce6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54D1:0","label":"0x12DD54D1\nDomain-0","title":"CAN_ID: 0x12DD54D1\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2a16d","highlight":{"background":"#FFFFFF","border":"#f2a16d"},"hover":{"background":"#FFFFFF","border":"#f2a16d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x206:1","label":"0x0206\nDomain-1","title":"CAN_ID: 0x0206\ndomain: 1","color":{"background":"#6db5f2","border":"#6db5f2","highlight":{"background":"#6db5f2","border":"#6db5f2"},"hover":{"background":"#6db5f2","border":"#6db5f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555AC:0","label":"0x1A5555AC\nDomain-0","title":"CAN_ID: 0x1A5555AC\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2cd","highlight":{"background":"#FFFFFF","border":"#6df2cd"},"hover":{"background":"#FFFFFF","border":"#6df2cd"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x138:1","label":"0x0138\nDomain-1","title":"CAN_ID: 0x0138\ndomain: 1","color":{"background":"#f2c96d","border":"#f2c96d","highlight":{"background":"#f2c96d","border":"#f2c96d"},"hover":{"background":"#f2c96d","border":"#f2c96d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555BF:1","label":"0x1A5555BF\nDomain-1","title":"CAN_ID: 0x1A5555BF\ndomain: 1","color":{"background":"#6df2dd","border":"#6df2dd","highlight":{"background":"#6df2dd","border":"#6df2dd"},"hover":{"background":"#6df2dd","border":"#6df2dd"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x5A0:3","label":"0x05A0\nDomain-3","title":"CAN_ID: 0x05A0\ndomain: 3","color":{"background":"#f26df0","border":"#f26df0","highlight":{"background":"#f26df0","border":"#f26df0"},"hover":{"background":"#f26df0","border":"#f26df0"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x397:2","label":"0x0397\nDomain-2","title":"CAN_ID: 0x0397\ndomain: 2","color":{"background":"#8d6df2","border":"#8d6df2","highlight":{"background":"#8d6df2","border":"#8d6df2"},"hover":{"background":"#8d6df2","border":"#8d6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54C9:4","label":"0x12DD54C9\nDomain-4","title":"CAN_ID: 0x12DD54C9\ndomain: 4","color":{"background":"#f29c6d","border":"#f29c6d","highlight":{"background":"#f29c6d","border":"#f29c6d"},"hover":{"background":"#f29c6d","border":"#f29c6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x65D:4","label":"0x065D\nDomain-4","title":"CAN_ID: 0x065D\ndomain: 4","color":{"background":"#f26dc1","border":"#f26dc1","highlight":{"background":"#f26dc1","border":"#f26dc1"},"hover":{"background":"#f26dc1","border":"#f26dc1"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x14C:0","label":"0x014C\nDomain-0","title":"CAN_ID: 0x014C\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2db6d","highlight":{"background":"#FFFFFF","border":"#f2db6d"},"hover":{"background":"#FFFFFF","border":"#f2db6d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x12DD5501:4","label":"0x12DD5501\nDomain-4","title":"CAN_ID: 0x12DD5501\ndomain: 4","color":{"background":"#f2b46d","border":"#f2b46d","highlight":{"background":"#f2b46d","border":"#f2b46d"},"hover":{"background":"#f2b46d","border":"#f2b46d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xF6:0","label":"0x00F6\nDomain-0","title":"CAN_ID: 0x00F6\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26d77","highlight":{"background":"#FFFFFF","border":"#f26d77"},"hover":{"background":"#FFFFFF","border":"#f26d77"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x641:5","label":"0x0641\nDomain-5","title":"CAN_ID: 0x0641\ndomain: 5","color":{"background":"#f26dce","border":"#f26dce","highlight":{"background":"#f26dce","border":"#f26dce"},"hover":{"background":"#f26dce","border":"#f26dce"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555AC:4","label":"0x1A5555AC\nDomain-4","title":"CAN_ID: 0x1A5555AC\ndomain: 4","color":{"background":"#6df2cd","border":"#6df2cd","highlight":{"background":"#6df2cd","border":"#6df2cd"},"hover":{"background":"#6df2cd","border":"#6df2cd"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x520:1","label":"0x0520\nDomain-1","title":"CAN_ID: 0x0520\ndomain: 1","color":{"background":"#d46df2","border":"#d46df2","highlight":{"background":"#d46df2","border":"#d46df2"},"hover":{"background":"#d46df2","border":"#d46df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x139:1","label":"0x0139\nDomain-1","title":"CAN_ID: 0x0139\ndomain: 1","color":{"background":"#f2cb6d","border":"#f2cb6d","highlight":{"background":"#f2cb6d","border":"#f2cb6d"},"hover":{"background":"#f2cb6d","border":"#f2cb6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x641:0","label":"0x0641\nDomain-0","title":"CAN_ID: 0x0641\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26dce","highlight":{"background":"#FFFFFF","border":"#f26dce"},"hover":{"background":"#FFFFFF","border":"#f26dce"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x26B:5","label":"0x026B\nDomain-5","title":"CAN_ID: 0x026B\ndomain: 5","color":{"background":"#6d90f2","border":"#6d90f2","highlight":{"background":"#6d90f2","border":"#6d90f2"},"hover":{"background":"#6d90f2","border":"#6d90f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x24F:1","label":"0x024F\nDomain-1","title":"CAN_ID: 0x024F\ndomain: 1","color":{"background":"#6d9ef2","border":"#6d9ef2","highlight":{"background":"#6d9ef2","border":"#6d9ef2"},"hover":{"background":"#6d9ef2","border":"#6d9ef2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555541:2","label":"0x1A555541\nDomain-2","title":"CAN_ID: 0x1A555541\ndomain: 2","color":{"background":"#6df2b3","border":"#6df2b3","highlight":{"background":"#6df2b3","border":"#6df2b3"},"hover":{"background":"#6df2b3","border":"#6df2b3"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x116:0","label":"0x0116\nDomain-0","title":"CAN_ID: 0x0116\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2776d","highlight":{"background":"#FFFFFF","border":"#f2776d"},"hover":{"background":"#FFFFFF","border":"#f2776d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1A5556E9:3","label":"0x1A5556E9\nDomain-3","title":"CAN_ID: 0x1A5556E9\ndomain: 3","color":{"background":"#6df2ef","border":"#6df2ef","highlight":{"background":"#6df2ef","border":"#6df2ef"},"hover":{"background":"#6df2ef","border":"#6df2ef"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x10B:2","label":"0x010B\nDomain-2","title":"CAN_ID: 0x010B\ndomain: 2","color":{"background":"#f2726d","border":"#f2726d","highlight":{"background":"#f2726d","border":"#f2726d"},"hover":{"background":"#f2726d","border":"#f2726d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x641:4","label":"0x0641\nDomain-4","title":"CAN_ID: 0x0641\ndomain: 4","color":{"background":"#f26dce","border":"#f26dce","highlight":{"background":"#f26dce","border":"#f26dce"},"hover":{"background":"#f26dce","border":"#f26dce"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3F:2","label":"0x003F\nDomain-2","title":"CAN_ID: 0x003F\ndomain: 2","color":{"background":"#af6df2","border":"#af6df2","highlight":{"background":"#af6df2","border":"#af6df2"},"hover":{"background":"#af6df2","border":"#af6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x116:4","label":"0x0116\nDomain-4","title":"CAN_ID: 0x0116\ndomain: 4","color":{"background":"#f2776d","border":"#f2776d","highlight":{"background":"#f2776d","border":"#f2776d"},"hover":{"background":"#f2776d","border":"#f2776d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5497:1","label":"0x12DD5497\nDomain-1","title":"CAN_ID: 0x12DD5497\ndomain: 1","color":{"background":"#f28f6d","border":"#f28f6d","highlight":{"background":"#f28f6d","border":"#f28f6d"},"hover":{"background":"#f28f6d","border":"#f28f6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x65F:2","label":"0x065F\nDomain-2","title":"CAN_ID: 0x065F\ndomain: 2","color":{"background":"#f26dbe","border":"#f26dbe","highlight":{"background":"#f26dbe","border":"#f26dbe"},"hover":{"background":"#f26dbe","border":"#f26dbe"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x26B:4","label":"0x026B\nDomain-4","title":"CAN_ID: 0x026B\ndomain: 4","color":{"background":"#6d90f2","border":"#6d90f2","highlight":{"background":"#6d90f2","border":"#6d90f2"},"hover":{"background":"#6d90f2","border":"#6d90f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556E9:2","label":"0x1A5556E9\nDomain-2","title":"CAN_ID: 0x1A5556E9\ndomain: 2","color":{"background":"#6df2ef","border":"#6df2ef","highlight":{"background":"#6df2ef","border":"#6df2ef"},"hover":{"background":"#6df2ef","border":"#6df2ef"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556EA:3","label":"0x1A5556EA\nDomain-3","title":"CAN_ID: 0x1A5556EA\ndomain: 3","color":{"background":"#6df2f2","border":"#6df2f2","highlight":{"background":"#6df2f2","border":"#6df2f2"},"hover":{"background":"#6df2f2","border":"#6df2f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x5BF:5","label":"0x05BF\nDomain-5","title":"CAN_ID: 0x05BF\ndomain: 5","color":{"background":"#f26de3","border":"#f26de3","highlight":{"background":"#f26de3","border":"#f26de3"},"hover":{"background":"#f26de3","border":"#f26de3"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x14D:4","label":"0x014D\nDomain-4","title":"CAN_ID: 0x014D\ndomain: 4","color":{"background":"#f2de6d","border":"#f2de6d","highlight":{"background":"#f2de6d","border":"#f2de6d"},"hover":{"background":"#f2de6d","border":"#f2de6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x25D:0","label":"0x025D\nDomain-0","title":"CAN_ID: 0x025D\ndomain: 0","color":{"background":"#FFFFFF","border":"#6d9bf2","highlight":{"background":"#FFFFFF","border":"#6d9bf2"},"hover":{"background":"#FFFFFF","border":"#6d9bf2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x9F:2","label":"0x009F\nDomain-2","title":"CAN_ID: 0x009F\ndomain: 2","color":{"background":"#f26da9","border":"#f26da9","highlight":{"background":"#f26da9","border":"#f26da9"},"hover":{"background":"#f26da9","border":"#f26da9"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555628:2","label":"0x1A555628\nDomain-2","title":"CAN_ID: 0x1A555628\ndomain: 2","color":{"background":"#6df2df","border":"#6df2df","highlight":{"background":"#6df2df","border":"#6df2df"},"hover":{"background":"#6df2df","border":"#6df2df"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54D6:5","label":"0x12DD54D6\nDomain-5","title":"CAN_ID: 0x12DD54D6\ndomain: 5","color":{"background":"#f2a46d","border":"#f2a46d","highlight":{"background":"#f2a46d","border":"#f2a46d"},"hover":{"background":"#f2a46d","border":"#f2a46d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3F:1","label":"0x003F\nDomain-1","title":"CAN_ID: 0x003F\ndomain: 1","color":{"background":"#af6df2","border":"#af6df2","highlight":{"background":"#af6df2","border":"#af6df2"},"hover":{"background":"#af6df2","border":"#af6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A4:4","label":"0x01A4\nDomain-4","title":"CAN_ID: 0x01A4\ndomain: 4","color":{"background":"#6df29e","border":"#6df29e","highlight":{"background":"#6df29e","border":"#6df29e"},"hover":{"background":"#6df29e","border":"#6df29e"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x366:2","label":"0x0366\nDomain-2","title":"CAN_ID: 0x0366\ndomain: 2","color":{"background":"#7b6df2","border":"#7b6df2","highlight":{"background":"#7b6df2","border":"#7b6df2"},"hover":{"background":"#7b6df2","border":"#7b6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x25D:4","label":"0x025D\nDomain-4","title":"CAN_ID: 0x025D\ndomain: 4","color":{"background":"#6d9bf2","border":"#6d9bf2","highlight":{"background":"#6d9bf2","border":"#6d9bf2"},"hover":{"background":"#6d9bf2","border":"#6d9bf2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x65F:1","label":"0x065F\nDomain-1","title":"CAN_ID: 0x065F\ndomain: 1","color":{"background":"#f26dbe","border":"#f26dbe","highlight":{"background":"#f26dbe","border":"#f26dbe"},"hover":{"background":"#f26dbe","border":"#f26dbe"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54D6:0","label":"0x12DD54D6\nDomain-0","title":"CAN_ID: 0x12DD54D6\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2a46d","highlight":{"background":"#FFFFFF","border":"#f2a46d"},"hover":{"background":"#FFFFFF","border":"#f2a46d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x102:1","label":"0x0102\nDomain-1","title":"CAN_ID: 0x0102\ndomain: 1","color":{"background":"#f26f6d","border":"#f26f6d","highlight":{"background":"#f26f6d","border":"#f26f6d"},"hover":{"background":"#f26f6d","border":"#f26f6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x365:2","label":"0x0365\nDomain-2","title":"CAN_ID: 0x0365\ndomain: 2","color":{"background":"#786df2","border":"#786df2","highlight":{"background":"#786df2","border":"#786df2"},"hover":{"background":"#786df2","border":"#786df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x16A954C4:2","label":"0x16A954C4\nDomain-2","title":"CAN_ID: 0x16A954C4\ndomain: 2","color":{"background":"#c2f26d","border":"#c2f26d","highlight":{"background":"#c2f26d","border":"#c2f26d"},"hover":{"background":"#c2f26d","border":"#c2f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556EA:2","label":"0x1A5556EA\nDomain-2","title":"CAN_ID: 0x1A5556EA\ndomain: 2","color":{"background":"#6df2f2","border":"#6df2f2","highlight":{"background":"#6df2f2","border":"#6df2f2"},"hover":{"background":"#6df2f2","border":"#6df2f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x16A954C2:2","label":"0x16A954C2\nDomain-2","title":"CAN_ID: 0x16A954C2\ndomain: 2","color":{"background":"#c7f26d","border":"#c7f26d","highlight":{"background":"#c7f26d","border":"#c7f26d"},"hover":{"background":"#c7f26d","border":"#c7f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x5BF:4","label":"0x05BF\nDomain-4","title":"CAN_ID: 0x05BF\ndomain: 4","color":{"background":"#f26de3","border":"#f26de3","highlight":{"background":"#f26de3","border":"#f26de3"},"hover":{"background":"#f26de3","border":"#f26de3"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555628:1","label":"0x1A555628\nDomain-1","title":"CAN_ID: 0x1A555628\ndomain: 1","color":{"background":"#6df2df","border":"#6df2df","highlight":{"background":"#6df2df","border":"#6df2df"},"hover":{"background":"#6df2df","border":"#6df2df"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54D6:4","label":"0x12DD54D6\nDomain-4","title":"CAN_ID: 0x12DD54D6\ndomain: 4","color":{"background":"#f2a46d","border":"#f2a46d","highlight":{"background":"#f2a46d","border":"#f2a46d"},"hover":{"background":"#f2a46d","border":"#f2a46d"}},"borderWidth":2,"shapeProperties":{}}]; |
| const graphEdges = [{"id":"f0","from":"0x3C0:4","to":"0x3C0:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x03C0\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001535, 0.003470];\nlen(matched/src/dst):2577/2603/2642;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f1","from":"0x3C0:4","to":"0x3C0:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x03C0\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.001115, 0.003047];\nlen(matched/src/dst):2603/2603/2666;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f3","from":"0xFC:2","to":"0xFC:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x00FC\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000877, 0.001634];\nlen(matched/src/dst):26027/26659/26027;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f5","from":"0xFC:2","to":"0xFC:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x00FC\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[0.000292, 0.002603];\nlen(matched/src/dst):26059/26659/26421;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.18}},{"id":"f7","from":"0x139:1","to":"0x139:2","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x0139\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.001000, -0.000174];\nlen(matched/src/dst):2505/13211/13329;\np_value:0.5675; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f9","from":"0x139:4","to":"0x139:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0139\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000073, 0.002770];\nlen(matched/src/dst):12886/13014/13211;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f10","from":"0x26B:4","to":"0x26B:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x026B\nsrc_domain: 4\ndst_domain: 5\nlabel: delay(s)∈[0.000490, 0.007977];\nlen(matched/src/dst):2603/2603/2665;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f11","from":"0x6B2:3","to":"0x6B2:5","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x06B2\nsrc_domain: 3\ndst_domain: 5\nlabel: delay(s)∈[-0.004030, 0.001119];\nlen(matched/src/dst):261/261/267;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.26}},{"id":"f13","from":"0x6B2:3","to":"0x6B2:2","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x06B2\nsrc_domain: 3\ndst_domain: 2\nlabel: delay(s)∈[-0.000970, -0.000970];\nlen(matched/src/dst):1/261/266;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.18}},{"id":"f15","from":"0x6B2:4","to":"0x6B2:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x06B2\nsrc_domain: 4\ndst_domain: 3\nlabel: delay(s)∈[0.001764, 0.010529];\nlen(matched/src/dst):259/260/261;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f16","from":"0x6B2:3","to":"0x6B2:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x06B2\nsrc_domain: 3\ndst_domain: 1\nlabel: delay(s)∈[-0.000851, -0.000851];\nlen(matched/src/dst):1/261/264;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f18","from":"0x1F0:4","to":"0x1F0:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x01F0\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.000549, 0.002192];\nlen(matched/src/dst):521/521/533;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f19","from":"0x3E5:4","to":"0x3E5:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x03E5\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.001459, 0.002560];\nlen(matched/src/dst):2603/2603/2667;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f21","from":"0x12DD54D1:1","to":"0x12DD54D1:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x12DD54D1\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.002827, 0.000730];\nlen(matched/src/dst):2605/2642/2665;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f23","from":"0xAD:2","to":"0xAD:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x00AD\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000797, 0.001450];\nlen(matched/src/dst):5212/5332/5285;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f25","from":"0x13D:4","to":"0x13D:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x013D\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.001751, 0.001045];\nlen(matched/src/dst):26028/26028/26660;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f27","from":"0x421:2","to":"0x421:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0421\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001613, 0.003610];\nlen(matched/src/dst):2606/2666/2642;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f28","from":"0xE4:2","to":"0xE4:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x00E4\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[0.000048, 0.002400];\nlen(matched/src/dst):13029/13329/13210;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.18}},{"id":"f30","from":"0x102:1","to":"0x102:2","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x0102\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000999, -0.000361];\nlen(matched/src/dst):1393/13211/13330;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f32","from":"0x102:1","to":"0x102:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0102\nsrc_domain: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.002291, 0.000495];\nlen(matched/src/dst):12886/13211/13014;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f34","from":"0x12DD54D6:4","to":"0x12DD54D6:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x12DD54D6\nsrc_domain: 4\ndst_domain: 5\nlabel: delay(s)∈[-0.000722, 0.005675];\nlen(matched/src/dst):2618/2618/2679;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f35","from":"0x12DD54D6:4","to":"0x12DD54D6:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x12DD54D6\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.001910, 0.003125];\nlen(matched/src/dst):2618/2618/2681;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f37","from":"0x25D:4","to":"0x25D:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x025D\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.001467, 0.002083];\nlen(matched/src/dst):4338/4338/4443;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f39","from":"0xFC:4","to":"0xFC:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x00FC\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000379, 0.002584];\nlen(matched/src/dst):25771/26027/26421;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f41","from":"0x206:2","to":"0x206:4","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x0206\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001000, 0.001337];\nlen(matched/src/dst):1361/13328/13013;\np_value:0.0007; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.18}},{"id":"f43","from":"0x206:2","to":"0x206:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x0206\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000971, 0.002709];\nlen(matched/src/dst):1470/13328/13209;\np_value:0.9995; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f45","from":"0xFD:2","to":"0xFD:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x00FD\nsrc_domain: 2\ndst_domain: 3\nlabel: delay(s)∈[-0.000257, 0.009700];\nlen(matched/src/dst):10910/13329/13012;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f46","from":"0xFD:4","to":"0xFD:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x00FD\nsrc_domain: 4\ndst_domain: 3\nlabel: delay(s)∈[-0.000028, 0.009093];\nlen(matched/src/dst):10881/13013/13012;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f47","from":"0x5F0:2","to":"0x5F0:5","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x05F0\nsrc_domain: 2\ndst_domain: 5\nlabel: delay(s)∈[-0.199303, 0.007457];\nlen(matched/src/dst):1250/1459/1458;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f49","from":"0x1A5555AC:2","to":"0x1A5555AC:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A5555AC\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001790, 0.000673];\nlen(matched/src/dst):261/266/261;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f51","from":"0x1A5555AC:2","to":"0x1A5555AC:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A5555AC\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000540, 0.002730];\nlen(matched/src/dst):260/266/264;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f53","from":"0x1A555541:2","to":"0x1A555541:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A555541\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001092, 0.002569];\nlen(matched/src/dst):1303/1333/1321;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f54","from":"0x1A555541:4","to":"0x1A555541:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A555541\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001300, 0.003426];\nlen(matched/src/dst):1289/1301/1321;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f55","from":"0x641:1","to":"0x641:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0641\nsrc_domain: 1\ndst_domain: 3\nlabel: delay(s)∈[-0.000370, 0.006800];\nlen(matched/src/dst):259/264/261;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f56","from":"0x641:1","to":"0x641:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0641\nsrc_domain: 1\ndst_domain: 5\nlabel: delay(s)∈[-0.000408, 0.007249];\nlen(matched/src/dst):262/264/267;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f57","from":"0x641:1","to":"0x641:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0641\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.001442, 0.000826];\nlen(matched/src/dst):260/264/266;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f59","from":"0x14C:2","to":"0x14C:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x014C\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001698, 0.000905];\nlen(matched/src/dst):2608/2671/2608;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f61","from":"0x14C:2","to":"0x14C:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x014C\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001042, 0.001239];\nlen(matched/src/dst):2611/2671/2647;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f63","from":"0x1A5556E9:1","to":"0x1A5556E9:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 1\ndst_domain: 3\nlabel: delay(s)∈[-0.001055, 0.011433];\nlen(matched/src/dst):518/529/520;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f64","from":"0x1A5556E9:1","to":"0x1A5556E9:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 1\ndst_domain: 5\nlabel: delay(s)∈[-0.001173, 0.005160];\nlen(matched/src/dst):524/529/533;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f65","from":"0x1A5556E9:2","to":"0x1A5556E9:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001737, 0.002325];\nlen(matched/src/dst):521/533/529;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f66","from":"0x1A5556E9:4","to":"0x1A5556E9:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000048, 0.003355];\nlen(matched/src/dst):516/521/529;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f67","from":"0x12DD5501:1","to":"0x12DD5501:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x12DD5501\nsrc_domain: 1\ndst_domain: 5\nlabel: delay(s)∈[-0.001759, 0.005162];\nlen(matched/src/dst):262/264/267;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f68","from":"0x1A5556EA:1","to":"0x1A5556EA:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 1\ndst_domain: 3\nlabel: delay(s)∈[-0.002041, 0.013819];\nlen(matched/src/dst):517/528/520;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f69","from":"0x1A5556EA:1","to":"0x1A5556EA:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 1\ndst_domain: 5\nlabel: delay(s)∈[-0.001453, 0.006774];\nlen(matched/src/dst):524/528/533;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f70","from":"0x1A5556EA:2","to":"0x1A5556EA:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000985, 0.002674];\nlen(matched/src/dst):521/533/528;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f71","from":"0x1A5556EA:4","to":"0x1A5556EA:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000475, 0.003450];\nlen(matched/src/dst):515/521/528;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f72","from":"0xF6:2","to":"0xF6:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x00F6\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000722, 0.001124];\nlen(matched/src/dst):9521/27161/26922;\np_value:0.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f74","from":"0x3FB:4","to":"0x3FB:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x03FB\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000782, 0.001716];\nlen(matched/src/dst):3222/3254/3303;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f75","from":"0x16A954C2:4","to":"0x16A954C2:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x16A954C2\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.000437, 0.001920];\nlen(matched/src/dst):169/169/173;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f76","from":"0x365:1","to":"0x365:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0365\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000037, 0.000209];\nlen(matched/src/dst):24/5284/5332;\np_value:0.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f78","from":"0x10B:1","to":"0x10B:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x010B\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000635, 0.000543];\nlen(matched/src/dst):1517/13211/13330;\np_value:0.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f80","from":"0x10B:1","to":"0x10B:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x010B\nsrc_domain: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.001373, 0.000802];\nlen(matched/src/dst):1517/13211/13014;\np_value:0.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f82","from":"0xDB:4","to":"0xDB:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x00DB\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.000365, 0.002138];\nlen(matched/src/dst):261/261/267;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f83","from":"0x3F:2","to":"0x3F:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x003F\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[0.000062, 0.001968];\nlen(matched/src/dst):6515/6665/6606;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.18}},{"id":"f85","from":"0x206:4","to":"0x206:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x0206\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000853, 0.003154];\nlen(matched/src/dst):4324/13013/13209;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f87","from":"0x12DD5497:2","to":"0x12DD5497:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x12DD5497\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[0.000137, 0.003880];\nlen(matched/src/dst):2606/2666/2642;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f88","from":"0x551:4","to":"0x551:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x0551\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[0.000085, 0.003066];\nlen(matched/src/dst):73/1304/1324;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.26}},{"id":"f90","from":"0x1A5555AC:4","to":"0x1A5555AC:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A5555AC\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000183, 0.002648];\nlen(matched/src/dst):258/261/264;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f92","from":"0x520:2","to":"0x520:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0520\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[0.000042, 0.002449];\nlen(matched/src/dst):1304/1334/1322;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f93","from":"0x520:4","to":"0x520:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0520\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[0.000004, 0.002603];\nlen(matched/src/dst):1289/1302/1322;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f94","from":"0x641:3","to":"0x641:5","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0641\nsrc_domain: 3\ndst_domain: 5\nlabel: delay(s)∈[-0.001026, 0.001479];\nlen(matched/src/dst):261/261/267;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f96","from":"0x641:2","to":"0x641:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0641\nsrc_domain: 2\ndst_domain: 3\nlabel: delay(s)∈[0.000127, 0.006585];\nlen(matched/src/dst):261/266/261;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f97","from":"0x3D4:4","to":"0x3D4:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x03D4\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000312, 0.002806];\nlen(matched/src/dst):258/260/264;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f98","from":"0x14C:4","to":"0x14C:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x014C\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000613, 0.001442];\nlen(matched/src/dst):2582/2608/2647;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f100","from":"0x5E1:2","to":"0x5E1:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x05E1\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000583, 0.002998];\nlen(matched/src/dst):97/1333/1321;\np_value:0.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.18}},{"id":"f102","from":"0x1A5556E9:3","to":"0x1A5556E9:5","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 3\ndst_domain: 5\nlabel: delay(s)∈[-0.008199, 0.001224];\nlen(matched/src/dst):520/520/533;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f104","from":"0x1A5556EA:3","to":"0x1A5556EA:5","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 3\ndst_domain: 5\nlabel: delay(s)∈[-0.008527, 0.001361];\nlen(matched/src/dst):520/520/533;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f106","from":"0x12DD553D:4","to":"0x12DD553D:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x12DD553D\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001447, 0.004716];\nlen(matched/src/dst):2577/2603/2642;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f107","from":"0x1A555628:1","to":"0x1A555628:4","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x1A555628\nsrc_domain: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.000953, -0.000388];\nlen(matched/src/dst):47/264/261;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.18}},{"id":"f109","from":"0x1A555628:1","to":"0x1A555628:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A555628\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.002019, 0.000642];\nlen(matched/src/dst):260/264/266;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f111","from":"0x3C0:1","to":"0x3C0:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x03C0\nsrc_domain: 1\ndst_domain: 3\nlabel: delay(s)∈[-0.002181, 0.008133];\nlen(matched/src/dst):2589/2642/2603;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f112","from":"0x3C0:1","to":"0x3C0:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x03C0\nsrc_domain: 1\ndst_domain: 5\nlabel: delay(s)∈[-0.001803, 0.005228];\nlen(matched/src/dst):2620/2642/2665;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f113","from":"0x3C0:2","to":"0x3C0:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x03C0\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001127, 0.002904];\nlen(matched/src/dst):2606/2666/2642;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f114","from":"0x40:2","to":"0x40:4","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x0040\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001109, 0.001145];\nlen(matched/src/dst):4733/6665/6507;\np_value:0.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.26}},{"id":"f116","from":"0x40:2","to":"0x40:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x0040\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[0.000051, 0.002116];\nlen(matched/src/dst):4741/6665/6605;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.18}},{"id":"f118","from":"0x40:2","to":"0x40:3","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x0040\nsrc_domain: 2\ndst_domain: 3\nlabel: delay(s)∈[0.000097, 0.011537];\nlen(matched/src/dst):2788/6665/6507;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f120","from":"0x1A4:2","to":"0x1A4:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x01A4\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001614, 0.000561];\nlen(matched/src/dst):521/534/521;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f122","from":"0x1A4:2","to":"0x1A4:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x01A4\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000416, 0.001940];\nlen(matched/src/dst):522/534/529;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f123","from":"0x1A555521:2","to":"0x1A555521:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A555521\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[0.000080, 0.002544];\nlen(matched/src/dst):261/267/264;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f124","from":"0x5BF:5","to":"0x5BF:4","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x05BF\nsrc_domain: 5\ndst_domain: 4\nlabel: delay(s)∈[-0.000490, 0.002058];\nlen(matched/src/dst):12/18/18;\np_value:0.2418; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f125","from":"0x641:2","to":"0x641:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0641\nsrc_domain: 2\ndst_domain: 5\nlabel: delay(s)∈[0.000545, 0.006982];\nlen(matched/src/dst):265/266/267;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f126","from":"0x1A5555BF:2","to":"0x1A5555BF:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A5555BF\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.002209, 0.001788];\nlen(matched/src/dst):391/419/391;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f128","from":"0x1A5555BF:2","to":"0x1A5555BF:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5555BF\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000825, 0.004015];\nlen(matched/src/dst):373/419/377;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f129","from":"0x138:2","to":"0x138:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0138\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000657, 0.003170];\nlen(matched/src/dst):2605/2665/2642;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f130","from":"0x3C0:3","to":"0x3C0:5","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x03C0\nsrc_domain: 3\ndst_domain: 5\nlabel: delay(s)∈[-0.005895, 0.001375];\nlen(matched/src/dst):2603/2603/2665;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f132","from":"0x40:4","to":"0x40:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x0040\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000337, 0.002113];\nlen(matched/src/dst):4669/6507/6605;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.26}},{"id":"f134","from":"0x40:4","to":"0x40:3","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x0040\nsrc_domain: 4\ndst_domain: 3\nlabel: delay(s)∈[0.000560, 0.011032];\nlen(matched/src/dst):2759/6507/6507;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.18}},{"id":"f136","from":"0x116:1","to":"0x116:2","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x0116\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000999, -0.000027];\nlen(matched/src/dst):4542/13210/13329;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f138","from":"0x116:4","to":"0x116:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0116\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000092, 0.002429];\nlen(matched/src/dst):12886/13014/13210;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f139","from":"0x3D5:4","to":"0x3D5:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x03D5\nsrc_domain: 4\ndst_domain: 3\nlabel: delay(s)∈[-0.000386, 0.008590];\nlen(matched/src/dst):2591/2603/2603;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f140","from":"0x5A0:4","to":"0x5A0:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x05A0\nsrc_domain: 4\ndst_domain: 3\nlabel: delay(s)∈[0.000048, 0.008688];\nlen(matched/src/dst):1296/1302/1301;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f141","from":"0x1A4:4","to":"0x1A4:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x01A4\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[0.000068, 0.002449];\nlen(matched/src/dst):516/521/529;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f142","from":"0x31B:2","to":"0x31B:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x031B\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[0.000100, 0.003262];\nlen(matched/src/dst):5212/5332/5284;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.26}},{"id":"f144","from":"0x6B2:2","to":"0x6B2:5","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x06B2\nsrc_domain: 2\ndst_domain: 5\nlabel: delay(s)∈[0.001472, 0.007915];\nlen(matched/src/dst):265/266/267;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.18}},{"id":"f145","from":"0x6B2:4","to":"0x6B2:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x06B2\nsrc_domain: 4\ndst_domain: 5\nlabel: delay(s)∈[0.001572, 0.008139];\nlen(matched/src/dst):260/260/267;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f146","from":"0x6B2:5","to":"0x6B2:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x06B2\nsrc_domain: 5\ndst_domain: 1\nlabel: delay(s)∈[-0.000487, -0.000487];\nlen(matched/src/dst):1/267/264;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f148","from":"0x1A5555BF:4","to":"0x1A5555BF:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5555BF\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001317, 0.003537];\nlen(matched/src/dst):370/391/377;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f149","from":"0x397:2","to":"0x397:4","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x0397\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[0.098395, 0.199067];\nlen(matched/src/dst):42/2616/2554;\np_value:0.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.26}},{"id":"f151","from":"0x12DD5501:2","to":"0x12DD5501:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x12DD5501\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.002143, 0.001640];\nlen(matched/src/dst):261/266/261;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f153","from":"0x12DD5501:2","to":"0x12DD5501:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x12DD5501\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001140, 0.003032];\nlen(matched/src/dst):260/266/264;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f154","from":"0x139:2","to":"0x139:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0139\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001037, 0.001354];\nlen(matched/src/dst):13014/13329/13014;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f156","from":"0xFD:2","to":"0xFD:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x00FD\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001036, 0.001227];\nlen(matched/src/dst):10940/13329/13013;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f158","from":"0x3BE:1","to":"0x3BE:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x03BE\nsrc_domain: 1\ndst_domain: 3\nlabel: delay(s)∈[-0.000441, 0.010347];\nlen(matched/src/dst):2688/2742/2702;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f159","from":"0x3BE:1","to":"0x3BE:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x03BE\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.001457, 0.001266];\nlen(matched/src/dst):2706/2742/2766;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f161","from":"0x176:2","to":"0x176:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0176\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[0.000041, 0.002516];\nlen(matched/src/dst):13029/13329/13211;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f162","from":"0x65D:2","to":"0x65D:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x065D\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001100, 0.001723];\nlen(matched/src/dst):261/267/261;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f164","from":"0x65D:2","to":"0x65D:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x065D\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[0.000165, 0.003119];\nlen(matched/src/dst):261/267/264;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f165","from":"0x12DD54C9:2","to":"0x12DD54C9:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x12DD54C9\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.003387, 0.001623];\nlen(matched/src/dst):3389/3468/3389;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f167","from":"0x1A555628:4","to":"0x1A555628:2","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A555628\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.000813, 0.002033];\nlen(matched/src/dst):261/261/266;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f169","from":"0x9F:2","to":"0x9F:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x009F\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001160, 0.001487];\nlen(matched/src/dst):26029/26660/26029;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f171","from":"0x16A954AD:2","to":"0x16A954AD:4","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x16A954AD\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000972, 0.000617];\nlen(matched/src/dst):126/1334/1302;\np_value:0.0047; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.26}},{"id":"f173","from":"0x65F:2","to":"0x65F:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x065F\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001457, 0.001080];\nlen(matched/src/dst):520/533/520;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f175","from":"0x65F:2","to":"0x65F:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x065F\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000767, 0.001483];\nlen(matched/src/dst):521/533/528;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f177","from":"0x86:2","to":"0x86:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0086\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001147, 0.001207];\nlen(matched/src/dst):26029/26660/26029;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f179","from":"0x86:2","to":"0x86:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0086\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[0.000031, 0.002163];\nlen(matched/src/dst):26059/26660/26422;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f180","from":"0x641:2","to":"0x641:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0641\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001630, 0.001132];\nlen(matched/src/dst):260/266/260;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f182","from":"0x3BE:2","to":"0x3BE:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x03BE\nsrc_domain: 2\ndst_domain: 3\nlabel: delay(s)∈[-0.000668, 0.009937];\nlen(matched/src/dst):2702/2766/2702;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f183","from":"0x1A5556E9:2","to":"0x1A5556E9:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.003260, 0.000966];\nlen(matched/src/dst):521/533/521;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f185","from":"0x545:2","to":"0x545:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0545\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001149, 0.001190];\nlen(matched/src/dst):1304/1336/1304;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f187","from":"0x65D:4","to":"0x65D:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x065D\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[0.000036, 0.003151];\nlen(matched/src/dst):258/261/264;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f188","from":"0x670:2","to":"0x670:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0670\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000398, 0.000802];\nlen(matched/src/dst):60/534/529;\np_value:0.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f190","from":"0x40:1","to":"0x40:3","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x0040\nsrc_domain: 1\ndst_domain: 3\nlabel: delay(s)∈[-0.000290, 0.010546];\nlen(matched/src/dst):2788/6605/6507;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f192","from":"0x16A954AD:4","to":"0x16A954AD:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x16A954AD\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[0.000178, 0.002481];\nlen(matched/src/dst):146/1302/1322;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.26}},{"id":"f194","from":"0x6B2:2","to":"0x6B2:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x06B2\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001595, 0.000826];\nlen(matched/src/dst):260/266/260;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f196","from":"0x6B2:2","to":"0x6B2:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x06B2\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000363, 0.002030];\nlen(matched/src/dst):260/266/264;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f198","from":"0x86:4","to":"0x86:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0086\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000268, 0.002097];\nlen(matched/src/dst):25772/26029/26422;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f199","from":"0x12DD54AA:2","to":"0x12DD54AA:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x12DD54AA\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001154, 0.001353];\nlen(matched/src/dst):2606/2666/2642;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f201","from":"0x670:4","to":"0x670:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0670\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000609, 0.001555];\nlen(matched/src/dst):60/521/529;\np_value:0.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f203","from":"0x24F:4","to":"0x24F:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x024F\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[0.000712, 0.002332];\nlen(matched/src/dst):343/6507/6606;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f205","from":"0x14D:2","to":"0x14D:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x014D\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.002150, 0.000546];\nlen(matched/src/dst):10834/13330/13014;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f207","from":"0x6B2:4","to":"0x6B2:1","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x06B2\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000004, 0.001876];\nlen(matched/src/dst):257/260/264;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f209","from":"0x5F0:1","to":"0x5F0:5","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x05F0\nsrc_domain: 1\ndst_domain: 5\nlabel: delay(s)∈[-0.199997, 0.007295];\nlen(matched/src/dst):1218/1446/1458;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f211","from":"0x16A954C4:4","to":"0x16A954C4:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x16A954C4\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.000524, 0.002129];\nlen(matched/src/dst):127/127/131;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f212","from":"0x12DD5501:4","to":"0x12DD5501:1","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x12DD5501\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001637, 0.002560];\nlen(matched/src/dst):258/261/264;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f213","from":"0x116:2","to":"0x116:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0116\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001149, 0.001279];\nlen(matched/src/dst):13014/13329/13014;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f215","from":"0x102:2","to":"0x102:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0102\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000872, 0.001723];\nlen(matched/src/dst):13014/13330/13014;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f217","from":"0x12DD54D6:2","to":"0x12DD54D6:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x12DD54D6\nsrc_domain: 2\ndst_domain: 5\nlabel: delay(s)∈[-0.001633, 0.005933];\nlen(matched/src/dst):2665/2681/2679;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f218","from":"0x366:2","to":"0x366:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0366\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.002861, 0.000982];\nlen(matched/src/dst):261/266/261;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f220","from":"0x1A555541:2","to":"0x1A555541:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A555541\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.002909, 0.001539];\nlen(matched/src/dst):1301/1333/1301;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f222","from":"0x1A5556EA:2","to":"0x1A5556EA:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.002111, 0.001371];\nlen(matched/src/dst):521/533/521;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f224","from":"0x10B:2","to":"0x10B:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x010B\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001420, 0.000791];\nlen(matched/src/dst):5113/13330/13014;\np_value:0.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f226","from":"0x3BE:2","to":"0x3BE:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x03BE\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.002143, 0.000979];\nlen(matched/src/dst):2703/2766/2703;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f228","from":"0x520:2","to":"0x520:4","label":"","color":{"color":"rgba(139, 92, 246, 0.55)","highlight":"#7c3aed","hover":"#7c3aed"},"dashes":[2,8],"width":2.2,"kind":"broadcast","title":"CAN_ID: 0x0520\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001122, 0.001076];\nlen(matched/src/dst):1302/1334/1302;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f231","from":"0x16A954AD:1","to":"0x16A954AD:2","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x16A954AD\nsrc_domain: 1\ndst_domain: 2\nlabel: virtual_edge; POTENTIAL_FORWARD;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f233","from":"0x1A5556E9:0","to":"0x1A5556E9:2","label":"","color":{"color":"#b6f8f7","highlight":"#6df2ef"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f234","from":"0x1A5556E9:0","to":"0x1A5556E9:4","label":"","color":{"color":"#b6f8f7","highlight":"#6df2ef"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f235","from":"0x12DD54D1:0","to":"0x12DD54D1:1","label":"","color":{"color":"#f8d0b6","highlight":"#f2a16d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD54D1\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f236","from":"0x12DD54D1:0","to":"0x12DD54D1:2","label":"","color":{"color":"#f8d0b6","highlight":"#f2a16d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD54D1\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f237","from":"0x641:0","to":"0x641:2","label":"","color":{"color":"#f8b6e6","highlight":"#f26dce"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0641\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f238","from":"0x641:0","to":"0x641:4","label":"","color":{"color":"#f8b6e6","highlight":"#f26dce"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0641\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f239","from":"0x641:0","to":"0x641:1","label":"","color":{"color":"#f8b6e6","highlight":"#f26dce"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0641\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f240","from":"0x366:0","to":"0x366:2","label":"","color":{"color":"#bdb6f8","highlight":"#7b6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0366\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f241","from":"0x366:0","to":"0x366:4","label":"","color":{"color":"#bdb6f8","highlight":"#7b6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0366\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f242","from":"0x5F0:0","to":"0x5F0:2","label":"","color":{"color":"#f8b6ea","highlight":"#f26dd6"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x05F0\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f243","from":"0x5F0:0","to":"0x5F0:5","label":"","color":{"color":"#f8b6ea","highlight":"#f26dd6"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x05F0\nsrc_domain: 0\ndst_domain: 5\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f244","from":"0x5F0:0","to":"0x5F0:1","label":"","color":{"color":"#f8b6ea","highlight":"#f26dd6"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x05F0\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f245","from":"0x1A555628:0","to":"0x1A555628:1","label":"","color":{"color":"#b6f8ef","highlight":"#6df2df"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555628\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f246","from":"0x1A555628:0","to":"0x1A555628:2","label":"","color":{"color":"#b6f8ef","highlight":"#6df2df"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555628\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f247","from":"0x1A555628:0","to":"0x1A555628:4","label":"","color":{"color":"#b6f8ef","highlight":"#6df2df"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555628\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f248","from":"0x12DD54AA:0","to":"0x12DD54AA:1","label":"","color":{"color":"#f8c9b6","highlight":"#f2946d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD54AA\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f249","from":"0x12DD54AA:0","to":"0x12DD54AA:2","label":"","color":{"color":"#f8c9b6","highlight":"#f2946d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD54AA\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f250","from":"0x9F:0","to":"0x9F:4","label":"","color":{"color":"#f8b6d4","highlight":"#f26da9"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x009F\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f251","from":"0x9F:0","to":"0x9F:2","label":"","color":{"color":"#f8b6d4","highlight":"#f26da9"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x009F\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f252","from":"0x520:0","to":"0x520:4","label":"","color":{"color":"#e9b6f8","highlight":"#d46df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0520\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f253","from":"0x520:0","to":"0x520:2","label":"","color":{"color":"#e9b6f8","highlight":"#d46df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0520\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f254","from":"0x10B:0","to":"0x10B:1","label":"","color":{"color":"#f8b8b6","highlight":"#f2726d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x010B\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f255","from":"0x10B:0","to":"0x10B:2","label":"","color":{"color":"#f8b8b6","highlight":"#f2726d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x010B\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f256","from":"0x10B:0","to":"0x10B:4","label":"","color":{"color":"#f8b8b6","highlight":"#f2726d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x010B\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f257","from":"0x65F:0","to":"0x65F:4","label":"","color":{"color":"#f8b6de","highlight":"#f26dbe"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x065F\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f258","from":"0x65F:0","to":"0x65F:1","label":"","color":{"color":"#f8b6de","highlight":"#f26dbe"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x065F\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f259","from":"0x65F:0","to":"0x65F:2","label":"","color":{"color":"#f8b6de","highlight":"#f26dbe"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x065F\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f260","from":"0x13D:0","to":"0x13D:4","label":"","color":{"color":"#f8e6b6","highlight":"#f2ce6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x013D\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f261","from":"0x13D:0","to":"0x13D:2","label":"","color":{"color":"#f8e6b6","highlight":"#f2ce6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x013D\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f262","from":"0x65D:0","to":"0x65D:4","label":"","color":{"color":"#f8b6e0","highlight":"#f26dc1"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x065D\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f263","from":"0x65D:0","to":"0x65D:2","label":"","color":{"color":"#f8b6e0","highlight":"#f26dc1"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x065D\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f264","from":"0xFD:0","to":"0xFD:2","label":"","color":{"color":"#f8b6b7","highlight":"#f26d6f"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00FD\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f265","from":"0xFD:0","to":"0xFD:4","label":"","color":{"color":"#f8b6b7","highlight":"#f26d6f"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00FD\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f266","from":"0x14C:0","to":"0x14C:1","label":"","color":{"color":"#f8edb6","highlight":"#f2db6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x014C\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f267","from":"0x14C:0","to":"0x14C:2","label":"","color":{"color":"#f8edb6","highlight":"#f2db6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x014C\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f268","from":"0x14C:0","to":"0x14C:4","label":"","color":{"color":"#f8edb6","highlight":"#f2db6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x014C\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f269","from":"0x3C0:0","to":"0x3C0:4","label":"","color":{"color":"#cab6f8","highlight":"#956df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03C0\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f270","from":"0x3C0:0","to":"0x3C0:2","label":"","color":{"color":"#cab6f8","highlight":"#956df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03C0\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f271","from":"0x6B2:0","to":"0x6B2:1","label":"","color":{"color":"#f8b6d9","highlight":"#f26db4"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x06B2\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f272","from":"0x6B2:0","to":"0x6B2:2","label":"","color":{"color":"#f8b6d9","highlight":"#f26db4"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x06B2\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f273","from":"0x6B2:0","to":"0x6B2:4","label":"","color":{"color":"#f8b6d9","highlight":"#f26db4"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x06B2\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f274","from":"0x86:0","to":"0x86:4","label":"","color":{"color":"#f8b6d5","highlight":"#f26dac"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0086\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f275","from":"0x86:0","to":"0x86:2","label":"","color":{"color":"#f8b6d5","highlight":"#f26dac"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0086\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f276","from":"0x3BE:0","to":"0x3BE:1","label":"","color":{"color":"#c8b6f8","highlight":"#926df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03BE\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f277","from":"0x3BE:0","to":"0x3BE:2","label":"","color":{"color":"#c8b6f8","highlight":"#926df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03BE\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f278","from":"0x3BE:0","to":"0x3BE:4","label":"","color":{"color":"#c8b6f8","highlight":"#926df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03BE\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f279","from":"0xF6:0","to":"0xF6:1","label":"","color":{"color":"#f8b6bb","highlight":"#f26d77"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00F6\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f280","from":"0xF6:0","to":"0xF6:2","label":"","color":{"color":"#f8b6bb","highlight":"#f26d77"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00F6\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f281","from":"0x1A4:0","to":"0x1A4:2","label":"","color":{"color":"#b6f8ce","highlight":"#6df29e"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x01A4\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f282","from":"0x1A4:0","to":"0x1A4:4","label":"","color":{"color":"#b6f8ce","highlight":"#6df29e"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x01A4\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f283","from":"0xAD:0","to":"0xAD:2","label":"","color":{"color":"#f8b6d1","highlight":"#f26da4"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00AD\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f284","from":"0xAD:0","to":"0xAD:1","label":"","color":{"color":"#f8b6d1","highlight":"#f26da4"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00AD\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f285","from":"0x102:0","to":"0x102:2","label":"","color":{"color":"#f8b7b6","highlight":"#f26f6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0102\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f286","from":"0x102:0","to":"0x102:4","label":"","color":{"color":"#f8b7b6","highlight":"#f26f6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0102\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f287","from":"0x102:0","to":"0x102:1","label":"","color":{"color":"#f8b7b6","highlight":"#f26f6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0102\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f288","from":"0x25D:0","to":"0x25D:4","label":"","color":{"color":"#b6cdf8","highlight":"#6d9bf2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x025D\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f289","from":"0x25D:0","to":"0x25D:2","label":"","color":{"color":"#b6cdf8","highlight":"#6d9bf2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x025D\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f290","from":"0x545:0","to":"0x545:4","label":"","color":{"color":"#ebb6f8","highlight":"#d76df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0545\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f291","from":"0x545:0","to":"0x545:2","label":"","color":{"color":"#ebb6f8","highlight":"#d76df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0545\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f292","from":"0x116:0","to":"0x116:2","label":"","color":{"color":"#f8bbb6","highlight":"#f2776d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0116\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f293","from":"0x116:0","to":"0x116:4","label":"","color":{"color":"#f8bbb6","highlight":"#f2776d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0116\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f294","from":"0x12DD5501:0","to":"0x12DD5501:2","label":"","color":{"color":"#f8d9b6","highlight":"#f2b46d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD5501\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f295","from":"0x12DD5501:0","to":"0x12DD5501:4","label":"","color":{"color":"#f8d9b6","highlight":"#f2b46d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD5501\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f296","from":"0x12DD54D6:0","to":"0x12DD54D6:4","label":"","color":{"color":"#f8d1b6","highlight":"#f2a46d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD54D6\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f297","from":"0x12DD54D6:0","to":"0x12DD54D6:2","label":"","color":{"color":"#f8d1b6","highlight":"#f2a46d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD54D6\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f298","from":"0x365:0","to":"0x365:1","label":"","color":{"color":"#bbb6f8","highlight":"#786df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0365\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f299","from":"0x365:0","to":"0x365:2","label":"","color":{"color":"#bbb6f8","highlight":"#786df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0365\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f300","from":"0x14D:0","to":"0x14D:2","label":"","color":{"color":"#f8eeb6","highlight":"#f2de6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x014D\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f301","from":"0x14D:0","to":"0x14D:4","label":"","color":{"color":"#f8eeb6","highlight":"#f2de6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x014D\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f302","from":"0x3E5:0","to":"0x3E5:4","label":"","color":{"color":"#d4b6f8","highlight":"#aa6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03E5\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f303","from":"0x3E5:0","to":"0x3E5:2","label":"","color":{"color":"#d4b6f8","highlight":"#aa6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03E5\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f304","from":"0x1A5555BF:0","to":"0x1A5555BF:2","label":"","color":{"color":"#b6f8ee","highlight":"#6df2dd"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5555BF\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f305","from":"0x1A5555BF:0","to":"0x1A5555BF:4","label":"","color":{"color":"#b6f8ee","highlight":"#6df2dd"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5555BF\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f306","from":"0xFC:0","to":"0xFC:1","label":"","color":{"color":"#f8b6b8","highlight":"#f26d72"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00FC\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f307","from":"0xFC:0","to":"0xFC:2","label":"","color":{"color":"#f8b6b8","highlight":"#f26d72"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00FC\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f308","from":"0xFC:0","to":"0xFC:4","label":"","color":{"color":"#f8b6b8","highlight":"#f26d72"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00FC\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f309","from":"0x1A5556EA:0","to":"0x1A5556EA:2","label":"","color":{"color":"#b6f8f8","highlight":"#6df2f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f310","from":"0x1A5556EA:0","to":"0x1A5556EA:4","label":"","color":{"color":"#b6f8f8","highlight":"#6df2f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f311","from":"0x670:0","to":"0x670:1","label":"","color":{"color":"#f8b6dc","highlight":"#f26db9"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0670\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f312","from":"0x670:0","to":"0x670:2","label":"","color":{"color":"#f8b6dc","highlight":"#f26db9"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0670\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f313","from":"0x670:0","to":"0x670:4","label":"","color":{"color":"#f8b6dc","highlight":"#f26db9"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0670\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f314","from":"0x12DD54C9:0","to":"0x12DD54C9:4","label":"","color":{"color":"#f8cdb6","highlight":"#f29c6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD54C9\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f315","from":"0x12DD54C9:0","to":"0x12DD54C9:2","label":"","color":{"color":"#f8cdb6","highlight":"#f29c6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD54C9\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f316","from":"0x1A5555AC:0","to":"0x1A5555AC:1","label":"","color":{"color":"#b6f8e6","highlight":"#6df2cd"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5555AC\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f317","from":"0x1A5555AC:0","to":"0x1A5555AC:2","label":"","color":{"color":"#b6f8e6","highlight":"#6df2cd"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5555AC\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f318","from":"0x1A5555AC:0","to":"0x1A5555AC:4","label":"","color":{"color":"#b6f8e6","highlight":"#6df2cd"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5555AC\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f319","from":"0x139:0","to":"0x139:2","label":"","color":{"color":"#f8e5b6","highlight":"#f2cb6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0139\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f320","from":"0x139:0","to":"0x139:4","label":"","color":{"color":"#f8e5b6","highlight":"#f2cb6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0139\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f321","from":"0x1A555541:0","to":"0x1A555541:4","label":"","color":{"color":"#b6f8d9","highlight":"#6df2b3"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555541\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f322","from":"0x1A555541:0","to":"0x1A555541:2","label":"","color":{"color":"#b6f8d9","highlight":"#6df2b3"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555541\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"}]; |
| |
| const container = document.getElementById("network"); |
| const options = { |
| nodes: { |
| shape: "dot", |
| size: 16, |
| font: { size: 14, face: "Times New Roman", color: "#222", bold: true }, |
| borderWidth: 0, |
| chosen: false |
| }, |
| edges: { |
| arrows: { to: { enabled: true, scaleFactor: 0.8 } }, |
| smooth: { enabled: true, type: "dynamic" }, |
| font: { size: 11, align: "middle" } |
| }, |
| interaction: { |
| hover: true, |
| tooltipDelay: 200 |
| }, |
| physics: { |
| enabled: true, |
| barnesHut: { |
| gravitationalConstant: -2600, |
| centralGravity: 0.58, |
| springLength: 110, |
| springConstant: 0.065, |
| damping: 0.42, |
| avoidOverlap: 0.30 |
| }, |
| maxVelocity: 8, |
| timestep: 0.35, |
| adaptiveTimestep: false, |
| stabilization: { |
| enabled: true, |
| iterations: 520 |
| } |
| } |
| }; |
| |
| const network = new vis.Network(container, { nodes: nodesDataset, edges: edgesDataset }, options); |
| sccGlowSvg = document.createElementNS("http://www.w3.org/2000/svg", "svg"); |
| sccGlowSvg.classList.add("scc-glow-layer"); |
| sccGlowSvg.setAttribute("aria-hidden", "true"); |
| sccGlowDefs = document.createElementNS("http://www.w3.org/2000/svg", "defs"); |
| sccGlowSvg.appendChild(sccGlowDefs); |
| container.insertBefore(sccGlowSvg, container.firstChild); |
| initSccGlowDefs(); |
| |
| function canonicalCanId(text) { |
| const s = String(text || "").trim(); |
| if (!s) return ""; |
| let v; |
| if (/^0x/i.test(s)) { |
| v = parseInt(s, 16); |
| } else if (/^\d+$/.test(s)) { |
| v = parseInt(s, 10); |
| } else { |
| try { v = parseInt(s, 16); } catch (e) { return s.toUpperCase(); } |
| } |
| if (!Number.isFinite(v)) return s.toUpperCase(); |
| return "0x" + v.toString(16).toUpperCase(); |
| } |
| |
| function clusterKeyFromNodeId(nodeId) { |
| const s = String(nodeId || ""); |
| const i = s.lastIndexOf(":"); |
| return i >= 0 ? s.slice(0, i) : s; |
| } |
| |
| function focusCanIdCluster(inputCanId) { |
| const target = canonicalCanId(inputCanId); |
| if (!target) { |
| showError("Enter a CAN-ID to focus."); |
| return; |
| } |
| const matchedNodeIds = []; |
| nodesDataset.forEach((node) => { |
| const key = clusterKeyFromNodeId(node.id); |
| if (key === target || canonicalCanId(key) === target) { |
| matchedNodeIds.push(node.id); |
| } |
| }); |
| if (matchedNodeIds.length === 0) { |
| showError(`No nodes for CAN-ID=${target} in forwarding graph.`); |
| return; |
| } |
| |
| const matchedNodeSet = new Set(matchedNodeIds); |
| const matchedEdgeIds = []; |
| edgesDataset.forEach((edge) => { |
| if (edge.kind !== "cohesion" && (matchedNodeSet.has(edge.from) || matchedNodeSet.has(edge.to))) { |
| matchedEdgeIds.push(edge.id); |
| } |
| }); |
| |
| hideError(); |
| focusedCanId = target; |
| scheduleGlowUpdate(); |
| network.redraw(); |
| network.selectNodes(matchedNodeIds, false); |
| network.selectEdges(matchedEdgeIds); |
| network.fit({ |
| nodes: matchedNodeIds, |
| animation: { |
| duration: 600, |
| easingFunction: "easeInOutQuad", |
| }, |
| }); |
| } |
| |
| function escapeHtml(value) { |
| return String(value ?? "").replace(/[&<>"']/g, (ch) => ({ |
| "&": "&", |
| "<": "<", |
| ">": ">", |
| '"': """, |
| "'": "'", |
| }[ch])); |
| } |
| |
| function nodeDomainFromId(nodeId) { |
| const parts = String(nodeId || "").split(":"); |
| return parts.length ? parts[parts.length - 1].replace(/^x/, "") : String(nodeId || ""); |
| } |
| |
| function displayNodeLabel(node) { |
| if (!node) return ""; |
| const label = String(node.label || node.id || "").replace(/\n/g, " / "); |
| return label.replace("Domain-", "D"); |
| } |
| |
| function focusNodes(nodeIds) { |
| const ids = [...new Set(nodeIds)].filter(Boolean); |
| if (!ids.length) return; |
| const idSet = new Set(ids); |
| const edgeIds = []; |
| edgesDataset.forEach((edge) => { |
| if (edge.kind !== "cohesion" && (idSet.has(edge.from) || idSet.has(edge.to))) { |
| edgeIds.push(edge.id); |
| } |
| }); |
| hideError(); |
| network.selectNodes(ids, false); |
| network.selectEdges(edgeIds); |
| network.fit({ |
| nodes: ids, |
| animation: { |
| duration: 650, |
| easingFunction: "easeInOutQuad", |
| }, |
| }); |
| } |
| |
| function classify_scc(scc) { |
| const breakdown = scc.edge_breakdown || {}; |
| return ((breakdown.normal || 0) + (breakdown.virtual || 0) + (breakdown.potential || 0)) > 0 ? "unknown" : "broadcast"; |
| } |
| |
| function sccTypeLabel(type) { |
| return type === "broadcast" ? "Co-source Broadcast" : "Potential Forwarding"; |
| } |
| |
| function groupCanId(group) { |
| const canIds = [...new Set(group.map((id) => clusterKeyFromNodeId(id)))].sort((a, b) => a.localeCompare(b)); |
| return canIds.length === 1 ? canIds[0] : canIds.join(", "); |
| } |
| |
| function edgeBreakdownForGroup(group, edges) { |
| const nodeSet = new Set(group); |
| const breakdown = { broadcast: 0, normal: 0, virtual: 0, potential: 0 }; |
| const groupEdges = []; |
| for (const edge of edges) { |
| if (!nodeSet.has(edge.from) || !nodeSet.has(edge.to)) continue; |
| if (edge.kind === "broadcast") breakdown.broadcast += 1; |
| else if (edge.kind === "potential") breakdown.potential += 1; |
| else if (edge.kind === "virtual") breakdown.virtual += 1; |
| else if (edge.kind === "forwarding") breakdown.normal += 1; |
| else continue; |
| groupEdges.push(edge); |
| } |
| return { breakdown, groupEdges }; |
| } |
| |
| function makeSccObject(group, edges, idx, preferredType = null) { |
| const sortedNodes = [...new Set(group)].sort((a, b) => nodeDomainFromId(a).localeCompare(nodeDomainFromId(b), undefined, { numeric: true })); |
| const edgeInfo = edgeBreakdownForGroup(sortedNodes, edges); |
| const scc = { |
| scc_id: `scc_${String(idx + 1).padStart(3, "0")}`, |
| can_id: groupCanId(sortedNodes), |
| nodes: sortedNodes, |
| edges: edgeInfo.groupEdges, |
| edge_breakdown: edgeInfo.breakdown, |
| }; |
| const computedType = classify_scc(scc); |
| scc.scc_type = preferredType === "broadcast" ? computedType : (preferredType || computedType); |
| return scc; |
| } |
| |
| function buildSccGroups(nodes, edges) { |
| const byKey = new Map(); |
| const addGroup = (group, preferredType) => { |
| if (!group || group.length < 2) return; |
| const key = [...new Set(group)].sort().join("|"); |
| const existing = byKey.get(key); |
| const scc = makeSccObject(group, edges, byKey.size, preferredType); |
| if (!existing || (existing.scc_type === "broadcast" && scc.scc_type === "unknown")) { |
| byKey.set(key, scc); |
| } |
| }; |
| connectedGroups(nodes, edges, (edge) => edge.kind === "broadcast").forEach((group) => addGroup(group, "broadcast")); |
| stronglyConnectedComponents(nodes, edges).forEach((group) => addGroup(group, null)); |
| const groups = [...byKey.values()]; |
| groups.forEach((group, idx) => { group.scc_id = `scc_${String(idx + 1).padStart(3, "0")}`; }); |
| return groups.sort((a, b) => { |
| if (a.scc_type !== b.scc_type) return a.scc_type === "unknown" ? -1 : 1; |
| if (a.scc_type === "unknown") return b.nodes.length - a.nodes.length || a.can_id.localeCompare(b.can_id); |
| return a.can_id.localeCompare(b.can_id); |
| }); |
| } |
| |
| function createCohesionEdges(sccGroups) { |
| const cohesionEdges = []; |
| for (const group of sccGroups) { |
| for (let i = 0; i < group.nodes.length; i += 1) { |
| for (let j = i + 1; j < group.nodes.length; j += 1) { |
| cohesionEdges.push({ |
| id: `cohesion_${group.scc_id}_${i}_${j}`, |
| from: group.nodes[i], |
| to: group.nodes[j], |
| kind: "cohesion", |
| label: "", |
| title: "", |
| color: { color: "rgba(0,0,0,0)", highlight: "rgba(0,0,0,0)", hover: "rgba(0,0,0,0)" }, |
| width: 0.1, |
| arrows: { to: { enabled: false } }, |
| smooth: false, |
| physics: true, |
| length: 44, |
| springConstant: 0.85, |
| chosen: false, |
| hoverWidth: 0, |
| selectionWidth: 0, |
| }); |
| } |
| } |
| } |
| return cohesionEdges; |
| } |
| |
| function sccIsVisible(group) { |
| if (sccHullMode === "Off") return false; |
| if (sccHullMode === "OnlyBroadcast") return group.scc_type === "broadcast"; |
| if (sccHullMode === "OnlyUnknown") return group.scc_type === "unknown"; |
| return true; |
| } |
| |
| function visibleSccGroups() { |
| return sccGroupsCache.filter((group) => sccIsVisible(group)); |
| } |
| |
| function svgEl(tag) { |
| return document.createElementNS("http://www.w3.org/2000/svg", tag); |
| } |
| |
| function initSccGlowDefs() { |
| if (!sccGlowDefs) return; |
| sccGlowDefs.innerHTML = ""; |
| const specs = [ |
| { type: "unknown", color: "#FB923C" }, |
| { type: "broadcast", color: "#A78BFA" }, |
| ]; |
| for (const spec of specs) { |
| for (const layer of ["core", "halo"]) { |
| const gradient = svgEl("radialGradient"); |
| gradient.id = `scc-glow-${layer}-${spec.type}`; |
| gradient.setAttribute("cx", "46%"); |
| gradient.setAttribute("cy", "42%"); |
| gradient.setAttribute("r", "62%"); |
| gradient.setAttribute("gradientUnits", "objectBoundingBox"); |
| [ |
| ["0%", 1], |
| ["36%", layer === "core" ? 0.82 : 0.70], |
| ["72%", layer === "core" ? 0.36 : 0.30], |
| ["100%", 0], |
| ].forEach(([offset, opacity]) => { |
| const stop = svgEl("stop"); |
| stop.setAttribute("offset", offset); |
| stop.setAttribute("stop-color", spec.color); |
| stop.setAttribute("stop-opacity", String(opacity)); |
| gradient.appendChild(stop); |
| }); |
| sccGlowDefs.appendChild(gradient); |
| } |
| const filter = svgEl("filter"); |
| filter.id = `scc-glow-${spec.type}`; |
| filter.setAttribute("x", "-50%"); |
| filter.setAttribute("y", "-50%"); |
| filter.setAttribute("width", "200%"); |
| filter.setAttribute("height", "200%"); |
| const blur = svgEl("feGaussianBlur"); |
| blur.setAttribute("stdDeviation", spec.type === "unknown" ? "8" : "7"); |
| const transfer = svgEl("feComponentTransfer"); |
| const alpha = svgEl("feFuncA"); |
| alpha.setAttribute("type", "gamma"); |
| alpha.setAttribute("amplitude", "1.2"); |
| alpha.setAttribute("exponent", "0.85"); |
| transfer.appendChild(alpha); |
| filter.appendChild(blur); |
| filter.appendChild(transfer); |
| sccGlowDefs.appendChild(filter); |
| } |
| } |
| |
| function circleFrom2(a, b) { |
| return { |
| x: (a.x + b.x) / 2, |
| y: (a.y + b.y) / 2, |
| r: Math.hypot(a.x - b.x, a.y - b.y) / 2, |
| }; |
| } |
| |
| function circleFrom3(a, b, c) { |
| const d = 2 * (a.x * (b.y - c.y) + b.x * (c.y - a.y) + c.x * (a.y - b.y)); |
| if (Math.abs(d) < 0.0001) { |
| return [circleFrom2(a, b), circleFrom2(a, c), circleFrom2(b, c)] |
| .sort((m, n) => n.r - m.r)[0]; |
| } |
| const ax2ay2 = a.x * a.x + a.y * a.y; |
| const bx2by2 = b.x * b.x + b.y * b.y; |
| const cx2cy2 = c.x * c.x + c.y * c.y; |
| const x = (ax2ay2 * (b.y - c.y) + bx2by2 * (c.y - a.y) + cx2cy2 * (a.y - b.y)) / d; |
| const y = (ax2ay2 * (c.x - b.x) + bx2by2 * (a.x - c.x) + cx2cy2 * (b.x - a.x)) / d; |
| return { x, y, r: Math.hypot(x - a.x, y - a.y) }; |
| } |
| |
| function pointInCircle(point, circle) { |
| return Math.hypot(point.x - circle.x, point.y - circle.y) <= circle.r + 0.5; |
| } |
| |
| function minimumEnclosingCircle(points) { |
| if (!points.length) return null; |
| let circle = { x: points[0].x, y: points[0].y, r: 0 }; |
| for (let i = 0; i < points.length; i += 1) { |
| if (pointInCircle(points[i], circle)) continue; |
| circle = { x: points[i].x, y: points[i].y, r: 0 }; |
| for (let j = 0; j < i; j += 1) { |
| if (pointInCircle(points[j], circle)) continue; |
| circle = circleFrom2(points[i], points[j]); |
| for (let k = 0; k < j; k += 1) { |
| if (!pointInCircle(points[k], circle)) circle = circleFrom3(points[i], points[j], points[k]); |
| } |
| } |
| } |
| return circle; |
| } |
| |
| function buildGlowGeometry(group, positions = null) { |
| const pos = positions || network.getPositions(group.nodes); |
| const points = group.nodes.map((id) => pos[id]).filter(Boolean); |
| if (points.length < 2) return null; |
| if (points.length === 2) { |
| const [a, b] = points; |
| const cx = (a.x + b.x) / 2; |
| const cy = (a.y + b.y) / 2; |
| const distance = Math.hypot(a.x - b.x, a.y - b.y); |
| const rx = distance / 2 + 42; |
| const ry = 36; |
| const angle = Math.atan2(b.y - a.y, b.x - a.x); |
| const maxRadius = Math.max(rx, ry) + 18; |
| return { |
| shape: "ellipse", |
| cx, |
| cy, |
| rx, |
| ry, |
| angle, |
| labelPoint: { x: cx + Math.cos(angle) * rx, y: cy + Math.sin(angle) * rx - ry }, |
| bounds: { minX: cx - maxRadius, minY: cy - maxRadius, maxX: cx + maxRadius, maxY: cy + maxRadius }, |
| }; |
| } |
| const circle = minimumEnclosingCircle(points); |
| if (!circle) return null; |
| const r = circle.r + 38; |
| return { |
| shape: "circle", |
| cx: circle.x, |
| cy: circle.y, |
| rx: r, |
| ry: r, |
| angle: 0, |
| labelPoint: { x: circle.x + r, y: circle.y - r }, |
| bounds: { minX: circle.x - r - 18, minY: circle.y - r - 18, maxX: circle.x + r + 18, maxY: circle.y + r + 18 }, |
| }; |
| } |
| |
| function ensureGlowGroup(group) { |
| if (!sccGlowSvg) return null; |
| let g = sccGlowSvg.querySelector(`g.scc-glow[data-scc-id="${group.scc_id}"]`); |
| if (g) return g; |
| g = svgEl("g"); |
| g.classList.add("scc-glow"); |
| g.dataset.sccId = group.scc_id; |
| g.dataset.sccType = group.scc_type; |
| g.dataset.canId = group.can_id; |
| const halo = svgEl("ellipse"); |
| halo.classList.add("halo"); |
| const core = svgEl("ellipse"); |
| core.classList.add("core"); |
| g.appendChild(halo); |
| g.appendChild(core); |
| sccGlowSvg.appendChild(g); |
| return g; |
| } |
| |
| function currentGlowState(group, timeMs) { |
| const isUnknown = group.scc_type === "unknown"; |
| const reduceMotion = window.matchMedia("(prefers-reduced-motion: reduce)").matches; |
| const baseCore = isUnknown ? 0.42 : 0.34; |
| let coreOpacity = baseCore; |
| let haloOpacity = isUnknown ? 0.20 : 0.16; |
| let scale = 1; |
| if (isUnknown && breathingEnabled && !reduceMotion) { |
| const t = (Math.sin(timeMs / 4000 * Math.PI * 2) + 1) / 2; |
| coreOpacity = 0.36 + t * 0.12; |
| scale = 1 + t * 0.018; |
| } |
| if (focusedCanId && canonicalCanId(group.can_id) !== focusedCanId) { |
| coreOpacity = Math.min(coreOpacity, 0.08); |
| haloOpacity = Math.min(haloOpacity, 0.04); |
| } |
| if (hoveredSccId) { |
| if (hoveredSccId === group.scc_id) { |
| coreOpacity = 0.62; |
| haloOpacity = Math.max(haloOpacity, 0.28); |
| scale = Math.max(scale, 1.05); |
| } else { |
| coreOpacity = 0.05; |
| haloOpacity = 0.03; |
| } |
| } |
| if (flashSccId === group.scc_id && !reduceMotion) { |
| const elapsed = timeMs - flashStartedAt; |
| if (elapsed < 800) { |
| const flash = Math.sin((elapsed / 800) * Math.PI); |
| coreOpacity = Math.max(coreOpacity, 0.28 + flash * 0.27); |
| haloOpacity = Math.max(haloOpacity, 0.12 + flash * 0.18); |
| } else { |
| flashSccId = null; |
| } |
| } |
| return { coreOpacity, haloOpacity, scale }; |
| } |
| |
| function positionGlowGroup(g, geometry) { |
| const scale = network.getScale(); |
| const center = network.canvasToDOM({ x: geometry.cx, y: geometry.cy }); |
| const angle = geometry.angle * 180 / Math.PI; |
| g.setAttribute("transform", `translate(${center.x} ${center.y}) rotate(${angle})`); |
| return scale; |
| } |
| |
| function updateGlowElement(el, geometry, radiusOffset, opacity, fillId, filterId, scale, scaleBoost) { |
| const rx = Math.max(1, (geometry.rx + radiusOffset) * scale * scaleBoost); |
| const ry = Math.max(1, (geometry.ry + radiusOffset) * scale * scaleBoost); |
| el.setAttribute("cx", "0"); |
| el.setAttribute("cy", "0"); |
| el.setAttribute("rx", String(rx)); |
| el.setAttribute("ry", String(ry)); |
| el.setAttribute("fill", `url(#${fillId})`); |
| el.setAttribute("filter", `url(#${filterId})`); |
| el.setAttribute("opacity", String(opacity)); |
| el.setAttribute("stroke", "none"); |
| el.removeAttribute("transform"); |
| } |
| |
| function renderSccGlows() { |
| if (!sccGlowSvg || !sccGlowDefs) return; |
| const rect = container.getBoundingClientRect(); |
| sccGlowSvg.setAttribute("viewBox", `0 0 ${rect.width} ${rect.height}`); |
| sccGlowSvg.setAttribute("width", String(rect.width)); |
| sccGlowSvg.setAttribute("height", String(rect.height)); |
| const groups = visibleSccGroups(); |
| const visibleIds = new Set(groups.map((group) => group.scc_id)); |
| sccGlowSvg.querySelectorAll("g.scc-glow").forEach((g) => { |
| if (!visibleIds.has(g.dataset.sccId)) g.remove(); |
| }); |
| const timeMs = performance.now(); |
| const positions = network.getPositions(groups.flatMap((group) => group.nodes)); |
| for (const group of groups) { |
| const geometry = buildGlowGeometry(group, positions); |
| if (!geometry) continue; |
| const g = ensureGlowGroup(group); |
| if (!g) continue; |
| g.dataset.sccType = group.scc_type; |
| g.dataset.canId = group.can_id; |
| const state = currentGlowState(group, timeMs); |
| const fillType = group.scc_type === "unknown" ? "unknown" : "broadcast"; |
| const scale = positionGlowGroup(g, geometry); |
| updateGlowElement(g.querySelector(".halo"), geometry, 18, state.haloOpacity, `scc-glow-halo-${fillType}`, `scc-glow-${fillType}`, scale, state.scale); |
| updateGlowElement(g.querySelector(".core"), geometry, 0, state.coreOpacity, `scc-glow-core-${fillType}`, `scc-glow-${fillType}`, scale, state.scale); |
| } |
| if ( |
| groups.some((group) => group.scc_type === "unknown") |
| && breathingEnabled |
| && !window.matchMedia("(prefers-reduced-motion: reduce)").matches |
| ) { |
| scheduleGlowUpdate(); |
| } |
| } |
| |
| function scheduleGlowUpdate() { |
| if (glowRafPending) return; |
| glowRafPending = true; |
| requestAnimationFrame(() => { |
| glowRafPending = false; |
| renderSccGlows(); |
| }); |
| } |
| |
| function sccOrdinal(group) { |
| const match = String(group?.scc_id || "").match(/(\d+)$/); |
| return match ? String(parseInt(match[1], 10)) : ""; |
| } |
| |
| function sccTitle(group) { |
| const name = `${sccTypeLabel(group?.scc_type)} SCC`; |
| const ordinal = sccOrdinal(group); |
| return ordinal ? `${name} #${ordinal}` : name; |
| } |
| |
| function sccNodesText(group) { |
| return (group?.nodes || []) |
| .map((id) => { |
| const domain = nodeDomainFromId(id); |
| return domain === "0" ? "virtual" : `D${domain}`; |
| }) |
| .join(", "); |
| } |
| |
| function sccBreakdownText(group, includeVirtual = false) { |
| const breakdown = group?.edge_breakdown || {}; |
| const parts = [ |
| `${breakdown.normal || 0} forwarding`, |
| `${breakdown.potential || 0} potential forwarding`, |
| `${breakdown.broadcast || 0} co-source broadcast`, |
| ]; |
| if (includeVirtual) parts.push(`${breakdown.virtual || 0} virtual`); |
| return parts.join(" · "); |
| } |
| |
| function showSccTooltip(group, domPoint) { |
| if (!sccTooltip || !group || !domPoint) return; |
| sccTooltip.innerHTML = ` |
| <b>${escapeHtml(sccTitle(group))}</b> |
| <div class="tooltip-line">CAN-ID: ${escapeHtml(group.can_id)}</div> |
| <div class="tooltip-line">Nodes: ${escapeHtml(sccNodesText(group))}</div> |
| <div class="tooltip-line">Edges: ${escapeHtml(sccBreakdownText(group, false))}</div> |
| `; |
| sccTooltip.style.display = "block"; |
| const tooltipRect = sccTooltip.getBoundingClientRect(); |
| const containerRect = container.getBoundingClientRect(); |
| const x = Math.min(Math.max(8, domPoint.x + 10), Math.max(8, containerRect.width - tooltipRect.width - 8)); |
| const y = Math.max(8, domPoint.y - tooltipRect.height - 12); |
| sccTooltip.style.left = `${x}px`; |
| sccTooltip.style.top = `${y}px`; |
| } |
| |
| function hideSccTooltip() { |
| if (!sccTooltip) return; |
| sccTooltip.style.display = "none"; |
| sccTooltip.innerHTML = ""; |
| } |
| |
| function pointInBounds(point, bounds) { |
| return point.x >= bounds.minX && point.x <= bounds.maxX && point.y >= bounds.minY && point.y <= bounds.maxY; |
| } |
| |
| function pointInGlowGeometry(point, geometry) { |
| if (!pointInBounds(point, geometry.bounds)) return false; |
| const dx = point.x - geometry.cx; |
| const dy = point.y - geometry.cy; |
| const cos = Math.cos(-geometry.angle); |
| const sin = Math.sin(-geometry.angle); |
| const localX = dx * cos - dy * sin; |
| const localY = dx * sin + dy * cos; |
| const rx = geometry.rx + 18; |
| const ry = geometry.ry + 18; |
| return (localX * localX) / (rx * rx) + (localY * localY) / (ry * ry) <= 1; |
| } |
| |
| function findSccAtPoint(point) { |
| for (const group of visibleSccGroups().slice().reverse()) { |
| const geometry = buildGlowGeometry(group); |
| if (geometry && pointInGlowGeometry(point, geometry)) return group; |
| } |
| return null; |
| } |
| |
| function findSccByNodeId(nodeId) { |
| return visibleSccGroups().find((group) => group.nodes.includes(nodeId)) || null; |
| } |
| |
| function setHoveredScc(sccId) { |
| if (hoveredSccId === sccId) return; |
| hoveredSccId = sccId; |
| scheduleGlowUpdate(); |
| structurePanel?.querySelectorAll(".group-card").forEach((card) => card.classList.toggle("active", card.dataset.sccId === sccId)); |
| network.redraw(); |
| } |
| |
| function pulseScc(sccId) { |
| flashSccId = sccId; |
| flashStartedAt = performance.now(); |
| scheduleGlowUpdate(); |
| network.redraw(); |
| window.setTimeout(() => { |
| if (flashSccId === sccId) flashSccId = null; |
| scheduleGlowUpdate(); |
| network.redraw(); |
| }, 820); |
| } |
| |
| function pulseNode(nodeId) { |
| const node = nodesDataset.get(nodeId); |
| if (!node) return; |
| const originalBorderWidth = node.borderWidth; |
| const originalShadow = Object.prototype.hasOwnProperty.call(node, "shadow") ? node.shadow : false; |
| nodesDataset.update({ |
| id: nodeId, |
| borderWidth: Math.max((node.borderWidth || 2) + 4, 7), |
| shadow: { |
| enabled: true, |
| color: "rgba(37, 99, 235, 0.35)", |
| size: 16, |
| x: 0, |
| y: 0, |
| }, |
| }); |
| window.setTimeout(() => { |
| nodesDataset.update({ |
| id: nodeId, |
| borderWidth: originalBorderWidth, |
| shadow: originalShadow, |
| }); |
| }, 360); |
| } |
| |
| function focusSccGroup(group, scrollCard = false) { |
| if (!group) return; |
| focusedCanId = canonicalCanId(group.can_id); |
| focusNodes(group.nodes); |
| pulseScc(group.scc_id); |
| setHoveredScc(group.scc_id); |
| if (scrollCard) { |
| const card = structurePanel?.querySelector(`[data-scc-id="${group.scc_id}"]`); |
| card?.scrollIntoView({ block: "center", behavior: "smooth" }); |
| } |
| } |
| |
| function connectedGroups(nodes, edges, edgePredicate) { |
| const adjacency = new Map(nodes.map((node) => [node.id, new Set()])); |
| for (const edge of edges) { |
| if (!edgePredicate(edge)) continue; |
| if (!adjacency.has(edge.from) || !adjacency.has(edge.to)) continue; |
| adjacency.get(edge.from).add(edge.to); |
| adjacency.get(edge.to).add(edge.from); |
| } |
| |
| const visited = new Set(); |
| const groups = []; |
| for (const node of nodes) { |
| if (visited.has(node.id) || !adjacency.get(node.id)?.size) continue; |
| const stack = [node.id]; |
| const group = []; |
| visited.add(node.id); |
| while (stack.length) { |
| const id = stack.pop(); |
| group.push(id); |
| for (const nextId of adjacency.get(id) || []) { |
| if (visited.has(nextId)) continue; |
| visited.add(nextId); |
| stack.push(nextId); |
| } |
| } |
| if (group.length > 1) groups.push(group); |
| } |
| return groups.sort((a, b) => b.length - a.length || String(a[0]).localeCompare(String(b[0]))); |
| } |
| |
| function stronglyConnectedComponents(nodes, edges) { |
| const adjacency = new Map(nodes.map((node) => [node.id, []])); |
| for (const edge of edges) { |
| if (edge.kind && edge.kind !== "forwarding" && edge.kind !== "virtual" && edge.kind !== "potential") continue; |
| if (!adjacency.has(edge.from) || !adjacency.has(edge.to)) continue; |
| adjacency.get(edge.from).push(edge.to); |
| if (edge.kind === "potential" && edge.arrows?.from?.enabled) adjacency.get(edge.to).push(edge.from); |
| } |
| |
| let index = 0; |
| const stack = []; |
| const onStack = new Set(); |
| const indexes = new Map(); |
| const lowlinks = new Map(); |
| const groups = []; |
| |
| function visit(nodeId) { |
| indexes.set(nodeId, index); |
| lowlinks.set(nodeId, index); |
| index += 1; |
| stack.push(nodeId); |
| onStack.add(nodeId); |
| |
| for (const nextId of adjacency.get(nodeId) || []) { |
| if (!indexes.has(nextId)) { |
| visit(nextId); |
| lowlinks.set(nodeId, Math.min(lowlinks.get(nodeId), lowlinks.get(nextId))); |
| } else if (onStack.has(nextId)) { |
| lowlinks.set(nodeId, Math.min(lowlinks.get(nodeId), indexes.get(nextId))); |
| } |
| } |
| |
| if (lowlinks.get(nodeId) === indexes.get(nodeId)) { |
| const group = []; |
| let popped = null; |
| do { |
| popped = stack.pop(); |
| onStack.delete(popped); |
| group.push(popped); |
| } while (popped !== nodeId); |
| if (group.length > 1) groups.push(group); |
| } |
| } |
| |
| for (const node of nodes) { |
| if (!indexes.has(node.id)) visit(node.id); |
| } |
| return groups.sort((a, b) => b.length - a.length || String(a[0]).localeCompare(String(b[0]))); |
| } |
| |
| function renderGroupCards(title, type, groups, nodesById, emptyText, collapsed = false) { |
| const sectionClass = type === "broadcast" ? "broadcast" : "unknown"; |
| const hiddenStyle = collapsed ? "display:none;" : ""; |
| const badge = type === "unknown" && groups.length > 0 |
| ? `<span class="badge"><span class="alert-dot"></span>${groups.length}</span>` |
| : `<span class="badge">${groups.length}</span>`; |
| let htmlText = ` |
| <section class="structure-section" data-section-type="${sectionClass}"> |
| <button class="section-toggle ${sectionClass}" type="button" data-toggle-section="${sectionClass}"> |
| <span>${collapsed ? ">" : "v"} ${escapeHtml(title)} SCC</span> |
| ${badge} |
| </button> |
| <div class="section-body" style="${hiddenStyle}">`; |
| if (!groups.length) { |
| htmlText += `<div class="empty-note">${escapeHtml(emptyText)}</div></div></section>`; |
| return htmlText; |
| } |
| groups.forEach((group, idx) => { |
| const chips = group.nodes |
| .map((id) => { |
| const node = nodesById.get(id); |
| const domain = nodeDomainFromId(id); |
| const cls = domain === "0" ? "node-chip virtual" : "node-chip"; |
| return `<span class="${cls}" data-node-id="${escapeHtml(id)}" title="${escapeHtml(displayNodeLabel(node))}">${escapeHtml(domain === "0" ? "virtual" : `D${domain}`)}</span>`; |
| }) |
| .join(""); |
| const label = sccTypeLabel(type); |
| const breakdown = sccBreakdownText(group, true); |
| htmlText += ` |
| <div class="group-card ${sectionClass}" data-scc-id="${escapeHtml(group.scc_id)}" data-node-ids="${escapeHtml(JSON.stringify(group.nodes))}"> |
| <div class="group-head"> |
| <span>${escapeHtml(label)} #${idx + 1}</span> |
| <span class="group-meta">${group.nodes.length} nodes · ${escapeHtml(group.can_id)}</span> |
| </div> |
| <div class="group-breakdown">${escapeHtml(breakdown)}</div> |
| <div class="node-chips">${chips}</div> |
| </div>`; |
| }); |
| htmlText += "</div></section>"; |
| return htmlText; |
| } |
| |
| function renderStructurePanel(current) { |
| if (!structurePanel) return; |
| const nodes = current.nodes || []; |
| const nodesById = new Map(nodes.map((node) => [node.id, node])); |
| const broadcastGroups = sccGroupsCache.filter((group) => group.scc_type === "broadcast").sort((a, b) => a.can_id.localeCompare(b.can_id)); |
| const unknownGroups = sccGroupsCache.filter((group) => group.scc_type === "unknown").sort((a, b) => b.nodes.length - a.nodes.length || a.can_id.localeCompare(b.can_id)); |
| const broadcastCollapsed = sccHullMode === "OnlyUnknown" || broadcastGroups.length > 0; |
| const unknownCollapsed = sccHullMode === "OnlyBroadcast"; |
| structurePanel.innerHTML = ` |
| <div class="panel-title"> |
| <b>Structure Overview</b> |
| <span>Click a card to focus; hover to link with the graph</span> |
| </div> |
| ${renderGroupCards("Co-source Broadcast", "broadcast", broadcastGroups, nodesById, "No co-source broadcast groups formed by broadcast_edge in the current view.", broadcastCollapsed)} |
| ${renderGroupCards("Potential Forwarding", "unknown", unknownGroups, nodesById, "No potential forwarding components in the current view.", unknownCollapsed)} |
| `; |
| structurePanel.querySelectorAll("[data-toggle-section]").forEach((button) => { |
| button.addEventListener("click", () => { |
| const body = button.parentElement?.querySelector(".section-body"); |
| if (!body) return; |
| const willOpen = body.style.display === "none"; |
| body.style.display = willOpen ? "" : "none"; |
| const text = button.querySelector("span"); |
| if (text) text.textContent = text.textContent.replace(willOpen ? ">" : "v", willOpen ? "v" : ">"); |
| }); |
| }); |
| structurePanel.querySelectorAll(".group-card").forEach((card) => { |
| card.addEventListener("mouseenter", () => setHoveredScc(card.dataset.sccId)); |
| card.addEventListener("mouseleave", () => setHoveredScc(null)); |
| card.addEventListener("click", () => { |
| try { |
| const group = sccGroupsCache.find((item) => item.scc_id === card.dataset.sccId); |
| focusSccGroup(group, false); |
| } catch (e) { |
| showError("Failed to focus group: " + String(e)); |
| } |
| }); |
| }); |
| structurePanel.querySelectorAll(".node-chip[data-node-id]").forEach((chip) => { |
| chip.addEventListener("mouseenter", (event) => { |
| event.stopPropagation(); |
| pulseNode(chip.dataset.nodeId); |
| }); |
| }); |
| } |
| |
| function loadGraph() { |
| focusedCanId = ""; |
| hoveredSccId = null; |
| flashSccId = null; |
| hideSccTooltip(); |
| sccGroupsCache = buildSccGroups(graphNodes, graphEdges); |
| const renderedEdges = graphEdges.concat(createCohesionEdges(sccGroupsCache)); |
| nodesDataset = new vis.DataSet(graphNodes); |
| edgesDataset = new vis.DataSet(renderedEdges); |
| network.setData({ nodes: nodesDataset, edges: edgesDataset }); |
| network.unselectAll(); |
| hideError(); |
| nodeCountEl.textContent = graphNodes.length; |
| edgeCountEl.textContent = graphEdges.length; |
| if (btnJumpUnknown) { |
| btnJumpUnknown.disabled = !sccGroupsCache.some((group) => group.scc_type === "unknown"); |
| } |
| renderStructurePanel({ nodes: graphNodes, edges: graphEdges }); |
| scheduleGlowUpdate(); |
| network.redraw(); |
| } |
| |
| network.on("afterDrawing", () => { |
| scheduleGlowUpdate(); |
| }); |
| network.on("dragging", () => { |
| scheduleGlowUpdate(); |
| }); |
| network.on("zoom", () => { |
| scheduleGlowUpdate(); |
| }); |
| network.on("release", () => { |
| scheduleGlowUpdate(); |
| }); |
| network.on("mousemove", (params) => { |
| const hoveredNodeId = network.getNodeAt(params.pointer.DOM); |
| if (hoveredNodeId) { |
| const nodeGroup = findSccByNodeId(hoveredNodeId); |
| if (nodeGroup) { |
| setHoveredScc(nodeGroup.scc_id); |
| showSccTooltip(nodeGroup, params.pointer.DOM); |
| container.style.cursor = ""; |
| return; |
| } |
| } |
| const group = findSccAtPoint(params.pointer.canvas); |
| setHoveredScc(group ? group.scc_id : null); |
| if (group) showSccTooltip(group, params.pointer.DOM); |
| else hideSccTooltip(); |
| container.style.cursor = group ? "pointer" : ""; |
| }); |
| network.on("hoverNode", (params) => { |
| const group = findSccByNodeId(params.node); |
| if (group) setHoveredScc(group.scc_id); |
| }); |
| network.on("blurNode", () => { |
| setHoveredScc(null); |
| hideSccTooltip(); |
| }); |
| container.addEventListener("mouseleave", () => { |
| setHoveredScc(null); |
| hideSccTooltip(); |
| container.style.cursor = ""; |
| }); |
| network.on("click", (params) => { |
| if (params.nodes?.length || params.edges?.length) return; |
| const group = findSccAtPoint(params.pointer.canvas); |
| if (group) focusSccGroup(group, true); |
| }); |
| |
| btnFocusCanId.addEventListener("click", () => focusCanIdCluster(searchCanIdInput.value)); |
| sccHullModeSelect?.addEventListener("change", () => { |
| sccHullMode = sccHullModeSelect.value; |
| renderStructurePanel({ nodes: graphNodes, edges: graphEdges }); |
| scheduleGlowUpdate(); |
| hideSccTooltip(); |
| network.redraw(); |
| }); |
| toggleBreathing?.addEventListener("change", () => { |
| breathingEnabled = !!toggleBreathing.checked; |
| scheduleGlowUpdate(); |
| network.redraw(); |
| }); |
| btnJumpUnknown?.addEventListener("click", () => { |
| const unknownGroups = sccGroupsCache.filter((group) => group.scc_type === "unknown"); |
| if (!unknownGroups.length) { |
| showError("No Potential Forwarding SCC in the current view."); |
| return; |
| } |
| unknownJumpIndex = (unknownJumpIndex + 1) % unknownGroups.length; |
| focusSccGroup(unknownGroups[unknownJumpIndex], true); |
| }); |
| searchCanIdInput.addEventListener("keydown", (event) => { |
| if (event.key === "Enter") { |
| focusCanIdCluster(searchCanIdInput.value); |
| } |
| }); |
| loadGraph(); |
| } catch (err) { |
| showError("Render error: " + (err && err.stack ? err.stack : String(err))); |
| } |
| })(); |
| </script> |
| </body> |
| </html> |
|
|