| <!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.0082.fuzzing.1786006616</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":"0x1B000010:4","label":"0x1B000010\nDomain-4","title":"CAN_ID: 0x1B000010\ndomain: 4","color":{"background":"#6deaf2","border":"#6deaf2","highlight":{"background":"#6deaf2","border":"#6deaf2"},"hover":{"background":"#6deaf2","border":"#6deaf2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3E5:2","label":"0x03E5\nDomain-2","title":"CAN_ID: 0x03E5\ndomain: 2","color":{"background":"#9d6df2","border":"#9d6df2","highlight":{"background":"#9d6df2","border":"#9d6df2"},"hover":{"background":"#9d6df2","border":"#9d6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x31B:2","label":"0x031B\nDomain-2","title":"CAN_ID: 0x031B\ndomain: 2","color":{"background":"#6d85f2","border":"#6d85f2","highlight":{"background":"#6d85f2","border":"#6d85f2"},"hover":{"background":"#6d85f2","border":"#6d85f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xFD:1","label":"0x00FD\nDomain-1","title":"CAN_ID: 0x00FD\ndomain: 1","color":{"background":"#f26d6f","border":"#f26d6f","highlight":{"background":"#f26d6f","border":"#f26d6f"},"hover":{"background":"#f26d6f","border":"#f26d6f"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A55566B:1","label":"0x1A55566B\nDomain-1","title":"CAN_ID: 0x1A55566B\ndomain: 1","color":{"background":"#6df2d4","border":"#6df2d4","highlight":{"background":"#6df2d4","border":"#6df2d4"},"hover":{"background":"#6df2d4","border":"#6df2d4"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x10D:2","label":"0x010D\nDomain-2","title":"CAN_ID: 0x010D\ndomain: 2","color":{"background":"#f2716d","border":"#f2716d","highlight":{"background":"#f2716d","border":"#f2716d"},"hover":{"background":"#f2716d","border":"#f2716d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x545:2","label":"0x0545\nDomain-2","title":"CAN_ID: 0x0545\ndomain: 2","color":{"background":"#ce6df2","border":"#ce6df2","highlight":{"background":"#ce6df2","border":"#ce6df2"},"hover":{"background":"#ce6df2","border":"#ce6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3C0:5","label":"0x03C0\nDomain-5","title":"CAN_ID: 0x03C0\ndomain: 5","color":{"background":"#896df2","border":"#896df2","highlight":{"background":"#896df2","border":"#896df2"},"hover":{"background":"#896df2","border":"#896df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x102:0","label":"0x0102\nDomain-0","title":"CAN_ID: 0x0102\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26d6d","highlight":{"background":"#FFFFFF","border":"#f26d6d"},"hover":{"background":"#FFFFFF","border":"#f26d6d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x6B2:2","label":"0x06B2\nDomain-2","title":"CAN_ID: 0x06B2\ndomain: 2","color":{"background":"#f26dbc","border":"#f26dbc","highlight":{"background":"#f26dbc","border":"#f26dbc"},"hover":{"background":"#f26dbc","border":"#f26dbc"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556EA:1","label":"0x1A5556EA\nDomain-1","title":"CAN_ID: 0x1A5556EA\ndomain: 1","color":{"background":"#6df2e0","border":"#6df2e0","highlight":{"background":"#6df2e0","border":"#6df2e0"},"hover":{"background":"#6df2e0","border":"#6df2e0"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x9F:0","label":"0x009F\nDomain-0","title":"CAN_ID: 0x009F\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26da6","highlight":{"background":"#FFFFFF","border":"#f26da6"},"hover":{"background":"#FFFFFF","border":"#f26da6"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x16A9545F:2","label":"0x16A9545F\nDomain-2","title":"CAN_ID: 0x16A9545F\ndomain: 2","color":{"background":"#e0f26d","border":"#e0f26d","highlight":{"background":"#e0f26d","border":"#e0f26d"},"hover":{"background":"#e0f26d","border":"#e0f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3BE:3","label":"0x03BE\nDomain-3","title":"CAN_ID: 0x03BE\ndomain: 3","color":{"background":"#866df2","border":"#866df2","highlight":{"background":"#866df2","border":"#866df2"},"hover":{"background":"#866df2","border":"#866df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555BF:5","label":"0x1A5555BF\nDomain-5","title":"CAN_ID: 0x1A5555BF\ndomain: 5","color":{"background":"#6df2cd","border":"#6df2cd","highlight":{"background":"#6df2cd","border":"#6df2cd"},"hover":{"background":"#6df2cd","border":"#6df2cd"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xFC:2","label":"0x00FC\nDomain-2","title":"CAN_ID: 0x00FC\ndomain: 2","color":{"background":"#f26d71","border":"#f26d71","highlight":{"background":"#f26d71","border":"#f26d71"},"hover":{"background":"#f26d71","border":"#f26d71"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B4:3","label":"0x06B4\nDomain-3","title":"CAN_ID: 0x06B4\ndomain: 3","color":{"background":"#f26db9","border":"#f26db9","highlight":{"background":"#f26db9","border":"#f26db9"},"hover":{"background":"#f26db9","border":"#f26db9"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1F0:2","label":"0x01F0\nDomain-2","title":"CAN_ID: 0x01F0\ndomain: 2","color":{"background":"#6dcdf2","border":"#6dcdf2","highlight":{"background":"#6dcdf2","border":"#6dcdf2"},"hover":{"background":"#6dcdf2","border":"#6dcdf2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555628:0","label":"0x1A555628\nDomain-0","title":"CAN_ID: 0x1A555628\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2cf","highlight":{"background":"#FFFFFF","border":"#6df2cf"},"hover":{"background":"#FFFFFF","border":"#6df2cf"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0xDB:4","label":"0x00DB\nDomain-4","title":"CAN_ID: 0x00DB\ndomain: 4","color":{"background":"#f26d80","border":"#f26d80","highlight":{"background":"#f26d80","border":"#f26d80"},"hover":{"background":"#f26d80","border":"#f26d80"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3C0:0","label":"0x03C0\nDomain-0","title":"CAN_ID: 0x03C0\ndomain: 0","color":{"background":"#FFFFFF","border":"#896df2","highlight":{"background":"#FFFFFF","border":"#896df2"},"hover":{"background":"#FFFFFF","border":"#896df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x86:1","label":"0x0086\nDomain-1","title":"CAN_ID: 0x0086\ndomain: 1","color":{"background":"#f26da8","border":"#f26da8","highlight":{"background":"#f26da8","border":"#f26da8"},"hover":{"background":"#f26da8","border":"#f26da8"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1B000010:3","label":"0x1B000010\nDomain-3","title":"CAN_ID: 0x1B000010\ndomain: 3","color":{"background":"#6deaf2","border":"#6deaf2","highlight":{"background":"#6deaf2","border":"#6deaf2"},"hover":{"background":"#6deaf2","border":"#6deaf2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x16A954AD:2","label":"0x16A954AD\nDomain-2","title":"CAN_ID: 0x16A954AD\ndomain: 2","color":{"background":"#d8f26d","border":"#d8f26d","highlight":{"background":"#d8f26d","border":"#d8f26d"},"hover":{"background":"#d8f26d","border":"#d8f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x102:4","label":"0x0102\nDomain-4","title":"CAN_ID: 0x0102\ndomain: 4","color":{"background":"#f26d6d","border":"#f26d6d","highlight":{"background":"#f26d6d","border":"#f26d6d"},"hover":{"background":"#f26d6d","border":"#f26d6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x14C:4","label":"0x014C\nDomain-4","title":"CAN_ID: 0x014C\ndomain: 4","color":{"background":"#f2d26d","border":"#f2d26d","highlight":{"background":"#f2d26d","border":"#f2d26d"},"hover":{"background":"#f2d26d","border":"#f2d26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A4:2","label":"0x01A4\nDomain-2","title":"CAN_ID: 0x01A4\ndomain: 2","color":{"background":"#6df291","border":"#6df291","highlight":{"background":"#6df291","border":"#6df291"},"hover":{"background":"#6df291","border":"#6df291"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x31B:1","label":"0x031B\nDomain-1","title":"CAN_ID: 0x031B\ndomain: 1","color":{"background":"#6d85f2","border":"#6d85f2","highlight":{"background":"#6d85f2","border":"#6d85f2"},"hover":{"background":"#6d85f2","border":"#6d85f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xAD:2","label":"0x00AD\nDomain-2","title":"CAN_ID: 0x00AD\ndomain: 2","color":{"background":"#f26da1","border":"#f26da1","highlight":{"background":"#f26da1","border":"#f26da1"},"hover":{"background":"#f26da1","border":"#f26da1"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x206:0","label":"0x0206\nDomain-0","title":"CAN_ID: 0x0206\ndomain: 0","color":{"background":"#FFFFFF","border":"#6dc5f2","highlight":{"background":"#FFFFFF","border":"#6dc5f2"},"hover":{"background":"#FFFFFF","border":"#6dc5f2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x3D4:1","label":"0x03D4\nDomain-1","title":"CAN_ID: 0x03D4\ndomain: 1","color":{"background":"#906df2","border":"#906df2","highlight":{"background":"#906df2","border":"#906df2"},"hover":{"background":"#906df2","border":"#906df2"}},"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":"#6df2cd","highlight":{"background":"#FFFFFF","border":"#6df2cd"},"hover":{"background":"#FFFFFF","border":"#6df2cd"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1A55566B:0","label":"0x1A55566B\nDomain-0","title":"CAN_ID: 0x1A55566B\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2d4","highlight":{"background":"#FFFFFF","border":"#6df2d4"},"hover":{"background":"#FFFFFF","border":"#6df2d4"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x551:1","label":"0x0551\nDomain-1","title":"CAN_ID: 0x0551\ndomain: 1","color":{"background":"#d66df2","border":"#d66df2","highlight":{"background":"#d66df2","border":"#d66df2"},"hover":{"background":"#d66df2","border":"#d66df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x20D:0","label":"0x020D\nDomain-0","title":"CAN_ID: 0x020D\ndomain: 0","color":{"background":"#FFFFFF","border":"#6dbef2","highlight":{"background":"#FFFFFF","border":"#6dbef2"},"hover":{"background":"#FFFFFF","border":"#6dbef2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x12DD54AA:2","label":"0x12DD54AA\nDomain-2","title":"CAN_ID: 0x12DD54AA\ndomain: 2","color":{"background":"#f28f6d","border":"#f28f6d","highlight":{"background":"#f28f6d","border":"#f28f6d"},"hover":{"background":"#f28f6d","border":"#f28f6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3C0:4","label":"0x03C0\nDomain-4","title":"CAN_ID: 0x03C0\ndomain: 4","color":{"background":"#896df2","border":"#896df2","highlight":{"background":"#896df2","border":"#896df2"},"hover":{"background":"#896df2","border":"#896df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x421:2","label":"0x0421\nDomain-2","title":"CAN_ID: 0x0421\ndomain: 2","color":{"background":"#b36df2","border":"#b36df2","highlight":{"background":"#b36df2","border":"#b36df2"},"hover":{"background":"#b36df2","border":"#b36df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x40:4","label":"0x0040\nDomain-4","title":"CAN_ID: 0x0040\ndomain: 4","color":{"background":"#a96df2","border":"#a96df2","highlight":{"background":"#a96df2","border":"#a96df2"},"hover":{"background":"#a96df2","border":"#a96df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B2:1","label":"0x06B2\nDomain-1","title":"CAN_ID: 0x06B2\ndomain: 1","color":{"background":"#f26dbc","border":"#f26dbc","highlight":{"background":"#f26dbc","border":"#f26dbc"},"hover":{"background":"#f26dbc","border":"#f26dbc"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x2C2:2","label":"0x02C2\nDomain-2","title":"CAN_ID: 0x02C2\ndomain: 2","color":{"background":"#6d96f2","border":"#6d96f2","highlight":{"background":"#6d96f2","border":"#6d96f2"},"hover":{"background":"#6d96f2","border":"#6d96f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x206:4","label":"0x0206\nDomain-4","title":"CAN_ID: 0x0206\ndomain: 4","color":{"background":"#6dc5f2","border":"#6dc5f2","highlight":{"background":"#6dc5f2","border":"#6dc5f2"},"hover":{"background":"#6dc5f2","border":"#6dc5f2"}},"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":"#866df2","border":"#866df2","highlight":{"background":"#866df2","border":"#866df2"},"hover":{"background":"#866df2","border":"#866df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x520:0","label":"0x0520\nDomain-0","title":"CAN_ID: 0x0520\ndomain: 0","color":{"background":"#FFFFFF","border":"#cc6df2","highlight":{"background":"#FFFFFF","border":"#cc6df2"},"hover":{"background":"#FFFFFF","border":"#cc6df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1A5555BF:4","label":"0x1A5555BF\nDomain-4","title":"CAN_ID: 0x1A5555BF\ndomain: 4","color":{"background":"#6df2cd","border":"#6df2cd","highlight":{"background":"#6df2cd","border":"#6df2cd"},"hover":{"background":"#6df2cd","border":"#6df2cd"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B4:2","label":"0x06B4\nDomain-2","title":"CAN_ID: 0x06B4\ndomain: 2","color":{"background":"#f26db9","border":"#f26db9","highlight":{"background":"#f26db9","border":"#f26db9"},"hover":{"background":"#f26db9","border":"#f26db9"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A55566B:4","label":"0x1A55566B\nDomain-4","title":"CAN_ID: 0x1A55566B\ndomain: 4","color":{"background":"#6df2d4","border":"#6df2d4","highlight":{"background":"#6df2d4","border":"#6df2d4"},"hover":{"background":"#6df2d4","border":"#6df2d4"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x20D:4","label":"0x020D\nDomain-4","title":"CAN_ID: 0x020D\ndomain: 4","color":{"background":"#6dbef2","border":"#6dbef2","highlight":{"background":"#6dbef2","border":"#6dbef2"},"hover":{"background":"#6dbef2","border":"#6dbef2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x86:0","label":"0x0086\nDomain-0","title":"CAN_ID: 0x0086\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26da8","highlight":{"background":"#FFFFFF","border":"#f26da8"},"hover":{"background":"#FFFFFF","border":"#f26da8"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x16A954AD:1","label":"0x16A954AD\nDomain-1","title":"CAN_ID: 0x16A954AD\ndomain: 1","color":{"background":"#d8f26d","border":"#d8f26d","highlight":{"background":"#d8f26d","border":"#d8f26d"},"hover":{"background":"#d8f26d","border":"#d8f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B2:5","label":"0x06B2\nDomain-5","title":"CAN_ID: 0x06B2\ndomain: 5","color":{"background":"#f26dbc","border":"#f26dbc","highlight":{"background":"#f26dbc","border":"#f26dbc"},"hover":{"background":"#f26dbc","border":"#f26dbc"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3E5:0","label":"0x03E5\nDomain-0","title":"CAN_ID: 0x03E5\ndomain: 0","color":{"background":"#FFFFFF","border":"#9d6df2","highlight":{"background":"#FFFFFF","border":"#9d6df2"},"hover":{"background":"#FFFFFF","border":"#9d6df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x139:0","label":"0x0139\nDomain-0","title":"CAN_ID: 0x0139\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2c36d","highlight":{"background":"#FFFFFF","border":"#f2c36d"},"hover":{"background":"#FFFFFF","border":"#f2c36d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x13D:0","label":"0x013D\nDomain-0","title":"CAN_ID: 0x013D\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2c66d","highlight":{"background":"#FFFFFF","border":"#f2c66d"},"hover":{"background":"#FFFFFF","border":"#f2c66d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0xAD:1","label":"0x00AD\nDomain-1","title":"CAN_ID: 0x00AD\ndomain: 1","color":{"background":"#f26da1","border":"#f26da1","highlight":{"background":"#f26da1","border":"#f26da1"},"hover":{"background":"#f26da1","border":"#f26da1"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3FB:1","label":"0x03FB\nDomain-1","title":"CAN_ID: 0x03FB\ndomain: 1","color":{"background":"#a46df2","border":"#a46df2","highlight":{"background":"#a46df2","border":"#a46df2"},"hover":{"background":"#a46df2","border":"#a46df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x520:4","label":"0x0520\nDomain-4","title":"CAN_ID: 0x0520\ndomain: 4","color":{"background":"#cc6df2","border":"#cc6df2","highlight":{"background":"#cc6df2","border":"#cc6df2"},"hover":{"background":"#cc6df2","border":"#cc6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54C9:2","label":"0x12DD54C9\nDomain-2","title":"CAN_ID: 0x12DD54C9\ndomain: 2","color":{"background":"#f2976d","border":"#f2976d","highlight":{"background":"#f2976d","border":"#f2976d"},"hover":{"background":"#f2976d","border":"#f2976d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555541:1","label":"0x1A555541\nDomain-1","title":"CAN_ID: 0x1A555541\ndomain: 1","color":{"background":"#6df2a5","border":"#6df2a5","highlight":{"background":"#6df2a5","border":"#6df2a5"},"hover":{"background":"#6df2a5","border":"#6df2a5"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x24F:0","label":"0x024F\nDomain-0","title":"CAN_ID: 0x024F\ndomain: 0","color":{"background":"#FFFFFF","border":"#6daff2","highlight":{"background":"#FFFFFF","border":"#6daff2"},"hover":{"background":"#FFFFFF","border":"#6daff2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x551:0","label":"0x0551\nDomain-0","title":"CAN_ID: 0x0551\ndomain: 0","color":{"background":"#FFFFFF","border":"#d66df2","highlight":{"background":"#FFFFFF","border":"#d66df2"},"hover":{"background":"#FFFFFF","border":"#d66df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1A555564:4","label":"0x1A555564\nDomain-4","title":"CAN_ID: 0x1A555564\ndomain: 4","color":{"background":"#6df2b1","border":"#6df2b1","highlight":{"background":"#6df2b1","border":"#6df2b1"},"hover":{"background":"#6df2b1","border":"#6df2b1"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54AA:1","label":"0x12DD54AA\nDomain-1","title":"CAN_ID: 0x12DD54AA\ndomain: 1","color":{"background":"#f28f6d","border":"#f28f6d","highlight":{"background":"#f28f6d","border":"#f28f6d"},"hover":{"background":"#f28f6d","border":"#f28f6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x65D:2","label":"0x065D\nDomain-2","title":"CAN_ID: 0x065D\ndomain: 2","color":{"background":"#f26dc8","border":"#f26dc8","highlight":{"background":"#f26dc8","border":"#f26dc8"},"hover":{"background":"#f26dc8","border":"#f26dc8"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3C0:3","label":"0x03C0\nDomain-3","title":"CAN_ID: 0x03C0\ndomain: 3","color":{"background":"#896df2","border":"#896df2","highlight":{"background":"#896df2","border":"#896df2"},"hover":{"background":"#896df2","border":"#896df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x86:4","label":"0x0086\nDomain-4","title":"CAN_ID: 0x0086\ndomain: 4","color":{"background":"#f26da8","border":"#f26da8","highlight":{"background":"#f26da8","border":"#f26da8"},"hover":{"background":"#f26da8","border":"#f26da8"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x421:1","label":"0x0421\nDomain-1","title":"CAN_ID: 0x0421\ndomain: 1","color":{"background":"#b36df2","border":"#b36df2","highlight":{"background":"#b36df2","border":"#b36df2"},"hover":{"background":"#b36df2","border":"#b36df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x40:3","label":"0x0040\nDomain-3","title":"CAN_ID: 0x0040\ndomain: 3","color":{"background":"#a96df2","border":"#a96df2","highlight":{"background":"#a96df2","border":"#a96df2"},"hover":{"background":"#a96df2","border":"#a96df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B2:0","label":"0x06B2\nDomain-0","title":"CAN_ID: 0x06B2\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26dbc","highlight":{"background":"#FFFFFF","border":"#f26dbc"},"hover":{"background":"#FFFFFF","border":"#f26dbc"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x12DD5501:2","label":"0x12DD5501\nDomain-2","title":"CAN_ID: 0x12DD5501\ndomain: 2","color":{"background":"#f2ad6d","border":"#f2ad6d","highlight":{"background":"#f2ad6d","border":"#f2ad6d"},"hover":{"background":"#f2ad6d","border":"#f2ad6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x10B:1","label":"0x010B\nDomain-1","title":"CAN_ID: 0x010B\ndomain: 1","color":{"background":"#f26f6d","border":"#f26f6d","highlight":{"background":"#f26f6d","border":"#f26f6d"},"hover":{"background":"#f26f6d","border":"#f26f6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x139:4","label":"0x0139\nDomain-4","title":"CAN_ID: 0x0139\ndomain: 4","color":{"background":"#f2c36d","border":"#f2c36d","highlight":{"background":"#f2c36d","border":"#f2c36d"},"hover":{"background":"#f2c36d","border":"#f2c36d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x13D:4","label":"0x013D\nDomain-4","title":"CAN_ID: 0x013D\ndomain: 4","color":{"background":"#f2c66d","border":"#f2c66d","highlight":{"background":"#f2c66d","border":"#f2c66d"},"hover":{"background":"#f2c66d","border":"#f2c66d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54D1:2","label":"0x12DD54D1\nDomain-2","title":"CAN_ID: 0x12DD54D1\ndomain: 2","color":{"background":"#f29c6d","border":"#f29c6d","highlight":{"background":"#f29c6d","border":"#f29c6d"},"hover":{"background":"#f29c6d","border":"#f29c6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x176:2","label":"0x0176\nDomain-2","title":"CAN_ID: 0x0176\ndomain: 2","color":{"background":"#93f26d","border":"#93f26d","highlight":{"background":"#93f26d","border":"#93f26d"},"hover":{"background":"#93f26d","border":"#93f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x641:3","label":"0x0641\nDomain-3","title":"CAN_ID: 0x0641\ndomain: 3","color":{"background":"#f26dd7","border":"#f26dd7","highlight":{"background":"#f26dd7","border":"#f26dd7"},"hover":{"background":"#f26dd7","border":"#f26dd7"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555AC:2","label":"0x1A5555AC\nDomain-2","title":"CAN_ID: 0x1A5555AC\ndomain: 2","color":{"background":"#6df2be","border":"#6df2be","highlight":{"background":"#6df2be","border":"#6df2be"},"hover":{"background":"#6df2be","border":"#6df2be"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555BF:3","label":"0x1A5555BF\nDomain-3","title":"CAN_ID: 0x1A5555BF\ndomain: 3","color":{"background":"#6df2cd","border":"#6df2cd","highlight":{"background":"#6df2cd","border":"#6df2cd"},"hover":{"background":"#6df2cd","border":"#6df2cd"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B4:1","label":"0x06B4\nDomain-1","title":"CAN_ID: 0x06B4\ndomain: 1","color":{"background":"#f26db9","border":"#f26db9","highlight":{"background":"#f26db9","border":"#f26db9"},"hover":{"background":"#f26db9","border":"#f26db9"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD553D:1","label":"0x12DD553D\nDomain-1","title":"CAN_ID: 0x12DD553D\ndomain: 1","color":{"background":"#f2b56d","border":"#f2b56d","highlight":{"background":"#f2b56d","border":"#f2b56d"},"hover":{"background":"#f2b56d","border":"#f2b56d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x24F:4","label":"0x024F\nDomain-4","title":"CAN_ID: 0x024F\ndomain: 4","color":{"background":"#6daff2","border":"#6daff2","highlight":{"background":"#6daff2","border":"#6daff2"},"hover":{"background":"#6daff2","border":"#6daff2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5496:2","label":"0x12DD5496\nDomain-2","title":"CAN_ID: 0x12DD5496\ndomain: 2","color":{"background":"#f2886d","border":"#f2886d","highlight":{"background":"#f2886d","border":"#f2886d"},"hover":{"background":"#f2886d","border":"#f2886d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555B7:2","label":"0x1A5555B7\nDomain-2","title":"CAN_ID: 0x1A5555B7\ndomain: 2","color":{"background":"#6df2c5","border":"#6df2c5","highlight":{"background":"#6df2c5","border":"#6df2c5"},"hover":{"background":"#6df2c5","border":"#6df2c5"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x14C:2","label":"0x014C\nDomain-2","title":"CAN_ID: 0x014C\ndomain: 2","color":{"background":"#f2d26d","border":"#f2d26d","highlight":{"background":"#f2d26d","border":"#f2d26d"},"hover":{"background":"#f2d26d","border":"#f2d26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xF6:2","label":"0x00F6\nDomain-2","title":"CAN_ID: 0x00F6\ndomain: 2","color":{"background":"#f26d76","border":"#f26d76","highlight":{"background":"#f26d76","border":"#f26d76"},"hover":{"background":"#f26d76","border":"#f26d76"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555541:0","label":"0x1A555541\nDomain-0","title":"CAN_ID: 0x1A555541\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2a5","highlight":{"background":"#FFFFFF","border":"#6df2a5"},"hover":{"background":"#FFFFFF","border":"#6df2a5"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1A555521:2","label":"0x1A555521\nDomain-2","title":"CAN_ID: 0x1A555521\ndomain: 2","color":{"background":"#6df2a0","border":"#6df2a0","highlight":{"background":"#6df2a0","border":"#6df2a0"},"hover":{"background":"#6df2a0","border":"#6df2a0"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556E9:1","label":"0x1A5556E9\nDomain-1","title":"CAN_ID: 0x1A5556E9\ndomain: 1","color":{"background":"#6df2de","border":"#6df2de","highlight":{"background":"#6df2de","border":"#6df2de"},"hover":{"background":"#6df2de","border":"#6df2de"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x65D:1","label":"0x065D\nDomain-1","title":"CAN_ID: 0x065D\ndomain: 1","color":{"background":"#f26dc8","border":"#f26dc8","highlight":{"background":"#f26dc8","border":"#f26dc8"},"hover":{"background":"#f26dc8","border":"#f26dc8"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x303:4","label":"0x0303\nDomain-4","title":"CAN_ID: 0x0303\ndomain: 4","color":{"background":"#6d89f2","border":"#6d89f2","highlight":{"background":"#6d89f2","border":"#6d89f2"},"hover":{"background":"#6d89f2","border":"#6d89f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5501:1","label":"0x12DD5501\nDomain-1","title":"CAN_ID: 0x12DD5501\ndomain: 1","color":{"background":"#f2ad6d","border":"#f2ad6d","highlight":{"background":"#f2ad6d","border":"#f2ad6d"},"hover":{"background":"#f2ad6d","border":"#f2ad6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54D1:1","label":"0x12DD54D1\nDomain-1","title":"CAN_ID: 0x12DD54D1\ndomain: 1","color":{"background":"#f29c6d","border":"#f29c6d","highlight":{"background":"#f29c6d","border":"#f29c6d"},"hover":{"background":"#f29c6d","border":"#f29c6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x641:2","label":"0x0641\nDomain-2","title":"CAN_ID: 0x0641\ndomain: 2","color":{"background":"#f26dd7","border":"#f26dd7","highlight":{"background":"#f26dd7","border":"#f26dd7"},"hover":{"background":"#f26dd7","border":"#f26dd7"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555AC:1","label":"0x1A5555AC\nDomain-1","title":"CAN_ID: 0x1A5555AC\ndomain: 1","color":{"background":"#6df2be","border":"#6df2be","highlight":{"background":"#6df2be","border":"#6df2be"},"hover":{"background":"#6df2be","border":"#6df2be"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x138:2","label":"0x0138\nDomain-2","title":"CAN_ID: 0x0138\ndomain: 2","color":{"background":"#f2c16d","border":"#f2c16d","highlight":{"background":"#f2c16d","border":"#f2c16d"},"hover":{"background":"#f2c16d","border":"#f2c16d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3FB:4","label":"0x03FB\nDomain-4","title":"CAN_ID: 0x03FB\ndomain: 4","color":{"background":"#a46df2","border":"#a46df2","highlight":{"background":"#a46df2","border":"#a46df2"},"hover":{"background":"#a46df2","border":"#a46df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD553D:0","label":"0x12DD553D\nDomain-0","title":"CAN_ID: 0x12DD553D\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2b56d","highlight":{"background":"#FFFFFF","border":"#f2b56d"},"hover":{"background":"#FFFFFF","border":"#f2b56d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x3F:0","label":"0x003F\nDomain-0","title":"CAN_ID: 0x003F\ndomain: 0","color":{"background":"#FFFFFF","border":"#a16df2","highlight":{"background":"#FFFFFF","border":"#a16df2"},"hover":{"background":"#FFFFFF","border":"#a16df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x116:2","label":"0x0116\nDomain-2","title":"CAN_ID: 0x0116\ndomain: 2","color":{"background":"#f2746d","border":"#f2746d","highlight":{"background":"#f2746d","border":"#f2746d"},"hover":{"background":"#f2746d","border":"#f2746d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5496:1","label":"0x12DD5496\nDomain-1","title":"CAN_ID: 0x12DD5496\ndomain: 1","color":{"background":"#f2886d","border":"#f2886d","highlight":{"background":"#f2886d","border":"#f2886d"},"hover":{"background":"#f2886d","border":"#f2886d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556E9:5","label":"0x1A5556E9\nDomain-5","title":"CAN_ID: 0x1A5556E9\ndomain: 5","color":{"background":"#6df2de","border":"#6df2de","highlight":{"background":"#6df2de","border":"#6df2de"},"hover":{"background":"#6df2de","border":"#6df2de"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555B7:1","label":"0x1A5555B7\nDomain-1","title":"CAN_ID: 0x1A5555B7\ndomain: 1","color":{"background":"#6df2c5","border":"#6df2c5","highlight":{"background":"#6df2c5","border":"#6df2c5"},"hover":{"background":"#6df2c5","border":"#6df2c5"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556E9:0","label":"0x1A5556E9\nDomain-0","title":"CAN_ID: 0x1A5556E9\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2de","highlight":{"background":"#FFFFFF","border":"#6df2de"},"hover":{"background":"#FFFFFF","border":"#6df2de"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0xE4:2","label":"0x00E4\nDomain-2","title":"CAN_ID: 0x00E4\ndomain: 2","color":{"background":"#f26d7e","border":"#f26d7e","highlight":{"background":"#f26d7e","border":"#f26d7e"},"hover":{"background":"#f26d7e","border":"#f26d7e"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3D5:4","label":"0x03D5\nDomain-4","title":"CAN_ID: 0x03D5\ndomain: 4","color":{"background":"#936df2","border":"#936df2","highlight":{"background":"#936df2","border":"#936df2"},"hover":{"background":"#936df2","border":"#936df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x14D:2","label":"0x014D\nDomain-2","title":"CAN_ID: 0x014D\ndomain: 2","color":{"background":"#f2d56d","border":"#f2d56d","highlight":{"background":"#f2d56d","border":"#f2d56d"},"hover":{"background":"#f2d56d","border":"#f2d56d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x32A:0","label":"0x032A\nDomain-0","title":"CAN_ID: 0x032A\ndomain: 0","color":{"background":"#FFFFFF","border":"#6d80f2","highlight":{"background":"#FFFFFF","border":"#6d80f2"},"hover":{"background":"#FFFFFF","border":"#6d80f2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x641:1","label":"0x0641\nDomain-1","title":"CAN_ID: 0x0641\ndomain: 1","color":{"background":"#f26dd7","border":"#f26dd7","highlight":{"background":"#f26dd7","border":"#f26dd7"},"hover":{"background":"#f26dd7","border":"#f26dd7"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x65F:4","label":"0x065F\nDomain-4","title":"CAN_ID: 0x065F\ndomain: 4","color":{"background":"#f26dc6","border":"#f26dc6","highlight":{"background":"#f26dc6","border":"#f26dc6"},"hover":{"background":"#f26dc6","border":"#f26dc6"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x116:1","label":"0x0116\nDomain-1","title":"CAN_ID: 0x0116\ndomain: 1","color":{"background":"#f2746d","border":"#f2746d","highlight":{"background":"#f2746d","border":"#f2746d"},"hover":{"background":"#f2746d","border":"#f2746d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556E9:4","label":"0x1A5556E9\nDomain-4","title":"CAN_ID: 0x1A5556E9\ndomain: 4","color":{"background":"#6df2de","border":"#6df2de","highlight":{"background":"#6df2de","border":"#6df2de"},"hover":{"background":"#6df2de","border":"#6df2de"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556EA:5","label":"0x1A5556EA\nDomain-5","title":"CAN_ID: 0x1A5556EA\ndomain: 5","color":{"background":"#6df2e0","border":"#6df2e0","highlight":{"background":"#6df2e0","border":"#6df2e0"},"hover":{"background":"#6df2e0","border":"#6df2e0"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x366:0","label":"0x0366\nDomain-0","title":"CAN_ID: 0x0366\ndomain: 0","color":{"background":"#FFFFFF","border":"#6d6df2","highlight":{"background":"#FFFFFF","border":"#6d6df2"},"hover":{"background":"#FFFFFF","border":"#6d6df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x25D:2","label":"0x025D\nDomain-2","title":"CAN_ID: 0x025D\ndomain: 2","color":{"background":"#6dacf2","border":"#6dacf2","highlight":{"background":"#6dacf2","border":"#6dacf2"},"hover":{"background":"#6dacf2","border":"#6dacf2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x9F:4","label":"0x009F\nDomain-4","title":"CAN_ID: 0x009F\ndomain: 4","color":{"background":"#f26da6","border":"#f26da6","highlight":{"background":"#f26da6","border":"#f26da6"},"hover":{"background":"#f26da6","border":"#f26da6"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x32A:4","label":"0x032A\nDomain-4","title":"CAN_ID: 0x032A\ndomain: 4","color":{"background":"#6d80f2","border":"#6d80f2","highlight":{"background":"#6d80f2","border":"#6d80f2"},"hover":{"background":"#6d80f2","border":"#6d80f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12B:1","label":"0x012B\nDomain-1","title":"CAN_ID: 0x012B\ndomain: 1","color":{"background":"#f27e6d","border":"#f27e6d","highlight":{"background":"#f27e6d","border":"#f27e6d"},"hover":{"background":"#f27e6d","border":"#f27e6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x10D:1","label":"0x010D\nDomain-1","title":"CAN_ID: 0x010D\ndomain: 1","color":{"background":"#f2716d","border":"#f2716d","highlight":{"background":"#f2716d","border":"#f2716d"},"hover":{"background":"#f2716d","border":"#f2716d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555628:4","label":"0x1A555628\nDomain-4","title":"CAN_ID: 0x1A555628\ndomain: 4","color":{"background":"#6df2cf","border":"#6df2cf","highlight":{"background":"#6df2cf","border":"#6df2cf"},"hover":{"background":"#6df2cf","border":"#6df2cf"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xE4:1","label":"0x00E4\nDomain-1","title":"CAN_ID: 0x00E4\ndomain: 1","color":{"background":"#f26d7e","border":"#f26d7e","highlight":{"background":"#f26d7e","border":"#f26d7e"},"hover":{"background":"#f26d7e","border":"#f26d7e"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556EA:0","label":"0x1A5556EA\nDomain-0","title":"CAN_ID: 0x1A5556EA\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2e0","highlight":{"background":"#FFFFFF","border":"#6df2e0"},"hover":{"background":"#FFFFFF","border":"#6df2e0"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x3D5:3","label":"0x03D5\nDomain-3","title":"CAN_ID: 0x03D5\ndomain: 3","color":{"background":"#936df2","border":"#936df2","highlight":{"background":"#936df2","border":"#936df2"},"hover":{"background":"#936df2","border":"#936df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x366:4","label":"0x0366\nDomain-4","title":"CAN_ID: 0x0366\ndomain: 4","color":{"background":"#6d6df2","border":"#6d6df2","highlight":{"background":"#6d6df2","border":"#6d6df2"},"hover":{"background":"#6d6df2","border":"#6d6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x14D:1","label":"0x014D\nDomain-1","title":"CAN_ID: 0x014D\ndomain: 1","color":{"background":"#f2d56d","border":"#f2d56d","highlight":{"background":"#f2d56d","border":"#f2d56d"},"hover":{"background":"#f2d56d","border":"#f2d56d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5497:2","label":"0x12DD5497\nDomain-2","title":"CAN_ID: 0x12DD5497\ndomain: 2","color":{"background":"#f28a6d","border":"#f28a6d","highlight":{"background":"#f28a6d","border":"#f28a6d"},"hover":{"background":"#f28a6d","border":"#f28a6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x16A9545F:1","label":"0x16A9545F\nDomain-1","title":"CAN_ID: 0x16A9545F\ndomain: 1","color":{"background":"#e0f26d","border":"#e0f26d","highlight":{"background":"#e0f26d","border":"#e0f26d"},"hover":{"background":"#e0f26d","border":"#e0f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xFC:1","label":"0x00FC\nDomain-1","title":"CAN_ID: 0x00FC\ndomain: 1","color":{"background":"#f26d71","border":"#f26d71","highlight":{"background":"#f26d71","border":"#f26d71"},"hover":{"background":"#f26d71","border":"#f26d71"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12B:5","label":"0x012B\nDomain-5","title":"CAN_ID: 0x012B\ndomain: 5","color":{"background":"#f27e6d","border":"#f27e6d","highlight":{"background":"#f27e6d","border":"#f27e6d"},"hover":{"background":"#f27e6d","border":"#f27e6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54D6:2","label":"0x12DD54D6\nDomain-2","title":"CAN_ID: 0x12DD54D6\ndomain: 2","color":{"background":"#f29e6d","border":"#f29e6d","highlight":{"background":"#f29e6d","border":"#f29e6d"},"hover":{"background":"#f29e6d","border":"#f29e6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1B000010:2","label":"0x1B000010\nDomain-2","title":"CAN_ID: 0x1B000010\ndomain: 2","color":{"background":"#6deaf2","border":"#6deaf2","highlight":{"background":"#6deaf2","border":"#6deaf2"},"hover":{"background":"#6deaf2","border":"#6deaf2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x16A954C4:4","label":"0x16A954C4\nDomain-4","title":"CAN_ID: 0x16A954C4\ndomain: 4","color":{"background":"#c9f26d","border":"#c9f26d","highlight":{"background":"#c9f26d","border":"#c9f26d"},"hover":{"background":"#c9f26d","border":"#c9f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A4:1","label":"0x01A4\nDomain-1","title":"CAN_ID: 0x01A4\ndomain: 1","color":{"background":"#6df291","border":"#6df291","highlight":{"background":"#6df291","border":"#6df291"},"hover":{"background":"#6df291","border":"#6df291"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556EA:4","label":"0x1A5556EA\nDomain-4","title":"CAN_ID: 0x1A5556EA\ndomain: 4","color":{"background":"#6df2e0","border":"#6df2e0","highlight":{"background":"#6df2e0","border":"#6df2e0"},"hover":{"background":"#6df2e0","border":"#6df2e0"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x16A954C2:4","label":"0x16A954C2\nDomain-4","title":"CAN_ID: 0x16A954C2\ndomain: 4","color":{"background":"#cef26d","border":"#cef26d","highlight":{"background":"#cef26d","border":"#cef26d"},"hover":{"background":"#cef26d","border":"#cef26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x31B:0","label":"0x031B\nDomain-0","title":"CAN_ID: 0x031B\ndomain: 0","color":{"background":"#FFFFFF","border":"#6d85f2","highlight":{"background":"#FFFFFF","border":"#6d85f2"},"hover":{"background":"#FFFFFF","border":"#6d85f2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x3D4:0","label":"0x03D4\nDomain-0","title":"CAN_ID: 0x03D4\ndomain: 0","color":{"background":"#FFFFFF","border":"#906df2","highlight":{"background":"#FFFFFF","border":"#906df2"},"hover":{"background":"#FFFFFF","border":"#906df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x5A7:2","label":"0x05A7\nDomain-2","title":"CAN_ID: 0x05A7\ndomain: 2","color":{"background":"#ee6df2","border":"#ee6df2","highlight":{"background":"#ee6df2","border":"#ee6df2"},"hover":{"background":"#ee6df2","border":"#ee6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x545:0","label":"0x0545\nDomain-0","title":"CAN_ID: 0x0545\ndomain: 0","color":{"background":"#FFFFFF","border":"#ce6df2","highlight":{"background":"#FFFFFF","border":"#ce6df2"},"hover":{"background":"#FFFFFF","border":"#ce6df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x2C2:1","label":"0x02C2\nDomain-1","title":"CAN_ID: 0x02C2\ndomain: 1","color":{"background":"#6d96f2","border":"#6d96f2","highlight":{"background":"#6d96f2","border":"#6d96f2"},"hover":{"background":"#6d96f2","border":"#6d96f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3E5:4","label":"0x03E5\nDomain-4","title":"CAN_ID: 0x03E5\ndomain: 4","color":{"background":"#9d6df2","border":"#9d6df2","highlight":{"background":"#9d6df2","border":"#9d6df2"},"hover":{"background":"#9d6df2","border":"#9d6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x14D:0","label":"0x014D\nDomain-0","title":"CAN_ID: 0x014D\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2d56d","highlight":{"background":"#FFFFFF","border":"#f2d56d"},"hover":{"background":"#FFFFFF","border":"#f2d56d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x3D4:4","label":"0x03D4\nDomain-4","title":"CAN_ID: 0x03D4\ndomain: 4","color":{"background":"#906df2","border":"#906df2","highlight":{"background":"#906df2","border":"#906df2"},"hover":{"background":"#906df2","border":"#906df2"}},"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":"#866df2","border":"#866df2","highlight":{"background":"#866df2","border":"#866df2"},"hover":{"background":"#866df2","border":"#866df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555A6:4","label":"0x1A5555A6\nDomain-4","title":"CAN_ID: 0x1A5555A6\ndomain: 4","color":{"background":"#6df2b9","border":"#6df2b9","highlight":{"background":"#6df2b9","border":"#6df2b9"},"hover":{"background":"#6df2b9","border":"#6df2b9"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xFC:0","label":"0x00FC\nDomain-0","title":"CAN_ID: 0x00FC\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26d71","highlight":{"background":"#FFFFFF","border":"#f26d71"},"hover":{"background":"#FFFFFF","border":"#f26d71"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x12B:4","label":"0x012B\nDomain-4","title":"CAN_ID: 0x012B\ndomain: 4","color":{"background":"#f27e6d","border":"#f27e6d","highlight":{"background":"#f27e6d","border":"#f27e6d"},"hover":{"background":"#f27e6d","border":"#f27e6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x545:4","label":"0x0545\nDomain-4","title":"CAN_ID: 0x0545\ndomain: 4","color":{"background":"#ce6df2","border":"#ce6df2","highlight":{"background":"#ce6df2","border":"#ce6df2"},"hover":{"background":"#ce6df2","border":"#ce6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x551:4","label":"0x0551\nDomain-4","title":"CAN_ID: 0x0551\ndomain: 4","color":{"background":"#d66df2","border":"#d66df2","highlight":{"background":"#d66df2","border":"#d66df2"},"hover":{"background":"#d66df2","border":"#d66df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x643:1","label":"0x0643\nDomain-1","title":"CAN_ID: 0x0643\ndomain: 1","color":{"background":"#f26dd5","border":"#f26dd5","highlight":{"background":"#f26dd5","border":"#f26dd5"},"hover":{"background":"#f26dd5","border":"#f26dd5"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xDB:2","label":"0x00DB\nDomain-2","title":"CAN_ID: 0x00DB\ndomain: 2","color":{"background":"#f26d80","border":"#f26d80","highlight":{"background":"#f26d80","border":"#f26d80"},"hover":{"background":"#f26d80","border":"#f26d80"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x102:2","label":"0x0102\nDomain-2","title":"CAN_ID: 0x0102\ndomain: 2","color":{"background":"#f26d6d","border":"#f26d6d","highlight":{"background":"#f26d6d","border":"#f26d6d"},"hover":{"background":"#f26d6d","border":"#f26d6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B2:4","label":"0x06B2\nDomain-4","title":"CAN_ID: 0x06B2\ndomain: 4","color":{"background":"#f26dbc","border":"#f26dbc","highlight":{"background":"#f26dbc","border":"#f26dbc"},"hover":{"background":"#f26dbc","border":"#f26dbc"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A4:0","label":"0x01A4\nDomain-0","title":"CAN_ID: 0x01A4\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df291","highlight":{"background":"#FFFFFF","border":"#6df291"},"hover":{"background":"#FFFFFF","border":"#6df291"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0xFC:4","label":"0x00FC\nDomain-4","title":"CAN_ID: 0x00FC\ndomain: 4","color":{"background":"#f26d71","border":"#f26d71","highlight":{"background":"#f26d71","border":"#f26d71"},"hover":{"background":"#f26d71","border":"#f26d71"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1F0:4","label":"0x01F0\nDomain-4","title":"CAN_ID: 0x01F0\ndomain: 4","color":{"background":"#6dcdf2","border":"#6dcdf2","highlight":{"background":"#6dcdf2","border":"#6dcdf2"},"hover":{"background":"#6dcdf2","border":"#6dcdf2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3C0:2","label":"0x03C0\nDomain-2","title":"CAN_ID: 0x03C0\ndomain: 2","color":{"background":"#896df2","border":"#896df2","highlight":{"background":"#896df2","border":"#896df2"},"hover":{"background":"#896df2","border":"#896df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x40:2","label":"0x0040\nDomain-2","title":"CAN_ID: 0x0040\ndomain: 2","color":{"background":"#a96df2","border":"#a96df2","highlight":{"background":"#a96df2","border":"#a96df2"},"hover":{"background":"#a96df2","border":"#a96df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x16A954AD:4","label":"0x16A954AD\nDomain-4","title":"CAN_ID: 0x16A954AD\ndomain: 4","color":{"background":"#d8f26d","border":"#d8f26d","highlight":{"background":"#d8f26d","border":"#d8f26d"},"hover":{"background":"#d8f26d","border":"#d8f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x176:1","label":"0x0176\nDomain-1","title":"CAN_ID: 0x0176\ndomain: 1","color":{"background":"#93f26d","border":"#93f26d","highlight":{"background":"#93f26d","border":"#93f26d"},"hover":{"background":"#93f26d","border":"#93f26d"}},"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":"0x1A5555BF:2","label":"0x1A5555BF\nDomain-2","title":"CAN_ID: 0x1A5555BF\ndomain: 2","color":{"background":"#6df2cd","border":"#6df2cd","highlight":{"background":"#6df2cd","border":"#6df2cd"},"hover":{"background":"#6df2cd","border":"#6df2cd"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B4:0","label":"0x06B4\nDomain-0","title":"CAN_ID: 0x06B4\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26db9","highlight":{"background":"#FFFFFF","border":"#f26db9"},"hover":{"background":"#FFFFFF","border":"#f26db9"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1A55566B:2","label":"0x1A55566B\nDomain-2","title":"CAN_ID: 0x1A55566B\ndomain: 2","color":{"background":"#6df2d4","border":"#6df2d4","highlight":{"background":"#6df2d4","border":"#6df2d4"},"hover":{"background":"#6df2d4","border":"#6df2d4"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555541:4","label":"0x1A555541\nDomain-4","title":"CAN_ID: 0x1A555541\ndomain: 4","color":{"background":"#6df2a5","border":"#6df2a5","highlight":{"background":"#6df2a5","border":"#6df2a5"},"hover":{"background":"#6df2a5","border":"#6df2a5"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x20D:2","label":"0x020D\nDomain-2","title":"CAN_ID: 0x020D\ndomain: 2","color":{"background":"#6dbef2","border":"#6dbef2","highlight":{"background":"#6dbef2","border":"#6dbef2"},"hover":{"background":"#6dbef2","border":"#6dbef2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x643:0","label":"0x0643\nDomain-0","title":"CAN_ID: 0x0643\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26dd5","highlight":{"background":"#FFFFFF","border":"#f26dd5"},"hover":{"background":"#FFFFFF","border":"#f26dd5"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x6B2:3","label":"0x06B2\nDomain-3","title":"CAN_ID: 0x06B2\ndomain: 3","color":{"background":"#f26dbc","border":"#f26dbc","highlight":{"background":"#f26dbc","border":"#f26dbc"},"hover":{"background":"#f26dbc","border":"#f26dbc"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x14C:1","label":"0x014C\nDomain-1","title":"CAN_ID: 0x014C\ndomain: 1","color":{"background":"#f2d26d","border":"#f2d26d","highlight":{"background":"#f2d26d","border":"#f2d26d"},"hover":{"background":"#f2d26d","border":"#f2d26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5501:5","label":"0x12DD5501\nDomain-5","title":"CAN_ID: 0x12DD5501\ndomain: 5","color":{"background":"#f2ad6d","border":"#f2ad6d","highlight":{"background":"#f2ad6d","border":"#f2ad6d"},"hover":{"background":"#f2ad6d","border":"#f2ad6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0xF6:1","label":"0x00F6\nDomain-1","title":"CAN_ID: 0x00F6\ndomain: 1","color":{"background":"#f26d76","border":"#f26d76","highlight":{"background":"#f26d76","border":"#f26d76"},"hover":{"background":"#f26d76","border":"#f26d76"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x10B:4","label":"0x010B\nDomain-4","title":"CAN_ID: 0x010B\ndomain: 4","color":{"background":"#f26f6d","border":"#f26f6d","highlight":{"background":"#f26f6d","border":"#f26f6d"},"hover":{"background":"#f26f6d","border":"#f26f6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3BE:4","label":"0x03BE\nDomain-4","title":"CAN_ID: 0x03BE\ndomain: 4","color":{"background":"#866df2","border":"#866df2","highlight":{"background":"#866df2","border":"#866df2"},"hover":{"background":"#866df2","border":"#866df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x520:2","label":"0x0520\nDomain-2","title":"CAN_ID: 0x0520\ndomain: 2","color":{"background":"#cc6df2","border":"#cc6df2","highlight":{"background":"#cc6df2","border":"#cc6df2"},"hover":{"background":"#cc6df2","border":"#cc6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x6B4:4","label":"0x06B4\nDomain-4","title":"CAN_ID: 0x06B4\ndomain: 4","color":{"background":"#f26db9","border":"#f26db9","highlight":{"background":"#f26db9","border":"#f26db9"},"hover":{"background":"#f26db9","border":"#f26db9"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54C9:0","label":"0x12DD54C9\nDomain-0","title":"CAN_ID: 0x12DD54C9\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2976d","highlight":{"background":"#FFFFFF","border":"#f2976d"},"hover":{"background":"#FFFFFF","border":"#f2976d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x12DD553D:4","label":"0x12DD553D\nDomain-4","title":"CAN_ID: 0x12DD553D\ndomain: 4","color":{"background":"#f2b56d","border":"#f2b56d","highlight":{"background":"#f2b56d","border":"#f2b56d"},"hover":{"background":"#f2b56d","border":"#f2b56d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555521:1","label":"0x1A555521\nDomain-1","title":"CAN_ID: 0x1A555521\ndomain: 1","color":{"background":"#6df2a0","border":"#6df2a0","highlight":{"background":"#6df2a0","border":"#6df2a0"},"hover":{"background":"#6df2a0","border":"#6df2a0"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555564:2","label":"0x1A555564\nDomain-2","title":"CAN_ID: 0x1A555564\ndomain: 2","color":{"background":"#6df2b1","border":"#6df2b1","highlight":{"background":"#6df2b1","border":"#6df2b1"},"hover":{"background":"#6df2b1","border":"#6df2b1"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x65D:0","label":"0x065D\nDomain-0","title":"CAN_ID: 0x065D\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26dc8","highlight":{"background":"#FFFFFF","border":"#f26dc8"},"hover":{"background":"#FFFFFF","border":"#f26dc8"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x3C0:1","label":"0x03C0\nDomain-1","title":"CAN_ID: 0x03C0\ndomain: 1","color":{"background":"#896df2","border":"#896df2","highlight":{"background":"#896df2","border":"#896df2"},"hover":{"background":"#896df2","border":"#896df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x86:2","label":"0x0086\nDomain-2","title":"CAN_ID: 0x0086\ndomain: 2","color":{"background":"#f26da8","border":"#f26da8","highlight":{"background":"#f26da8","border":"#f26da8"},"hover":{"background":"#f26da8","border":"#f26da8"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x40:1","label":"0x0040\nDomain-1","title":"CAN_ID: 0x0040\ndomain: 1","color":{"background":"#a96df2","border":"#a96df2","highlight":{"background":"#a96df2","border":"#a96df2"},"hover":{"background":"#a96df2","border":"#a96df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5501:0","label":"0x12DD5501\nDomain-0","title":"CAN_ID: 0x12DD5501\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2ad6d","highlight":{"background":"#FFFFFF","border":"#f2ad6d"},"hover":{"background":"#FFFFFF","border":"#f2ad6d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x139:2","label":"0x0139\nDomain-2","title":"CAN_ID: 0x0139\ndomain: 2","color":{"background":"#f2c36d","border":"#f2c36d","highlight":{"background":"#f2c36d","border":"#f2c36d"},"hover":{"background":"#f2c36d","border":"#f2c36d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x13D:2","label":"0x013D\nDomain-2","title":"CAN_ID: 0x013D\ndomain: 2","color":{"background":"#f2c66d","border":"#f2c66d","highlight":{"background":"#f2c66d","border":"#f2c66d"},"hover":{"background":"#f2c66d","border":"#f2c66d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54D1:0","label":"0x12DD54D1\nDomain-0","title":"CAN_ID: 0x12DD54D1\ndomain: 0","color":{"background":"#FFFFFF","border":"#f29c6d","highlight":{"background":"#FFFFFF","border":"#f29c6d"},"hover":{"background":"#FFFFFF","border":"#f29c6d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x176:0","label":"0x0176\nDomain-0","title":"CAN_ID: 0x0176\ndomain: 0","color":{"background":"#FFFFFF","border":"#93f26d","highlight":{"background":"#FFFFFF","border":"#93f26d"},"hover":{"background":"#FFFFFF","border":"#93f26d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x206:1","label":"0x0206\nDomain-1","title":"CAN_ID: 0x0206\ndomain: 1","color":{"background":"#6dc5f2","border":"#6dc5f2","highlight":{"background":"#6dc5f2","border":"#6dc5f2"},"hover":{"background":"#6dc5f2","border":"#6dc5f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555AC:0","label":"0x1A5555AC\nDomain-0","title":"CAN_ID: 0x1A5555AC\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2be","highlight":{"background":"#FFFFFF","border":"#6df2be"},"hover":{"background":"#FFFFFF","border":"#6df2be"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x138:1","label":"0x0138\nDomain-1","title":"CAN_ID: 0x0138\ndomain: 1","color":{"background":"#f2c16d","border":"#f2c16d","highlight":{"background":"#f2c16d","border":"#f2c16d"},"hover":{"background":"#f2c16d","border":"#f2c16d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555BF:1","label":"0x1A5555BF\nDomain-1","title":"CAN_ID: 0x1A5555BF\ndomain: 1","color":{"background":"#6df2cd","border":"#6df2cd","highlight":{"background":"#6df2cd","border":"#6df2cd"},"hover":{"background":"#6df2cd","border":"#6df2cd"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555A6:2","label":"0x1A5555A6\nDomain-2","title":"CAN_ID: 0x1A5555A6\ndomain: 2","color":{"background":"#6df2b9","border":"#6df2b9","highlight":{"background":"#6df2b9","border":"#6df2b9"},"hover":{"background":"#6df2b9","border":"#6df2b9"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54C9:4","label":"0x12DD54C9\nDomain-4","title":"CAN_ID: 0x12DD54C9\ndomain: 4","color":{"background":"#f2976d","border":"#f2976d","highlight":{"background":"#f2976d","border":"#f2976d"},"hover":{"background":"#f2976d","border":"#f2976d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5496:0","label":"0x12DD5496\nDomain-0","title":"CAN_ID: 0x12DD5496\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2886d","highlight":{"background":"#FFFFFF","border":"#f2886d"},"hover":{"background":"#FFFFFF","border":"#f2886d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x65D:4","label":"0x065D\nDomain-4","title":"CAN_ID: 0x065D\ndomain: 4","color":{"background":"#f26dc8","border":"#f26dc8","highlight":{"background":"#f26dc8","border":"#f26dc8"},"hover":{"background":"#f26dc8","border":"#f26dc8"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5501:4","label":"0x12DD5501\nDomain-4","title":"CAN_ID: 0x12DD5501\ndomain: 4","color":{"background":"#f2ad6d","border":"#f2ad6d","highlight":{"background":"#f2ad6d","border":"#f2ad6d"},"hover":{"background":"#f2ad6d","border":"#f2ad6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x641:5","label":"0x0641\nDomain-5","title":"CAN_ID: 0x0641\ndomain: 5","color":{"background":"#f26dd7","border":"#f26dd7","highlight":{"background":"#f26dd7","border":"#f26dd7"},"hover":{"background":"#f26dd7","border":"#f26dd7"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5555AC:4","label":"0x1A5555AC\nDomain-4","title":"CAN_ID: 0x1A5555AC\ndomain: 4","color":{"background":"#6df2be","border":"#6df2be","highlight":{"background":"#6df2be","border":"#6df2be"},"hover":{"background":"#6df2be","border":"#6df2be"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x520:1","label":"0x0520\nDomain-1","title":"CAN_ID: 0x0520\ndomain: 1","color":{"background":"#cc6df2","border":"#cc6df2","highlight":{"background":"#cc6df2","border":"#cc6df2"},"hover":{"background":"#cc6df2","border":"#cc6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555521:0","label":"0x1A555521\nDomain-0","title":"CAN_ID: 0x1A555521\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2a0","highlight":{"background":"#FFFFFF","border":"#6df2a0"},"hover":{"background":"#FFFFFF","border":"#6df2a0"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x12DD5496:4","label":"0x12DD5496\nDomain-4","title":"CAN_ID: 0x12DD5496\ndomain: 4","color":{"background":"#f2886d","border":"#f2886d","highlight":{"background":"#f2886d","border":"#f2886d"},"hover":{"background":"#f2886d","border":"#f2886d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555564:1","label":"0x1A555564\nDomain-1","title":"CAN_ID: 0x1A555564\ndomain: 1","color":{"background":"#6df2b1","border":"#6df2b1","highlight":{"background":"#6df2b1","border":"#6df2b1"},"hover":{"background":"#6df2b1","border":"#6df2b1"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x40:0","label":"0x0040\nDomain-0","title":"CAN_ID: 0x0040\ndomain: 0","color":{"background":"#FFFFFF","border":"#a96df2","highlight":{"background":"#FFFFFF","border":"#a96df2"},"hover":{"background":"#FFFFFF","border":"#a96df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x303:2","label":"0x0303\nDomain-2","title":"CAN_ID: 0x0303\ndomain: 2","color":{"background":"#6d89f2","border":"#6d89f2","highlight":{"background":"#6d89f2","border":"#6d89f2"},"hover":{"background":"#6d89f2","border":"#6d89f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x139:1","label":"0x0139\nDomain-1","title":"CAN_ID: 0x0139\ndomain: 1","color":{"background":"#f2c36d","border":"#f2c36d","highlight":{"background":"#f2c36d","border":"#f2c36d"},"hover":{"background":"#f2c36d","border":"#f2c36d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x26B:5","label":"0x026B\nDomain-5","title":"CAN_ID: 0x026B\ndomain: 5","color":{"background":"#6da2f2","border":"#6da2f2","highlight":{"background":"#6da2f2","border":"#6da2f2"},"hover":{"background":"#6da2f2","border":"#6da2f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x24F:1","label":"0x024F\nDomain-1","title":"CAN_ID: 0x024F\ndomain: 1","color":{"background":"#6daff2","border":"#6daff2","highlight":{"background":"#6daff2","border":"#6daff2"},"hover":{"background":"#6daff2","border":"#6daff2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555541:2","label":"0x1A555541\nDomain-2","title":"CAN_ID: 0x1A555541\ndomain: 2","color":{"background":"#6df2a5","border":"#6df2a5","highlight":{"background":"#6df2a5","border":"#6df2a5"},"hover":{"background":"#6df2a5","border":"#6df2a5"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x116:0","label":"0x0116\nDomain-0","title":"CAN_ID: 0x0116\ndomain: 0","color":{"background":"#FFFFFF","border":"#f2746d","highlight":{"background":"#FFFFFF","border":"#f2746d"},"hover":{"background":"#FFFFFF","border":"#f2746d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1A5556E9:3","label":"0x1A5556E9\nDomain-3","title":"CAN_ID: 0x1A5556E9\ndomain: 3","color":{"background":"#6df2de","border":"#6df2de","highlight":{"background":"#6df2de","border":"#6df2de"},"hover":{"background":"#6df2de","border":"#6df2de"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x10B:2","label":"0x010B\nDomain-2","title":"CAN_ID: 0x010B\ndomain: 2","color":{"background":"#f26f6d","border":"#f26f6d","highlight":{"background":"#f26f6d","border":"#f26f6d"},"hover":{"background":"#f26f6d","border":"#f26f6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x641:4","label":"0x0641\nDomain-4","title":"CAN_ID: 0x0641\ndomain: 4","color":{"background":"#f26dd7","border":"#f26dd7","highlight":{"background":"#f26dd7","border":"#f26dd7"},"hover":{"background":"#f26dd7","border":"#f26dd7"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3F:2","label":"0x003F\nDomain-2","title":"CAN_ID: 0x003F\ndomain: 2","color":{"background":"#a16df2","border":"#a16df2","highlight":{"background":"#a16df2","border":"#a16df2"},"hover":{"background":"#a16df2","border":"#a16df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x116:4","label":"0x0116\nDomain-4","title":"CAN_ID: 0x0116\ndomain: 4","color":{"background":"#f2746d","border":"#f2746d","highlight":{"background":"#f2746d","border":"#f2746d"},"hover":{"background":"#f2746d","border":"#f2746d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555564:0","label":"0x1A555564\nDomain-0","title":"CAN_ID: 0x1A555564\ndomain: 0","color":{"background":"#FFFFFF","border":"#6df2b1","highlight":{"background":"#FFFFFF","border":"#6df2b1"},"hover":{"background":"#FFFFFF","border":"#6df2b1"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0xE4:0","label":"0x00E4\nDomain-0","title":"CAN_ID: 0x00E4\ndomain: 0","color":{"background":"#FFFFFF","border":"#f26d7e","highlight":{"background":"#FFFFFF","border":"#f26d7e"},"hover":{"background":"#FFFFFF","border":"#f26d7e"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x12DD5497:1","label":"0x12DD5497\nDomain-1","title":"CAN_ID: 0x12DD5497\ndomain: 1","color":{"background":"#f28a6d","border":"#f28a6d","highlight":{"background":"#f28a6d","border":"#f28a6d"},"hover":{"background":"#f28a6d","border":"#f28a6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x65F:2","label":"0x065F\nDomain-2","title":"CAN_ID: 0x065F\ndomain: 2","color":{"background":"#f26dc6","border":"#f26dc6","highlight":{"background":"#f26dc6","border":"#f26dc6"},"hover":{"background":"#f26dc6","border":"#f26dc6"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x26B:4","label":"0x026B\nDomain-4","title":"CAN_ID: 0x026B\ndomain: 4","color":{"background":"#6da2f2","border":"#6da2f2","highlight":{"background":"#6da2f2","border":"#6da2f2"},"hover":{"background":"#6da2f2","border":"#6da2f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556E9:2","label":"0x1A5556E9\nDomain-2","title":"CAN_ID: 0x1A5556E9\ndomain: 2","color":{"background":"#6df2de","border":"#6df2de","highlight":{"background":"#6df2de","border":"#6df2de"},"hover":{"background":"#6df2de","border":"#6df2de"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556EA:3","label":"0x1A5556EA\nDomain-3","title":"CAN_ID: 0x1A5556EA\ndomain: 3","color":{"background":"#6df2e0","border":"#6df2e0","highlight":{"background":"#6df2e0","border":"#6df2e0"},"hover":{"background":"#6df2e0","border":"#6df2e0"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x5BF:5","label":"0x05BF\nDomain-5","title":"CAN_ID: 0x05BF\ndomain: 5","color":{"background":"#f26dee","border":"#f26dee","highlight":{"background":"#f26dee","border":"#f26dee"},"hover":{"background":"#f26dee","border":"#f26dee"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x14D:4","label":"0x014D\nDomain-4","title":"CAN_ID: 0x014D\ndomain: 4","color":{"background":"#f2d56d","border":"#f2d56d","highlight":{"background":"#f2d56d","border":"#f2d56d"},"hover":{"background":"#f2d56d","border":"#f2d56d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x9F:2","label":"0x009F\nDomain-2","title":"CAN_ID: 0x009F\ndomain: 2","color":{"background":"#f26da6","border":"#f26da6","highlight":{"background":"#f26da6","border":"#f26da6"},"hover":{"background":"#f26da6","border":"#f26da6"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x32A:2","label":"0x032A\nDomain-2","title":"CAN_ID: 0x032A\ndomain: 2","color":{"background":"#6d80f2","border":"#6d80f2","highlight":{"background":"#6d80f2","border":"#6d80f2"},"hover":{"background":"#6d80f2","border":"#6d80f2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x5A7:1","label":"0x05A7\nDomain-1","title":"CAN_ID: 0x05A7\ndomain: 1","color":{"background":"#ee6df2","border":"#ee6df2","highlight":{"background":"#ee6df2","border":"#ee6df2"},"hover":{"background":"#ee6df2","border":"#ee6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A555628:2","label":"0x1A555628\nDomain-2","title":"CAN_ID: 0x1A555628\ndomain: 2","color":{"background":"#6df2cf","border":"#6df2cf","highlight":{"background":"#6df2cf","border":"#6df2cf"},"hover":{"background":"#6df2cf","border":"#6df2cf"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54D6:5","label":"0x12DD54D6\nDomain-5","title":"CAN_ID: 0x12DD54D6\ndomain: 5","color":{"background":"#f29e6d","border":"#f29e6d","highlight":{"background":"#f29e6d","border":"#f29e6d"},"hover":{"background":"#f29e6d","border":"#f29e6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x3F:1","label":"0x003F\nDomain-1","title":"CAN_ID: 0x003F\ndomain: 1","color":{"background":"#a16df2","border":"#a16df2","highlight":{"background":"#a16df2","border":"#a16df2"},"hover":{"background":"#a16df2","border":"#a16df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A4:4","label":"0x01A4\nDomain-4","title":"CAN_ID: 0x01A4\ndomain: 4","color":{"background":"#6df291","border":"#6df291","highlight":{"background":"#6df291","border":"#6df291"},"hover":{"background":"#6df291","border":"#6df291"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x366:2","label":"0x0366\nDomain-2","title":"CAN_ID: 0x0366\ndomain: 2","color":{"background":"#6d6df2","border":"#6d6df2","highlight":{"background":"#6d6df2","border":"#6d6df2"},"hover":{"background":"#6d6df2","border":"#6d6df2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD5497:0","label":"0x12DD5497\nDomain-0","title":"CAN_ID: 0x12DD5497\ndomain: 0","color":{"background":"#FFFFFF","border":"#f28a6d","highlight":{"background":"#FFFFFF","border":"#f28a6d"},"hover":{"background":"#FFFFFF","border":"#f28a6d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x25D:4","label":"0x025D\nDomain-4","title":"CAN_ID: 0x025D\ndomain: 4","color":{"background":"#6dacf2","border":"#6dacf2","highlight":{"background":"#6dacf2","border":"#6dacf2"},"hover":{"background":"#6dacf2","border":"#6dacf2"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x65F:1","label":"0x065F\nDomain-1","title":"CAN_ID: 0x065F\ndomain: 1","color":{"background":"#f26dc6","border":"#f26dc6","highlight":{"background":"#f26dc6","border":"#f26dc6"},"hover":{"background":"#f26dc6","border":"#f26dc6"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54D6:0","label":"0x12DD54D6\nDomain-0","title":"CAN_ID: 0x12DD54D6\ndomain: 0","color":{"background":"#FFFFFF","border":"#f29e6d","highlight":{"background":"#FFFFFF","border":"#f29e6d"},"hover":{"background":"#FFFFFF","border":"#f29e6d"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x102:1","label":"0x0102\nDomain-1","title":"CAN_ID: 0x0102\ndomain: 1","color":{"background":"#f26d6d","border":"#f26d6d","highlight":{"background":"#f26d6d","border":"#f26d6d"},"hover":{"background":"#f26d6d","border":"#f26d6d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x16A954C4:2","label":"0x16A954C4\nDomain-2","title":"CAN_ID: 0x16A954C4\ndomain: 2","color":{"background":"#c9f26d","border":"#c9f26d","highlight":{"background":"#c9f26d","border":"#c9f26d"},"hover":{"background":"#c9f26d","border":"#c9f26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x1A5556EA:2","label":"0x1A5556EA\nDomain-2","title":"CAN_ID: 0x1A5556EA\ndomain: 2","color":{"background":"#6df2e0","border":"#6df2e0","highlight":{"background":"#6df2e0","border":"#6df2e0"},"hover":{"background":"#6df2e0","border":"#6df2e0"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x16A954C2:2","label":"0x16A954C2\nDomain-2","title":"CAN_ID: 0x16A954C2\ndomain: 2","color":{"background":"#cef26d","border":"#cef26d","highlight":{"background":"#cef26d","border":"#cef26d"},"hover":{"background":"#cef26d","border":"#cef26d"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x5BF:4","label":"0x05BF\nDomain-4","title":"CAN_ID: 0x05BF\ndomain: 4","color":{"background":"#f26dee","border":"#f26dee","highlight":{"background":"#f26dee","border":"#f26dee"},"hover":{"background":"#f26dee","border":"#f26dee"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x5A7:0","label":"0x05A7\nDomain-0","title":"CAN_ID: 0x05A7\ndomain: 0","color":{"background":"#FFFFFF","border":"#ee6df2","highlight":{"background":"#FFFFFF","border":"#ee6df2"},"hover":{"background":"#FFFFFF","border":"#ee6df2"}},"borderWidth":3,"shapeProperties":{"borderDashes":[10,6]}},{"id":"0x1A555628:1","label":"0x1A555628\nDomain-1","title":"CAN_ID: 0x1A555628\ndomain: 1","color":{"background":"#6df2cf","border":"#6df2cf","highlight":{"background":"#6df2cf","border":"#6df2cf"},"hover":{"background":"#6df2cf","border":"#6df2cf"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x643:4","label":"0x0643\nDomain-4","title":"CAN_ID: 0x0643\ndomain: 4","color":{"background":"#f26dd5","border":"#f26dd5","highlight":{"background":"#f26dd5","border":"#f26dd5"},"hover":{"background":"#f26dd5","border":"#f26dd5"}},"borderWidth":2,"shapeProperties":{}},{"id":"0x12DD54D6:4","label":"0x12DD54D6\nDomain-4","title":"CAN_ID: 0x12DD54D6\ndomain: 4","color":{"background":"#f29e6d","border":"#f29e6d","highlight":{"background":"#f29e6d","border":"#f29e6d"},"hover":{"background":"#f29e6d","border":"#f29e6d"}},"borderWidth":2,"shapeProperties":{}}]; |
| const graphEdges = [{"id":"f0","from":"0x3C0:4","to":"0x3C0: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: 0x03C0\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001437, 0.000167];\nlen(matched/src/dst):995/1021/1170;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f2","from":"0x3C0:4","to":"0x3C0:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x03C0\nsrc_domain: 4\ndst_domain: 3\nlabel: delay(s)∈[-0.001350, 0.005283];\nlen(matched/src/dst):1021/1021/1099;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f3","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.000767, 0.001476];\nlen(matched/src/dst):1010/1021/1122;\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: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.001073, 0.001742];\nlen(matched/src/dst):10093/11213/10206;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f7","from":"0xFC:2","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: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001159, 0.001243];\nlen(matched/src/dst):11073/11213/11707;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f9","from":"0x14D:1","to":"0x14D: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: 0x014D\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000807, 0.002028];\nlen(matched/src/dst):5537/5853/5607;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f11","from":"0x14D:1","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: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.001278, 0.000819];\nlen(matched/src/dst):4976/5853/5103;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f13","from":"0x139:1","to":"0x139: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: 0x0139\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.001318, 0.001313];\nlen(matched/src/dst):5537/5854/5607;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f15","from":"0x139:1","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: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.000806, 0.001257];\nlen(matched/src/dst):4976/5854/5102;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f17","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.000376, 0.008240];\nlen(matched/src/dst):1021/1021/1297;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f18","from":"0xFD:1","to":"0xFD:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x00FD\nsrc_domain: 1\ndst_domain: 3\nlabel: delay(s)∈[-0.000360, 0.008997];\nlen(matched/src/dst):5223/5853/5495;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f19","from":"0xFD:1","to":"0xFD: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: 0x00FD\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.001352, 0.000986];\nlen(matched/src/dst):5536/5853/5606;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f21","from":"0xFD:1","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: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.000515, 0.001382];\nlen(matched/src/dst):4976/5853/5103;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f23","from":"0x6B2:3","to":"0x6B2: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: 0x06B2\nsrc_domain: 3\ndst_domain: 5\nlabel: delay(s)∈[-0.000368, 0.001753];\nlen(matched/src/dst):109/110/130;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f25","from":"0x6B2:3","to":"0x6B2: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: 0x06B2\nsrc_domain: 3\ndst_domain: 2\nlabel: delay(s)∈[-0.007154, 0.000388];\nlen(matched/src/dst):106/110/112;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f27","from":"0x6B2:3","to":"0x6B2:4","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: 4\nlabel: delay(s)∈[-0.000938, -0.000657];\nlen(matched/src/dst):2/110/102;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f29","from":"0x6B2:3","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: 3\ndst_domain: 1\nlabel: delay(s)∈[-0.007594, 0.000753];\nlen(matched/src/dst):105/110/117;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f31","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.000489, 0.002005];\nlen(matched/src/dst):202/204/225;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f32","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.000800, 0.002278];\nlen(matched/src/dst):1010/1021/1122;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f34","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.099856, 0.001502];\nlen(matched/src/dst):1001/1170/1121;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f36","from":"0xAD:1","to":"0xAD:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x00AD\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[0.000237, 0.002023];\nlen(matched/src/dst):2215/2341/2243;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f37","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.001571, 0.001243];\nlen(matched/src/dst):10093/10206/11214;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f39","from":"0x6B4:4","to":"0x6B4:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x06B4\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.000509, 0.002558];\nlen(matched/src/dst):505/511/561;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f40","from":"0x6B4:2","to":"0x6B4:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x06B4\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000989, 0.000722];\nlen(matched/src/dst):107/561/585;\np_value:0.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.18}},{"id":"f42","from":"0x6B4:2","to":"0x6B4:3","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x06B4\nsrc_domain: 2\ndst_domain: 3\nlabel: delay(s)∈[-0.001538, 0.006854];\nlen(matched/src/dst):529/561/549;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f43","from":"0x421:1","to":"0x421:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0421\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000802, 0.001660];\nlen(matched/src/dst):1108/1171/1122;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f44","from":"0xE4:2","to":"0xE4: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: 0x00E4\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001124, 0.000760];\nlen(matched/src/dst):5536/5606/5853;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f46","from":"0x102:1","to":"0x102: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: 0x0102\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000773, 0.001156];\nlen(matched/src/dst):5537/5854/5607;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f48","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.000278, 0.001426];\nlen(matched/src/dst):4977/5854/5103;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f50","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.001781, 0.005766];\nlen(matched/src/dst):1021/1021/1297;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f51","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.001453, 0.001440];\nlen(matched/src/dst):1009/1021/1121;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f53","from":"0x25D:4","to":"0x25D:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x025D\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.000958, 0.001966];\nlen(matched/src/dst):1682/1701/1869;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f54","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.001604, 0.000414];\nlen(matched/src/dst):9953/10206/11707;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f56","from":"0x643:4","to":"0x643: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: 0x0643\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001291, 0.001394];\nlen(matched/src/dst):100/102/117;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f58","from":"0x12B:4","to":"0x12B:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x012B\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000572, -0.000488];\nlen(matched/src/dst):8/3388/3887;\np_value:0.3826; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.26}},{"id":"f60","from":"0x12B:4","to":"0x12B:5","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x012B\nsrc_domain: 4\ndst_domain: 5\nlabel: delay(s)∈[-0.001000, 0.000310];\nlen(matched/src/dst):296/3388/4307;\np_value:0.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.18}},{"id":"f62","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.000442, 0.008452];\nlen(matched/src/dst):5293/5606/5495;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f63","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.000822, 0.008902];\nlen(matched/src/dst):5103/5103/5495;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f64","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.002364, 0.000152];\nlen(matched/src/dst):101/112/102;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f66","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.002958, 0.000436];\nlen(matched/src/dst):111/112/117;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f68","from":"0x1A555541:1","to":"0x1A555541: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: 0x1A555541\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000365, 0.001559];\nlen(matched/src/dst):554/586/561;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f70","from":"0x1A555541:1","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: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.000655, 0.001677];\nlen(matched/src/dst):498/586/511;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f72","from":"0x641:1","to":"0x641:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0641\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[0.000340, 0.003351];\nlen(matched/src/dst):111/117/112;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f73","from":"0x641:1","to":"0x641:4","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0641\nsrc_domain: 1\ndst_domain: 4\nlabel: delay(s)∈[0.000093, 0.002159];\nlen(matched/src/dst):100/117/102;\np_value:0.9493; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f74","from":"0x14C:4","to":"0x14C:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x014C\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.000788, 0.001701];\nlen(matched/src/dst):1020/1031/1132;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f75","from":"0x1A5556E9:1","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: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.000164, 0.001306];\nlen(matched/src/dst):199/235/204;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f77","from":"0x12DD5501:2","to":"0x12DD5501:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x12DD5501\nsrc_domain: 2\ndst_domain: 5\nlabel: delay(s)∈[0.000011, 0.005167];\nlen(matched/src/dst):112/112/130;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f78","from":"0x12DD5501:4","to":"0x12DD5501:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x12DD5501\nsrc_domain: 4\ndst_domain: 5\nlabel: delay(s)∈[-0.000075, 0.005168];\nlen(matched/src/dst):102/102/130;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f79","from":"0x1A5556EA:1","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: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.001016, 0.002056];\nlen(matched/src/dst):199/234/204;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f81","from":"0xF6:1","to":"0xF6:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x00F6\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[0.000410, 0.002282];\nlen(matched/src/dst):11074/11707/11215;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f82","from":"0x3FB:1","to":"0x3FB:4","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x03FB\nsrc_domain: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.000041, 0.002929];\nlen(matched/src/dst):1245/1464/1276;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f83","from":"0x1A5555B7:1","to":"0x1A5555B7:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5555B7\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.001526, 0.001985];\nlen(matched/src/dst):111/118/112;\np_value:0.9986; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f84","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.000389, 0.002099];\nlen(matched/src/dst):62/63/68;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f85","from":"0x1B000010:3","to":"0x1B000010:2","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x1B000010\nsrc_domain: 3\ndst_domain: 2\nlabel: delay(s)∈[0.178890, 0.199497];\nlen(matched/src/dst):22/550/561;\np_value:0.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f87","from":"0x1B000010:3","to":"0x1B000010:4","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x1B000010\nsrc_domain: 3\ndst_domain: 4\nlabel: delay(s)∈[0.016458, 0.181166];\nlen(matched/src/dst):179/550/510;\np_value:0.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.26}},{"id":"f89","from":"0x10B:1","to":"0x10B:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x010B\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[0.000438, 0.002718];\nlen(matched/src/dst):5537/5854/5608;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f90","from":"0x10B:1","to":"0x10B:4","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x010B\nsrc_domain: 1\ndst_domain: 4\nlabel: delay(s)∈[0.000154, 0.002433];\nlen(matched/src/dst):4976/5854/5103;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f91","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.000314, 0.001844];\nlen(matched/src/dst):101/102/112;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f92","from":"0x3F:2","to":"0x3F: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: 0x003F\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001391, 0.000150];\nlen(matched/src/dst):2769/2804/2927;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f94","from":"0x206:4","to":"0x206: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: 0x0206\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001153, 0.000890];\nlen(matched/src/dst):2488/5102/5853;\np_value:0.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f96","from":"0x12DD5497:1","to":"0x12DD5497: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: 0x12DD5497\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.002096, 0.001047];\nlen(matched/src/dst):1107/1170/1121;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f98","from":"0x551:4","to":"0x551: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: 0x0551\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001453, 0.000226];\nlen(matched/src/dst):73/513/588;\np_value:0.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f100","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.001005, 0.001098];\nlen(matched/src/dst):100/102/117;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f102","from":"0x520:1","to":"0x520: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: 0x0520\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000775, 0.001354];\nlen(matched/src/dst):554/586/561;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f104","from":"0x520:1","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: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.000527, 0.001319];\nlen(matched/src/dst):498/586/510;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f106","from":"0x641:3","to":"0x641:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0641\nsrc_domain: 3\ndst_domain: 5\nlabel: delay(s)∈[-0.000539, 0.001727];\nlen(matched/src/dst):109/110/130;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f107","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.000870, 0.005515];\nlen(matched/src/dst):106/112/110;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f108","from":"0x641:4","to":"0x641:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0641\nsrc_domain: 4\ndst_domain: 3\nlabel: delay(s)∈[-0.000700, 0.006420];\nlen(matched/src/dst):102/102/110;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f109","from":"0x3D4:4","to":"0x3D4: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: 0x03D4\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001022, 0.000389];\nlen(matched/src/dst):99/102/117;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f111","from":"0x14C:1","to":"0x14C:4","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x014C\nsrc_domain: 1\ndst_domain: 4\nlabel: delay(s)∈[0.000080, 0.002554];\nlen(matched/src/dst):1006/1182/1031;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f112","from":"0x1A5556E9:3","to":"0x1A5556E9:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 3\ndst_domain: 5\nlabel: delay(s)∈[-0.000658, 0.002011];\nlen(matched/src/dst):217/219/260;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f113","from":"0x1A5556E9:2","to":"0x1A5556E9:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 2\ndst_domain: 3\nlabel: delay(s)∈[-0.000904, 0.004563];\nlen(matched/src/dst):211/224/219;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f114","from":"0x1A5556E9:4","to":"0x1A5556E9:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 4\ndst_domain: 3\nlabel: delay(s)∈[-0.001375, 0.005657];\nlen(matched/src/dst):204/204/219;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f115","from":"0x1A5556EA:3","to":"0x1A5556EA:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 3\ndst_domain: 5\nlabel: delay(s)∈[-0.000774, 0.001850];\nlen(matched/src/dst):218/220/260;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f116","from":"0x1A5556EA:2","to":"0x1A5556EA:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 2\ndst_domain: 3\nlabel: delay(s)∈[-0.001345, 0.005708];\nlen(matched/src/dst):212/224/220;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f117","from":"0x1A5556EA:4","to":"0x1A5556EA:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 4\ndst_domain: 3\nlabel: delay(s)∈[-0.001098, 0.006667];\nlen(matched/src/dst):204/204/220;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f118","from":"0x12DD553D:4","to":"0x12DD553D: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: 0x12DD553D\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001485, 0.000167];\nlen(matched/src/dst):996/1021/1171;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f120","from":"0x1A555628:1","to":"0x1A555628: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: 0x1A555628\nsrc_domain: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.000912, 0.001377];\nlen(matched/src/dst):100/117/102;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f122","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.000053, 0.002066];\nlen(matched/src/dst):111/117/112;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f124","from":"0x1A5555A6:2","to":"0x1A5555A6:4","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5555A6\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.000687, 0.001958];\nlen(matched/src/dst):101/112/102;\np_value:0.9988; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f125","from":"0x40:2","to":"0x40: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: 0x0040\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001319, 0.001253];\nlen(matched/src/dst):2523/2804/2551;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f127","from":"0x40:2","to":"0x40: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: 0x0040\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001333, 0.000603];\nlen(matched/src/dst):2769/2804/2927;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f129","from":"0x40:2","to":"0x40:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0040\nsrc_domain: 2\ndst_domain: 3\nlabel: delay(s)∈[-0.001514, 0.007104];\nlen(matched/src/dst):2647/2804/2748;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f130","from":"0x10D:2","to":"0x10D:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x010D\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[0.157071, 0.160152];\nlen(matched/src/dst):6928/11215/11707;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f132","from":"0x1A4:2","to":"0x1A4: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: 0x01A4\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001445, 0.000885];\nlen(matched/src/dst):222/225/234;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f134","from":"0x1A555521:2","to":"0x1A555521: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: 0x1A555521\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001389, 0.000160];\nlen(matched/src/dst):111/112/118;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f136","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.001355, 0.002942];\nlen(matched/src/dst):8/8/8;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f137","from":"0x1A555564:4","to":"0x1A555564: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: 0x1A555564\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001079, 0.000354];\nlen(matched/src/dst):100/102/117;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f139","from":"0x1A555564:4","to":"0x1A555564:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A555564\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.000658, 0.002084];\nlen(matched/src/dst):101/102/112;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f140","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.001727, 0.001860];\nlen(matched/src/dst):106/117/107;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f142","from":"0x1A5555BF:2","to":"0x1A5555BF: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: 0x1A5555BF\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.002098, 0.002334];\nlen(matched/src/dst):116/117/122;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f144","from":"0x138:1","to":"0x138:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0138\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000734, 0.002271];\nlen(matched/src/dst):1107/1171/1121;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f145","from":"0x5A7:1","to":"0x5A7: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: 0x05A7\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.001360, 0.001743];\nlen(matched/src/dst):110/117/112;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f147","from":"0x16A9545F:1","to":"0x16A9545F:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x16A9545F\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000152, 0.001529];\nlen(matched/src/dst):111/117/112;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f148","from":"0x3C0:3","to":"0x3C0:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x03C0\nsrc_domain: 3\ndst_domain: 5\nlabel: delay(s)∈[-0.000519, 0.002415];\nlen(matched/src/dst):1086/1099/1297;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f149","from":"0x3C0:2","to":"0x3C0:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x03C0\nsrc_domain: 2\ndst_domain: 3\nlabel: delay(s)∈[-0.001566, 0.004422];\nlen(matched/src/dst):1059/1122/1099;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f150","from":"0x40:4","to":"0x40: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: 0x0040\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001401, 0.000258];\nlen(matched/src/dst):2488/2551/2927;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f152","from":"0x40:4","to":"0x40:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0040\nsrc_domain: 4\ndst_domain: 3\nlabel: delay(s)∈[-0.001395, 0.007116];\nlen(matched/src/dst):2551/2551/2748;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f153","from":"0x116:1","to":"0x116: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: 0x0116\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.001445, 0.001431];\nlen(matched/src/dst):5537/5854/5607;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f155","from":"0x116:1","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: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.000710, 0.001240];\nlen(matched/src/dst):4976/5854/5102;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f157","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.001698, 0.005068];\nlen(matched/src/dst):1021/1021/1099;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f158","from":"0x12B:1","to":"0x12B:5","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x012B\nsrc_domain: 1\ndst_domain: 5\nlabel: delay(s)∈[-0.000886, -0.000318];\nlen(matched/src/dst):7/3887/4307;\np_value:0.5638; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.26}},{"id":"f160","from":"0x2C2:1","to":"0x2C2:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x02C2\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[0.000286, 0.001937];\nlen(matched/src/dst):223/236/226;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f161","from":"0x1A4:4","to":"0x1A4: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: 0x01A4\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000927, 0.001913];\nlen(matched/src/dst):199/204/234;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f163","from":"0x31B:2","to":"0x31B: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: 0x031B\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001147, 0.001898];\nlen(matched/src/dst):2214/2242/2341;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f165","from":"0x6B2:5","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: 5\ndst_domain: 2\nlabel: delay(s)∈[-0.000718, -0.000154];\nlen(matched/src/dst):4/130/112;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.26}},{"id":"f167","from":"0x6B2:5","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: 5\ndst_domain: 1\nlabel: delay(s)∈[-0.007407, 0.000370];\nlen(matched/src/dst):117/130/117;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f169","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.000867, 0.001129];\nlen(matched/src/dst):101/112/102;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f171","from":"0x12DD5501:2","to":"0x12DD5501: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: 0x12DD5501\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001352, 0.001587];\nlen(matched/src/dst):111/112/118;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f173","from":"0x1A55566B:4","to":"0x1A55566B:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A55566B\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.000661, 0.002658];\nlen(matched/src/dst):104/105/115;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f174","from":"0x1A55566B:1","to":"0x1A55566B:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A55566B\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000797, 0.002760];\nlen(matched/src/dst):114/120/115;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f175","from":"0x6B4:4","to":"0x6B4: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: 0x06B4\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000997, 0.001632];\nlen(matched/src/dst):249/511/585;\np_value:0.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f177","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.001231, 0.001180];\nlen(matched/src/dst):5046/5607/5102;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f179","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.001015, 0.001634];\nlen(matched/src/dst):5046/5606/5103;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f181","from":"0x3BE:1","to":"0x3BE:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x03BE\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[0.000276, 0.002175];\nlen(matched/src/dst):1115/1179/1129;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f182","from":"0x3BE:1","to":"0x3BE:4","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x03BE\nsrc_domain: 1\ndst_domain: 4\nlabel: delay(s)∈[-0.000008, 0.002126];\nlen(matched/src/dst):1003/1179/1028;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f183","from":"0x176:1","to":"0x176: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: 0x0176\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000940, 0.001419];\nlen(matched/src/dst):5537/5853/5607;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f185","from":"0x1A55566B:4","to":"0x1A55566B: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: 0x1A55566B\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001085, 0.000080];\nlen(matched/src/dst):103/105/120;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f187","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.000985, 0.001036];\nlen(matched/src/dst):101/112/102;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f189","from":"0x65D:2","to":"0x65D: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: 0x065D\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001051, 0.002075];\nlen(matched/src/dst):111/112/117;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f191","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.001478, 0.001313];\nlen(matched/src/dst):1765/1961/1779;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f193","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.000664, 0.001993];\nlen(matched/src/dst):101/102/112;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f195","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.001356, 0.001051];\nlen(matched/src/dst):10093/11214/10205;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f197","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.000802, 0.000380];\nlen(matched/src/dst):23/568/518;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f199","from":"0x16A954AD:2","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: 2\ndst_domain: 1\nlabel: delay(s)∈[0.119490, 0.199905];\nlen(matched/src/dst):198/568/593;\np_value:0.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.26}},{"id":"f201","from":"0x1A555564:1","to":"0x1A555564:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A555564\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[0.000220, 0.002261];\nlen(matched/src/dst):111/117/112;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f202","from":"0x65F:4","to":"0x65F:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x065F\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.000858, 0.001970];\nlen(matched/src/dst):202/204/224;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f203","from":"0x65F:1","to":"0x65F:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x065F\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[0.000298, 0.002193];\nlen(matched/src/dst):221/234/224;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f204","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.001281, 0.001524];\nlen(matched/src/dst):10094/11215/10206;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f206","from":"0x86:2","to":"0x86: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: 0x0086\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001216, 0.000759];\nlen(matched/src/dst):8026/11215/11707;\np_value:0.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f208","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.002067, 0.000566];\nlen(matched/src/dst):101/112/102;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f210","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.001533, 0.005655];\nlen(matched/src/dst):1067/1129/1107;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f211","from":"0x3BE:4","to":"0x3BE:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x03BE\nsrc_domain: 4\ndst_domain: 3\nlabel: delay(s)∈[-0.001438, 0.006235];\nlen(matched/src/dst):1028/1028/1107;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f212","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.001471, 0.000651];\nlen(matched/src/dst):201/224/204;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f214","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.001347, 0.001369];\nlen(matched/src/dst):505/561/510;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f216","from":"0x40:1","to":"0x40:3","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0040\nsrc_domain: 1\ndst_domain: 3\nlabel: delay(s)∈[-0.000724, 0.007383];\nlen(matched/src/dst):2612/2927/2748;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f217","from":"0x12DD5496:4","to":"0x12DD5496:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x12DD5496\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.000689, 0.001754];\nlen(matched/src/dst):101/102/112;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f218","from":"0x12DD5496:1","to":"0x12DD5496:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x12DD5496\nsrc_domain: 1\ndst_domain: 2\nlabel: delay(s)∈[-0.000421, 0.002102];\nlen(matched/src/dst):111/117/112;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f219","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.000772, -0.000338];\nlen(matched/src/dst):23/518/593;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.26}},{"id":"f221","from":"0x65F:4","to":"0x65F:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x065F\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001000, -0.000058];\nlen(matched/src/dst):170/204/234;\np_value:0.9016; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.18}},{"id":"f223","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.002968, 0.000943];\nlen(matched/src/dst):101/112/102;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f225","from":"0x6B2:2","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: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.001617, 0.002545];\nlen(matched/src/dst):111/112/117;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f227","from":"0x86:4","to":"0x86: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: 0x0086\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001201, 0.000361];\nlen(matched/src/dst):9953/10206/11707;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f229","from":"0x12DD54AA:2","to":"0x12DD54AA:1","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x12DD54AA\nsrc_domain: 2\ndst_domain: 1\nlabel: delay(s)∈[-0.000980, -0.000390];\nlen(matched/src/dst):138/1121/1171;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.22}},{"id":"f231","from":"0x6B4:1","to":"0x6B4:3","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x06B4\nsrc_domain: 1\ndst_domain: 3\nlabel: delay(s)∈[-0.000029, 0.007129];\nlen(matched/src/dst):258/585/549;\np_value:0.9999; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.26}},{"id":"f233","from":"0x12DD5496:4","to":"0x12DD5496: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: 0x12DD5496\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.001104, 0.000254];\nlen(matched/src/dst):100/102/117;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f235","from":"0x24F:4","to":"0x24F: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: 0x024F\nsrc_domain: 4\ndst_domain: 1\nlabel: delay(s)∈[-0.000460, 0.001385];\nlen(matched/src/dst):335/2552/2926;\np_value:0.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f237","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.002120, 0.000490];\nlen(matched/src/dst):5046/5607/5103;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f239","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.001387, 0.002773];\nlen(matched/src/dst):100/102/117;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f241","from":"0x1A5555BF:3","to":"0x1A5555BF:5","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x1A5555BF\nsrc_domain: 3\ndst_domain: 5\nlabel: delay(s)∈[0.120956, 0.124285];\nlen(matched/src/dst):108/110/129;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f242","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.000470, 0.002499];\nlen(matched/src/dst):50/50/55;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f243","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.001353, 0.001377];\nlen(matched/src/dst):5046/5607/5102;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f245","from":"0x1B000010:2","to":"0x1B000010:4","label":"","color":{"color":"#f59e0b","highlight":"#d97706","hover":"#d97706"},"dashes":[12,8],"width":2.8,"kind":"potential","title":"CAN_ID: 0x1B000010\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[0.030072, 0.030201];\nlen(matched/src/dst):8/561/510;\np_value:1.0000; POTENTIAL_FORWARD;\nhypothesis passed;","arrows":{"to":{"enabled":true},"from":{"enabled":true}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.26}},{"id":"f247","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.001068, 0.001742];\nlen(matched/src/dst):5047/5607/5103;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f249","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.000719, 0.005012];\nlen(matched/src/dst):1121/1121/1297;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f250","from":"0x32A:2","to":"0x32A: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: 0x032A\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001350, 0.001443];\nlen(matched/src/dst):2018/2243/2041;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f252","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.001529, 0.001308];\nlen(matched/src/dst):1296/1441/1297;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f254","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.001477, 0.001063];\nlen(matched/src/dst):505/561/511;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f256","from":"0x303:4","to":"0x303:2","label":"","color":{"color":"#666666","highlight":"#2b7cff"},"dashes":false,"width":1.8,"kind":"forwarding","title":"CAN_ID: 0x0303\nsrc_domain: 4\ndst_domain: 2\nlabel: delay(s)∈[-0.000427, 0.001983];\nlen(matched/src/dst):101/102/112;\np_value:1.0000; UNI_DIRECTIONAL;\nhypothesis passed;"},{"id":"f257","from":"0x20D:2","to":"0x20D: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: 0x020D\nsrc_domain: 2\ndst_domain: 4\nlabel: delay(s)∈[-0.001372, 0.000748];\nlen(matched/src/dst):108/119/109;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f259","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.002010, 0.001700];\nlen(matched/src/dst):202/224/204;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f261","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.001493, 0.000733];\nlen(matched/src/dst):5047/5608/5103;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.16}},{"id":"f263","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.001810, 0.000859];\nlen(matched/src/dst):1017/1129/1028;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.2}},{"id":"f265","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.001333, 0.001442];\nlen(matched/src/dst):505/561/510;\np_value:1.0000; BROADCAST;\nhypothesis passed;","arrows":{"to":{"enabled":false}},"smooth":{"enabled":true,"type":"curvedCW","roundness":0.24}},{"id":"f268","from":"0x1A5556E9:0","to":"0x1A5556E9:2","label":"","color":{"color":"#b6f8ee","highlight":"#6df2de"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f269","from":"0x1A5556E9:0","to":"0x1A5556E9:4","label":"","color":{"color":"#b6f8ee","highlight":"#6df2de"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f270","from":"0x1A5556E9:0","to":"0x1A5556E9:1","label":"","color":{"color":"#b6f8ee","highlight":"#6df2de"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5556E9\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f271","from":"0x24F:0","to":"0x24F:4","label":"","color":{"color":"#b6d7f8","highlight":"#6daff2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x024F\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f272","from":"0x24F:0","to":"0x24F:1","label":"","color":{"color":"#b6d7f8","highlight":"#6daff2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x024F\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f273","from":"0x176:0","to":"0x176:1","label":"","color":{"color":"#c9f8b6","highlight":"#93f26d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0176\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f274","from":"0x176:0","to":"0x176:2","label":"","color":{"color":"#c9f8b6","highlight":"#93f26d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0176\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f275","from":"0x12DD54D1:0","to":"0x12DD54D1:1","label":"","color":{"color":"#f8cdb6","highlight":"#f29c6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD54D1\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f276","from":"0x12DD54D1:0","to":"0x12DD54D1:2","label":"","color":{"color":"#f8cdb6","highlight":"#f29c6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD54D1\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f277","from":"0x5A7:0","to":"0x5A7:1","label":"","color":{"color":"#f6b6f8","highlight":"#ee6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x05A7\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f278","from":"0x5A7:0","to":"0x5A7:2","label":"","color":{"color":"#f6b6f8","highlight":"#ee6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x05A7\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f279","from":"0x366:0","to":"0x366:2","label":"","color":{"color":"#b6b6f8","highlight":"#6d6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0366\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f280","from":"0x366:0","to":"0x366:4","label":"","color":{"color":"#b6b6f8","highlight":"#6d6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0366\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f281","from":"0x551:0","to":"0x551:4","label":"","color":{"color":"#eab6f8","highlight":"#d66df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0551\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f282","from":"0x551:0","to":"0x551:1","label":"","color":{"color":"#eab6f8","highlight":"#d66df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0551\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f283","from":"0x206:0","to":"0x206:4","label":"","color":{"color":"#b6e2f8","highlight":"#6dc5f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0206\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f284","from":"0x206:0","to":"0x206:1","label":"","color":{"color":"#b6e2f8","highlight":"#6dc5f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0206\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f285","from":"0x1A555628:0","to":"0x1A555628:1","label":"","color":{"color":"#b6f8e7","highlight":"#6df2cf"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555628\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f286","from":"0x1A555628:0","to":"0x1A555628:2","label":"","color":{"color":"#b6f8e7","highlight":"#6df2cf"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555628\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f287","from":"0x1A555628:0","to":"0x1A555628:4","label":"","color":{"color":"#b6f8e7","highlight":"#6df2cf"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555628\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f288","from":"0x9F:0","to":"0x9F:4","label":"","color":{"color":"#f8b6d2","highlight":"#f26da6"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x009F\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f289","from":"0x9F:0","to":"0x9F:2","label":"","color":{"color":"#f8b6d2","highlight":"#f26da6"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x009F\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f290","from":"0x520:0","to":"0x520:4","label":"","color":{"color":"#e5b6f8","highlight":"#cc6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0520\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f291","from":"0x520:0","to":"0x520:1","label":"","color":{"color":"#e5b6f8","highlight":"#cc6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0520\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f292","from":"0x520:0","to":"0x520:2","label":"","color":{"color":"#e5b6f8","highlight":"#cc6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0520\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f293","from":"0x12DD5496:0","to":"0x12DD5496:4","label":"","color":{"color":"#f8c3b6","highlight":"#f2886d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD5496\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f294","from":"0x12DD5496:0","to":"0x12DD5496:1","label":"","color":{"color":"#f8c3b6","highlight":"#f2886d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD5496\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f295","from":"0xE4:0","to":"0xE4:1","label":"","color":{"color":"#f8b6be","highlight":"#f26d7e"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00E4\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f296","from":"0xE4:0","to":"0xE4:2","label":"","color":{"color":"#f8b6be","highlight":"#f26d7e"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00E4\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f297","from":"0x20D:0","to":"0x20D:2","label":"","color":{"color":"#b6def8","highlight":"#6dbef2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x020D\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f298","from":"0x20D:0","to":"0x20D:4","label":"","color":{"color":"#b6def8","highlight":"#6dbef2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x020D\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f299","from":"0x1A55566B:0","to":"0x1A55566B:1","label":"","color":{"color":"#b6f8e9","highlight":"#6df2d4"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A55566B\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f300","from":"0x1A55566B:0","to":"0x1A55566B:4","label":"","color":{"color":"#b6f8e9","highlight":"#6df2d4"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A55566B\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f301","from":"0x1A555521:0","to":"0x1A555521:1","label":"","color":{"color":"#b6f8cf","highlight":"#6df2a0"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555521\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f302","from":"0x1A555521:0","to":"0x1A555521:2","label":"","color":{"color":"#b6f8cf","highlight":"#6df2a0"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555521\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f303","from":"0x13D:0","to":"0x13D:4","label":"","color":{"color":"#f8e2b6","highlight":"#f2c66d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x013D\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f304","from":"0x13D:0","to":"0x13D:2","label":"","color":{"color":"#f8e2b6","highlight":"#f2c66d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x013D\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f305","from":"0x65D:0","to":"0x65D:4","label":"","color":{"color":"#f8b6e3","highlight":"#f26dc8"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x065D\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f306","from":"0x65D:0","to":"0x65D:1","label":"","color":{"color":"#f8b6e3","highlight":"#f26dc8"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x065D\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f307","from":"0x65D:0","to":"0x65D:2","label":"","color":{"color":"#f8b6e3","highlight":"#f26dc8"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x065D\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f308","from":"0xFD:0","to":"0xFD:1","label":"","color":{"color":"#f8b6b7","highlight":"#f26d6f"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00FD\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f309","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":"f310","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":"f311","from":"0x3C0:0","to":"0x3C0:4","label":"","color":{"color":"#c4b6f8","highlight":"#896df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03C0\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f312","from":"0x3C0:0","to":"0x3C0:1","label":"","color":{"color":"#c4b6f8","highlight":"#896df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03C0\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f313","from":"0x3C0:0","to":"0x3C0:2","label":"","color":{"color":"#c4b6f8","highlight":"#896df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03C0\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f314","from":"0x6B2:0","to":"0x6B2:1","label":"","color":{"color":"#f8b6dd","highlight":"#f26dbc"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x06B2\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f315","from":"0x6B2:0","to":"0x6B2:4","label":"","color":{"color":"#f8b6dd","highlight":"#f26dbc"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x06B2\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f316","from":"0x6B2:0","to":"0x6B2:3","label":"","color":{"color":"#f8b6dd","highlight":"#f26dbc"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x06B2\nsrc_domain: 0\ndst_domain: 3\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f317","from":"0x6B2:0","to":"0x6B2:2","label":"","color":{"color":"#f8b6dd","highlight":"#f26dbc"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x06B2\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f318","from":"0x6B2:0","to":"0x6B2:5","label":"","color":{"color":"#f8b6dd","highlight":"#f26dbc"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x06B2\nsrc_domain: 0\ndst_domain: 5\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f319","from":"0x86:0","to":"0x86:4","label":"","color":{"color":"#f8b6d3","highlight":"#f26da8"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0086\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f320","from":"0x86:0","to":"0x86:1","label":"","color":{"color":"#f8b6d3","highlight":"#f26da8"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0086\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f321","from":"0x86:0","to":"0x86:2","label":"","color":{"color":"#f8b6d3","highlight":"#f26da8"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0086\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f322","from":"0x31B:0","to":"0x31B:1","label":"","color":{"color":"#b6c2f8","highlight":"#6d85f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x031B\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f323","from":"0x31B:0","to":"0x31B:2","label":"","color":{"color":"#b6c2f8","highlight":"#6d85f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x031B\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f324","from":"0x1A4:0","to":"0x1A4:1","label":"","color":{"color":"#b6f8c8","highlight":"#6df291"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x01A4\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f325","from":"0x1A4:0","to":"0x1A4:2","label":"","color":{"color":"#b6f8c8","highlight":"#6df291"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x01A4\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f326","from":"0x1A4:0","to":"0x1A4:4","label":"","color":{"color":"#b6f8c8","highlight":"#6df291"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x01A4\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f327","from":"0x6B4:0","to":"0x6B4:1","label":"","color":{"color":"#f8b6dc","highlight":"#f26db9"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x06B4\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f328","from":"0x6B4:0","to":"0x6B4:4","label":"","color":{"color":"#f8b6dc","highlight":"#f26db9"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x06B4\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f329","from":"0x102:0","to":"0x102:2","label":"","color":{"color":"#f8b6b6","highlight":"#f26d6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0102\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f330","from":"0x102:0","to":"0x102:4","label":"","color":{"color":"#f8b6b6","highlight":"#f26d6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0102\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f331","from":"0x102:0","to":"0x102:1","label":"","color":{"color":"#f8b6b6","highlight":"#f26d6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0102\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f332","from":"0x545:0","to":"0x545:4","label":"","color":{"color":"#e6b6f8","highlight":"#ce6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0545\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f333","from":"0x545:0","to":"0x545:2","label":"","color":{"color":"#e6b6f8","highlight":"#ce6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0545\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f334","from":"0x116:0","to":"0x116:1","label":"","color":{"color":"#f8b9b6","highlight":"#f2746d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0116\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f335","from":"0x116:0","to":"0x116:2","label":"","color":{"color":"#f8b9b6","highlight":"#f2746d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0116\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f336","from":"0x116:0","to":"0x116:4","label":"","color":{"color":"#f8b9b6","highlight":"#f2746d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0116\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f337","from":"0x12DD5501:0","to":"0x12DD5501:1","label":"","color":{"color":"#f8d6b6","highlight":"#f2ad6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD5501\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f338","from":"0x12DD5501:0","to":"0x12DD5501:2","label":"","color":{"color":"#f8d6b6","highlight":"#f2ad6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD5501\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f339","from":"0x12DD5501:0","to":"0x12DD5501:4","label":"","color":{"color":"#f8d6b6","highlight":"#f2ad6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD5501\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f340","from":"0x12DD54D6:0","to":"0x12DD54D6:4","label":"","color":{"color":"#f8ceb6","highlight":"#f29e6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD54D6\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f341","from":"0x12DD54D6:0","to":"0x12DD54D6:2","label":"","color":{"color":"#f8ceb6","highlight":"#f29e6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD54D6\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f342","from":"0x14D:0","to":"0x14D:2","label":"","color":{"color":"#f8eab6","highlight":"#f2d56d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x014D\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f343","from":"0x14D:0","to":"0x14D:4","label":"","color":{"color":"#f8eab6","highlight":"#f2d56d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x014D\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f344","from":"0x14D:0","to":"0x14D:1","label":"","color":{"color":"#f8eab6","highlight":"#f2d56d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x014D\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f345","from":"0x1A555564:0","to":"0x1A555564:1","label":"","color":{"color":"#b6f8d8","highlight":"#6df2b1"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555564\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f346","from":"0x1A555564:0","to":"0x1A555564:4","label":"","color":{"color":"#b6f8d8","highlight":"#6df2b1"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555564\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f347","from":"0x643:0","to":"0x643:1","label":"","color":{"color":"#f8b6ea","highlight":"#f26dd5"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0643\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f348","from":"0x643:0","to":"0x643:4","label":"","color":{"color":"#f8b6ea","highlight":"#f26dd5"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0643\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f349","from":"0x3E5:0","to":"0x3E5:4","label":"","color":{"color":"#ceb6f8","highlight":"#9d6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03E5\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f350","from":"0x3E5:0","to":"0x3E5:2","label":"","color":{"color":"#ceb6f8","highlight":"#9d6df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03E5\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f351","from":"0x12DD5497:0","to":"0x12DD5497:1","label":"","color":{"color":"#f8c4b6","highlight":"#f28a6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD5497\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f352","from":"0x12DD5497:0","to":"0x12DD5497:2","label":"","color":{"color":"#f8c4b6","highlight":"#f28a6d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD5497\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f353","from":"0x40:0","to":"0x40:4","label":"","color":{"color":"#d4b6f8","highlight":"#a96df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0040\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f354","from":"0x40:0","to":"0x40:1","label":"","color":{"color":"#d4b6f8","highlight":"#a96df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0040\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f355","from":"0x40:0","to":"0x40:2","label":"","color":{"color":"#d4b6f8","highlight":"#a96df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0040\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f356","from":"0x1A5555BF:0","to":"0x1A5555BF:1","label":"","color":{"color":"#b6f8e6","highlight":"#6df2cd"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5555BF\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f357","from":"0x1A5555BF:0","to":"0x1A5555BF:2","label":"","color":{"color":"#b6f8e6","highlight":"#6df2cd"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5555BF\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f358","from":"0x1A5555BF:0","to":"0x1A5555BF:4","label":"","color":{"color":"#b6f8e6","highlight":"#6df2cd"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5555BF\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f359","from":"0xFC:0","to":"0xFC:1","label":"","color":{"color":"#f8b6b8","highlight":"#f26d71"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00FC\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f360","from":"0xFC:0","to":"0xFC:2","label":"","color":{"color":"#f8b6b8","highlight":"#f26d71"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00FC\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f361","from":"0xFC:0","to":"0xFC:4","label":"","color":{"color":"#f8b6b8","highlight":"#f26d71"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x00FC\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f362","from":"0x32A:0","to":"0x32A:4","label":"","color":{"color":"#b6bff8","highlight":"#6d80f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x032A\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f363","from":"0x32A:0","to":"0x32A:2","label":"","color":{"color":"#b6bff8","highlight":"#6d80f2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x032A\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f364","from":"0x1A5556EA:0","to":"0x1A5556EA:2","label":"","color":{"color":"#b6f8ef","highlight":"#6df2e0"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f365","from":"0x1A5556EA:0","to":"0x1A5556EA:4","label":"","color":{"color":"#b6f8ef","highlight":"#6df2e0"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f366","from":"0x1A5556EA:0","to":"0x1A5556EA:1","label":"","color":{"color":"#b6f8ef","highlight":"#6df2e0"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5556EA\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f367","from":"0x3D4:0","to":"0x3D4:4","label":"","color":{"color":"#c7b6f8","highlight":"#906df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03D4\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f368","from":"0x3D4:0","to":"0x3D4:1","label":"","color":{"color":"#c7b6f8","highlight":"#906df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x03D4\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f369","from":"0x12DD54C9:0","to":"0x12DD54C9:4","label":"","color":{"color":"#f8cbb6","highlight":"#f2976d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD54C9\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f370","from":"0x12DD54C9:0","to":"0x12DD54C9:2","label":"","color":{"color":"#f8cbb6","highlight":"#f2976d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD54C9\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f371","from":"0x3F:0","to":"0x3F:1","label":"","color":{"color":"#d0b6f8","highlight":"#a16df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x003F\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f372","from":"0x3F:0","to":"0x3F:2","label":"","color":{"color":"#d0b6f8","highlight":"#a16df2"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x003F\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f373","from":"0x1A5555AC:0","to":"0x1A5555AC:1","label":"","color":{"color":"#b6f8de","highlight":"#6df2be"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5555AC\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f374","from":"0x1A5555AC:0","to":"0x1A5555AC:2","label":"","color":{"color":"#b6f8de","highlight":"#6df2be"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5555AC\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f375","from":"0x1A5555AC:0","to":"0x1A5555AC:4","label":"","color":{"color":"#b6f8de","highlight":"#6df2be"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A5555AC\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f376","from":"0x139:0","to":"0x139:1","label":"","color":{"color":"#f8e1b6","highlight":"#f2c36d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0139\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f377","from":"0x139:0","to":"0x139:2","label":"","color":{"color":"#f8e1b6","highlight":"#f2c36d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0139\nsrc_domain: 0\ndst_domain: 2\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f378","from":"0x139:0","to":"0x139:4","label":"","color":{"color":"#f8e1b6","highlight":"#f2c36d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x0139\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f379","from":"0x12DD553D:0","to":"0x12DD553D:4","label":"","color":{"color":"#f8dab6","highlight":"#f2b56d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD553D\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f380","from":"0x12DD553D:0","to":"0x12DD553D:1","label":"","color":{"color":"#f8dab6","highlight":"#f2b56d"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x12DD553D\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f381","from":"0x1A555541:0","to":"0x1A555541:4","label":"","color":{"color":"#b6f8d2","highlight":"#6df2a5"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555541\nsrc_domain: 0\ndst_domain: 4\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f382","from":"0x1A555541:0","to":"0x1A555541:1","label":"","color":{"color":"#b6f8d2","highlight":"#6df2a5"},"dashes":[12,8],"width":2.6,"kind":"virtual","title":"CAN_ID: 0x1A555541\nsrc_domain: 0\ndst_domain: 1\nlabel: virtual_edge; UNI_DIRECTIONAL;"},{"id":"f383","from":"0x1A555541:0","to":"0x1A555541:2","label":"","color":{"color":"#b6f8d2","highlight":"#6df2a5"},"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> |
|
|