@tscircuit/schematic-trace-solver 0.0.187 → 0.0.189

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/dist/index.d.ts +42 -23
  2. package/dist/index.js +1053 -316
  3. package/lib/solvers/InlineNetLabelSolver/InlineNetLabelSolver.ts +612 -230
  4. package/lib/solvers/InlineNetLabelSolver/alignPortOnlyInlineNetLabelStubs.ts +2 -6
  5. package/lib/solvers/InlineNetLabelSolver/getAnchoredNetLabelRenderedBounds.ts +13 -0
  6. package/lib/solvers/InlineNetLabelSolver/getInlineLabelObstacles.ts +64 -0
  7. package/lib/solvers/InlineNetLabelSolver/getLocalTraceLabelShifts.ts +407 -0
  8. package/lib/solvers/InlineNetLabelSolver/getOutputLabelCollisions.ts +145 -0
  9. package/lib/solvers/InlineNetLabelSolver/isLabelRepresentedInline.ts +15 -0
  10. package/lib/solvers/InlineNetLabelSolver/pushAnchoredNetLabelsAwayFromInlineLabels.ts +61 -31
  11. package/lib/solvers/NetLabelNetLabelCollisionSolver/NetLabelNetLabelCollisionSolver.ts +94 -16
  12. package/lib/solvers/NetLabelToTraceSolver/NetLabelToTraceSolver.ts +4 -3
  13. package/lib/solvers/SameNetJunctionAlignmentSolver/alignSameNetJunctions.ts +7 -7
  14. package/lib/solvers/SchematicTracePipelineSolver/SchematicTracePipelineSolver.ts +3 -0
  15. package/lib/solvers/TraceCleanupSolver/sub-solver/generateLShapeRerouteCandidates.ts +5 -1
  16. package/lib/types/InputProblem.ts +2 -2
  17. package/package.json +1 -1
  18. package/site/SchematicTracePipelineSolver/repro-robot-controller-imu-tof.page.tsx +7 -0
  19. package/site/bug-reports/bug-report-20260907T110144Z.page.tsx +4 -0
  20. package/site/bug-reports/bug-report-20260907T145640Z.page.tsx +4 -0
  21. package/tests/bug-reports/bug-report-20260730T061837Z/__snapshots__/bug-report-20260730T061837Z.snap.svg +2 -2
  22. package/tests/bug-reports/bug-report-20260806T093501Z/__snapshots__/bug-report-20260806T093501Z.snap.svg +2 -2
  23. package/tests/bug-reports/bug-report-20260811T075142Z/__snapshots__/bug-report-20260811T075142Z.snap.svg +18 -18
  24. package/tests/bug-reports/bug-report-20260819T091818Z/__snapshots__/bug-report-20260819T091818Z.snap.svg +2 -2
  25. package/tests/bug-reports/bug-report-20260819T091818Z/bug-report-20260819T091818Z.test.ts +21 -0
  26. package/tests/bug-reports/bug-report-20260825T103621Z/__snapshots__/bug-report-20260825T103621Z.snap.svg +5 -38
  27. package/tests/bug-reports/bug-report-20260826T072956Z/__snapshots__/bug-report-20260826T072956Z.snap.svg +3 -9
  28. package/tests/bug-reports/bug-report-20260901T055358Z/__snapshots__/bug-report-20260901T055358Z.snap.svg +18 -30
  29. package/tests/bug-reports/bug-report-20260901T055358Z/bug-report-20260901T055358Z.test.ts +33 -0
  30. package/tests/bug-reports/bug-report-20260907T110144Z/__snapshots__/bug-report-20260907T110144Z.snap.svg +282 -0
  31. package/tests/bug-reports/bug-report-20260907T110144Z/bug-report-20260907T110144Z.json +1073 -0
  32. package/tests/bug-reports/bug-report-20260907T110144Z/bug-report-20260907T110144Z.test.ts +12 -0
  33. package/tests/bug-reports/bug-report-20260907T145640Z/__snapshots__/bug-report-20260907T145640Z.snap.svg +1107 -0
  34. package/tests/bug-reports/bug-report-20260907T145640Z/bug-report-20260907T145640Z.json +3563 -0
  35. package/tests/bug-reports/bug-report-20260907T145640Z/bug-report-20260907T145640Z.test.ts +117 -0
  36. package/tests/repros/__snapshots__/repro-battery-management-bq24073.snap.svg +4 -4
  37. package/tests/repros/__snapshots__/repro-board-648-esp12f-section.snap.svg +2 -2
  38. package/tests/repros/__snapshots__/repro-core-tb67s579ftg-inline-label-routing.snap.svg +20 -20
  39. package/tests/repros/__snapshots__/repro-esp12f-section.snap.svg +37 -55
  40. package/tests/repros/__snapshots__/repro-hub-usb-sheet.snap.svg +44 -68
  41. package/tests/repros/__snapshots__/repro-mspm0l1306-capacitor-symmetry.snap.svg +3 -9
  42. package/tests/repros/__snapshots__/repro-robot-controller-imu-tof.snap.svg +199 -0
  43. package/tests/repros/__snapshots__/repro-robot-controller-imu-tof.source.svg +33 -0
  44. package/tests/repros/__snapshots__/repro-usb-power-vbus-label-detour.snap.svg +50 -74
  45. package/tests/repros/__snapshots__/repro48-555-timer-vcc-rail-label.snap.svg +2 -2
  46. package/tests/repros/__snapshots__/rp2040-robot-controller-disconnected-gnd.snap.svg +103 -0
  47. package/tests/repros/assets/repro-robot-controller-imu-tof.input.json +540 -0
  48. package/tests/repros/assets/rp2040-robot-controller.input.json +349 -0
  49. package/tests/repros/repro-battery-management-bq24073.test.ts +13 -1
  50. package/tests/repros/repro-hub-usb-sheet.test.ts +25 -0
  51. package/tests/repros/repro-robot-controller-imu-tof.test.ts +83 -0
  52. package/tests/repros/repro-usb-power-vbus-label-detour.test.ts +59 -13
  53. package/tests/repros/rp2040-robot-controller-disconnected-gnd.test.ts +59 -0
  54. package/tests/solvers/InlineNetLabelSolver/get-anchored-net-label-rendered-bounds.test.ts +24 -0
  55. package/tests/solvers/InlineNetLabelSolver/local-trace-label-shifts.test.ts +296 -0
  56. package/tests/solvers/InlineNetLabelSolver/multi-pin-connected-components.test.ts +7 -4
  57. package/tests/solvers/InlineNetLabelSolver/push-anchored-net-labels-away.test.ts +2 -1
  58. package/tests/solvers/InlineNetLabelSolver/shared-direct-and-named-connection.test.ts +62 -0
  59. package/tests/solvers/InlineNetLabelSolver/two-pin-terminal-stubs-atomic.test.ts +9 -3
  60. package/tests/solvers/TraceCleanupSolver/perpendicular-detours-preserve-endpoints.test.ts +60 -0
@@ -1,6 +1,6 @@
1
1
  <svg width="1200" height="2016" viewBox="0 0 1200 2016" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Solver debug visualization on top and Circuit JSON schematic on the bottom">
2
2
  <g transform="translate(0, 0) scale(1.875, 1.875) translate(0, 0)">
3
- <rect width="100%" height="100%" fill="white"/><g><polyline data-points="-1.12,-0.195 -2.19,-0.11500000000000021" data-type="line" data-label="" points="177.14887640449436,240.8567415730337 71.95224719101122,232.99157303370788" fill="none" stroke="hsl(296, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="2.27,0.595 1.2800000000000002,-0.3950000000000001" data-type="line" data-label="" points="510.435393258427,163.188202247191 413.1039325842697,260.5196629213483" fill="none" stroke="hsl(248, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="1.2800000000000002,-0.3950000000000001 1.9800000000000002,-0.39500000000000013" data-type="line" data-label="" points="413.1039325842697,260.5196629213483 481.92415730337086,260.5196629213483" fill="none" stroke="hsl(160, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="1.2800000000000002,-0.5950000000000001 -1.1449999999999996,-3.0799999999999996" data-type="line" data-label="" points="413.1039325842697,280.1825842696629 174.6910112359551,524.4943820224719" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2800000000000002,-0.5950000000000001 -2.19,-0.8750000000000002" data-type="line" data-label="" points="413.1039325842697,280.1825842696629 71.95224719101122,307.7106741573034" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2800000000000002,-0.5950000000000001 0.48,-3.3949999999999996" data-type="line" data-label="" points="413.1039325842697,280.1825842696629 334.4522471910112,555.4634831460673" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1449999999999996,-3.0799999999999996 -2.19,-0.8750000000000002" data-type="line" data-label="" points="174.6910112359551,524.4943820224719 71.95224719101122,307.7106741573034" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1449999999999996,-3.0799999999999996 0.48,-3.3949999999999996" data-type="line" data-label="" points="174.6910112359551,524.4943820224719 334.4522471910112,555.4634831460673" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.19,-0.8750000000000002 0.48,-3.3949999999999996" data-type="line" data-label="" points="71.95224719101122,307.7106741573034 334.4522471910112,555.4634831460673" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.12,-0.5950000000000001 -1.12,-0.395" data-type="line" data-label="" points="177.14887640449436,280.1825842696629 177.14887640449436,260.5196629213483" fill="none" stroke="hsl(234, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.12,-0.5950000000000001 2.58,-0.39500000000000013" data-type="line" data-label="" points="177.14887640449436,280.1825842696629 540.9129213483146,260.5196629213483" fill="none" stroke="hsl(234, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.12,-0.5950000000000001 -1.1449999999999996,-2.319999999999999" data-type="line" data-label="" points="177.14887640449436,280.1825842696629 174.6910112359551,449.7752808988763" fill="none" stroke="hsl(234, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.12,-0.395 2.58,-0.39500000000000013" data-type="line" data-label="" points="177.14887640449436,260.5196629213483 540.9129213483146,260.5196629213483" fill="none" stroke="hsl(234, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.12,-0.395 -1.1449999999999996,-2.319999999999999" data-type="line" data-label="" points="177.14887640449436,260.5196629213483 174.6910112359551,449.7752808988763" fill="none" stroke="hsl(234, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.58,-0.39500000000000013 -1.1449999999999996,-2.319999999999999" data-type="line" data-label="" points="540.9129213483146,260.5196629213483 174.6910112359551,449.7752808988763" fill="none" stroke="hsl(234, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2800000000000002,-0.19500000000000006 0.48,-3.1949999999999994" data-type="line" data-label="" points="413.1039325842697,240.8567415730337 334.4522471910112,535.8005617977527" fill="none" stroke="hsl(158, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.12,0.0050000000000000044 1.2800000000000002,0.0050000000000000044" data-type="line" data-label="" points="177.14887640449436,221.1938202247191 413.1039325842697,221.1938202247191" fill="none" stroke="hsl(190, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.12,0.0050000000000000044 2.27,1.1949999999999998" data-type="line" data-label="" points="177.14887640449436,221.1938202247191 510.435393258427,104.19943820224718" fill="none" stroke="hsl(190, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.12,0.0050000000000000044 0.48,-2.994999999999999" data-type="line" data-label="" points="177.14887640449436,221.1938202247191 334.4522471910112,516.1376404494381" fill="none" stroke="hsl(190, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2800000000000002,0.0050000000000000044 2.27,1.1949999999999998" data-type="line" data-label="" points="413.1039325842697,221.1938202247191 510.435393258427,104.19943820224718" fill="none" stroke="hsl(190, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2800000000000002,0.0050000000000000044 0.48,-2.994999999999999" data-type="line" data-label="" points="413.1039325842697,221.1938202247191 334.4522471910112,516.1376404494381" fill="none" stroke="hsl(190, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.27,1.1949999999999998 0.48,-2.994999999999999" data-type="line" data-label="" points="510.435393258427,104.19943820224718 334.4522471910112,516.1376404494381" fill="none" stroke="hsl(190, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.9800000000000002,-0.39500000000000013 1.2800000000000002,-0.3950000000000001" data-type="line" data-label="" points="481.92415730337086,260.5196629213483 413.1039325842697,260.5196629213483" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="2.27,0.595 2.27,0.09999999999999992 1.7800000000000002,0.09999999999999992 1.7800000000000002,-0.39500000000000013" data-type="line" data-label="" points="510.435393258427,163.188202247191 510.435393258427,211.85393258426967 462.26123595505624,211.85393258426967 462.26123595505624,260.5196629213483" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="0.48,-3.3949999999999996 -1.1449999999999996,-3.3949999999999996 -1.1449999999999996,-3.0799999999999996" data-type="line" data-label="" points="334.4522471910112,555.4634831460673 174.6910112359551,555.4634831460673 174.6910112359551,524.4943820224719" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.12,-0.395 -1.1449999999999996,-0.395 -1.1449999999999996,-0.5950000000000001 -1.12,-0.5950000000000001" data-type="line" data-label="" points="177.14887640449436,260.5196629213483 174.6910112359551,260.5196629213483 174.6910112359551,280.1825842696629 177.14887640449436,280.1825842696629" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.1449999999999996,-2.319999999999999 -1.1449999999999996,-0.5950000000000001" data-type="line" data-label="" points="174.6910112359551,449.7752808988763 174.6910112359551,280.1825842696629" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="2.27,1.1949999999999998 2.27,1.3949999999999998 1.7750000000000001,1.3949999999999998 1.7750000000000001,0.0050000000000000044 1.2800000000000002,0.0050000000000000044" data-type="line" data-label="" points="510.435393258427,104.19943820224718 510.435393258427,84.53651685393257 461.76966292134836,84.53651685393257 461.76966292134836,221.1938202247191 413.1039325842697,221.1938202247191" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.12,-0.19499999999999984 -1.3575,-0.19499999999999984 -1.3575,0.08499999999999974 -2.19,0.08499999999999974 -2.19,-0.11500000000000021" data-type="line" data-label="" points="177.14887640449436,240.85674157303367 153.79915730337078,240.85674157303367 153.79915730337078,213.32865168539328 71.95224719101122,213.32865168539328 71.95224719101122,232.99157303370788" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.2800000000000002,-0.5950000000000001 1.5210000000000001,-0.5950000000000001 1.5210000000000001,-0.8460000000000001" data-type="line" data-label="" points="413.1039325842697,280.1825842696629 436.7977528089888,280.1825842696629 436.7977528089888,304.85955056179773" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="0.48,-2.994999999999999 0.239,-2.994999999999999 0.239,-2.793999999999999" data-type="line" data-label="" points="334.4522471910112,516.1376404494381 310.7584269662921,516.1376404494381 310.7584269662921,496.376404494382" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="schematic_component_0" data-x="0.08000000000000007" data-y="-0.29500000000000004" x="177.14887640449433" y="201.53089887640448" width="235.95505617977537" height="98.31460674157307" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.01017142857142857"/></g><g><rect data-type="rect" data-label="schematic_component_1" data-x="2.3675" data-y="0.8949999999999999" x="478.4831460674158" y="104.1994382022472" width="83.07584269662914" height="58.98876404494381" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.01017142857142857"/></g><g><rect data-type="rect" data-label="schematic_component_2" data-x="2.2800000000000002" data-y="-0.39500000000000013" x="481.92415730337086" y="227.09269662921346" width="58.988764044943764" height="66.85393258426967" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.01017142857142857"/></g><g><rect data-type="rect" data-label="schematic_component_3" data-x="-1.0099999999999996" data-y="-2.6999999999999993" x="142.73876404494388" y="449.77528089887636" width="90.4494382022472" height="74.71910112359558" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.01017142857142857"/></g><g><rect data-type="rect" data-label="schematic_component_4" data-x="-2.0549999999999997" data-y="-0.4950000000000002" x="40" y="232.99157303370785" width="90.44943820224722" height="74.71910112359552" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.01017142857142857"/></g><g><rect data-type="rect" data-label="schematic_component_5" data-x="1.58" data-y="-3.1949999999999994" x="334.4522471910113" y="496.4747191011235" width="216.29213483146066" height="78.65168539325839" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.01017142857142857"/></g><g><rect data-type="rect" data-label="U1" data-x="-0.6" data-y="0.31999999999999995" x="210.5758426966292" y="177.93539325842696" width="35.39325842696633" height="24.578651685393254" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.01017142857142857"/></g><g><rect data-type="rect" data-label="J1" data-x="1" data-y="-2.6799999999999997" x="367.87921348314615" y="472.879213483146" width="35.39325842696627" height="24.57865168539331" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.01017142857142857"/></g><g><rect data-type="rect" data-label="netId: GND
3
+ <rect width="100%" height="100%" fill="white"/><g><polyline data-points="-1.12,-0.195 -2.19,-0.11500000000000021" data-type="line" data-label="" points="177.14887640449436,240.8567415730337 71.95224719101122,232.99157303370788" fill="none" stroke="hsl(296, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="2.27,0.595 1.2800000000000002,-0.3950000000000001" data-type="line" data-label="" points="510.435393258427,163.188202247191 413.1039325842697,260.5196629213483" fill="none" stroke="hsl(248, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="1.2800000000000002,-0.3950000000000001 1.9800000000000002,-0.39500000000000013" data-type="line" data-label="" points="413.1039325842697,260.5196629213483 481.92415730337086,260.5196629213483" fill="none" stroke="hsl(160, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="1.2800000000000002,-0.5950000000000001 -1.1449999999999996,-3.0799999999999996" data-type="line" data-label="" points="413.1039325842697,280.1825842696629 174.6910112359551,524.4943820224719" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2800000000000002,-0.5950000000000001 -2.19,-0.8750000000000002" data-type="line" data-label="" points="413.1039325842697,280.1825842696629 71.95224719101122,307.7106741573034" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2800000000000002,-0.5950000000000001 0.48,-3.3949999999999996" data-type="line" data-label="" points="413.1039325842697,280.1825842696629 334.4522471910112,555.4634831460673" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1449999999999996,-3.0799999999999996 -2.19,-0.8750000000000002" data-type="line" data-label="" points="174.6910112359551,524.4943820224719 71.95224719101122,307.7106741573034" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1449999999999996,-3.0799999999999996 0.48,-3.3949999999999996" data-type="line" data-label="" points="174.6910112359551,524.4943820224719 334.4522471910112,555.4634831460673" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.19,-0.8750000000000002 0.48,-3.3949999999999996" data-type="line" data-label="" points="71.95224719101122,307.7106741573034 334.4522471910112,555.4634831460673" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.12,-0.5950000000000001 -1.12,-0.395" data-type="line" data-label="" points="177.14887640449436,280.1825842696629 177.14887640449436,260.5196629213483" fill="none" stroke="hsl(234, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.12,-0.5950000000000001 2.58,-0.39500000000000013" data-type="line" data-label="" points="177.14887640449436,280.1825842696629 540.9129213483146,260.5196629213483" fill="none" stroke="hsl(234, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.12,-0.5950000000000001 -1.1449999999999996,-2.319999999999999" data-type="line" data-label="" points="177.14887640449436,280.1825842696629 174.6910112359551,449.7752808988763" fill="none" stroke="hsl(234, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.12,-0.395 2.58,-0.39500000000000013" data-type="line" data-label="" points="177.14887640449436,260.5196629213483 540.9129213483146,260.5196629213483" fill="none" stroke="hsl(234, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.12,-0.395 -1.1449999999999996,-2.319999999999999" data-type="line" data-label="" points="177.14887640449436,260.5196629213483 174.6910112359551,449.7752808988763" fill="none" stroke="hsl(234, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.58,-0.39500000000000013 -1.1449999999999996,-2.319999999999999" data-type="line" data-label="" points="540.9129213483146,260.5196629213483 174.6910112359551,449.7752808988763" fill="none" stroke="hsl(234, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2800000000000002,-0.19500000000000006 0.48,-3.1949999999999994" data-type="line" data-label="" points="413.1039325842697,240.8567415730337 334.4522471910112,535.8005617977527" fill="none" stroke="hsl(158, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.12,0.0050000000000000044 1.2800000000000002,0.0050000000000000044" data-type="line" data-label="" points="177.14887640449436,221.1938202247191 413.1039325842697,221.1938202247191" fill="none" stroke="hsl(190, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.12,0.0050000000000000044 2.27,1.1949999999999998" data-type="line" data-label="" points="177.14887640449436,221.1938202247191 510.435393258427,104.19943820224718" fill="none" stroke="hsl(190, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.12,0.0050000000000000044 0.48,-2.994999999999999" data-type="line" data-label="" points="177.14887640449436,221.1938202247191 334.4522471910112,516.1376404494381" fill="none" stroke="hsl(190, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2800000000000002,0.0050000000000000044 2.27,1.1949999999999998" data-type="line" data-label="" points="413.1039325842697,221.1938202247191 510.435393258427,104.19943820224718" fill="none" stroke="hsl(190, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2800000000000002,0.0050000000000000044 0.48,-2.994999999999999" data-type="line" data-label="" points="413.1039325842697,221.1938202247191 334.4522471910112,516.1376404494381" fill="none" stroke="hsl(190, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.27,1.1949999999999998 0.48,-2.994999999999999" data-type="line" data-label="" points="510.435393258427,104.19943820224718 334.4522471910112,516.1376404494381" fill="none" stroke="hsl(190, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.9800000000000002,-0.39500000000000013 1.2800000000000002,-0.3950000000000001" data-type="line" data-label="" points="481.92415730337086,260.5196629213483 413.1039325842697,260.5196629213483" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="2.27,0.595 2.27,0.09999999999999992 1.7800000000000002,0.09999999999999992 1.7800000000000002,-0.39500000000000013" data-type="line" data-label="" points="510.435393258427,163.188202247191 510.435393258427,211.85393258426967 462.26123595505624,211.85393258426967 462.26123595505624,260.5196629213483" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="0.48,-3.3949999999999996 -1.1449999999999996,-3.3949999999999996 -1.1449999999999996,-3.0799999999999996" data-type="line" data-label="" points="334.4522471910112,555.4634831460673 174.6910112359551,555.4634831460673 174.6910112359551,524.4943820224719" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.12,-0.395 -1.1449999999999996,-0.395 -1.1449999999999996,-0.5950000000000001 -1.12,-0.5950000000000001" data-type="line" data-label="" points="177.14887640449436,260.5196629213483 174.6910112359551,260.5196629213483 174.6910112359551,280.1825842696629 177.14887640449436,280.1825842696629" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.1449999999999996,-2.319999999999999 -1.1449999999999996,-0.5950000000000001" data-type="line" data-label="" points="174.6910112359551,449.7752808988763 174.6910112359551,280.1825842696629" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="2.27,1.1949999999999998 2.27,1.3949999999999998 1.7750000000000001,1.3949999999999998 1.7750000000000001,0.0050000000000000044 1.2800000000000002,0.0050000000000000044" data-type="line" data-label="" points="510.435393258427,104.19943820224718 510.435393258427,84.53651685393257 461.76966292134836,84.53651685393257 461.76966292134836,221.1938202247191 413.1039325842697,221.1938202247191" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.12,-0.19499999999999984 -1.59,-0.19499999999999984 -1.59,0.08499999999999974 -2.19,0.08499999999999974 -2.19,-0.11500000000000021" data-type="line" data-label="" points="177.14887640449436,240.85674157303367 130.94101123595502,240.85674157303367 130.94101123595502,213.32865168539328 71.95224719101122,213.32865168539328 71.95224719101122,232.99157303370788" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.2800000000000002,-0.5950000000000001 1.5210000000000001,-0.5950000000000001 1.5210000000000001,-0.8460000000000001" data-type="line" data-label="" points="413.1039325842697,280.1825842696629 436.7977528089888,280.1825842696629 436.7977528089888,304.85955056179773" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="0.48,-2.994999999999999 0.239,-2.994999999999999 0.239,-2.793999999999999" data-type="line" data-label="" points="334.4522471910112,516.1376404494381 310.7584269662921,516.1376404494381 310.7584269662921,496.376404494382" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="schematic_component_0" data-x="0.08000000000000007" data-y="-0.29500000000000004" x="177.14887640449433" y="201.53089887640448" width="235.95505617977537" height="98.31460674157307" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.01017142857142857"/></g><g><rect data-type="rect" data-label="schematic_component_1" data-x="2.3675" data-y="0.8949999999999999" x="478.4831460674158" y="104.1994382022472" width="83.07584269662914" height="58.98876404494381" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.01017142857142857"/></g><g><rect data-type="rect" data-label="schematic_component_2" data-x="2.2800000000000002" data-y="-0.39500000000000013" x="481.92415730337086" y="227.09269662921346" width="58.988764044943764" height="66.85393258426967" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.01017142857142857"/></g><g><rect data-type="rect" data-label="schematic_component_3" data-x="-1.0099999999999996" data-y="-2.6999999999999993" x="142.73876404494388" y="449.77528089887636" width="90.4494382022472" height="74.71910112359558" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.01017142857142857"/></g><g><rect data-type="rect" data-label="schematic_component_4" data-x="-2.0549999999999997" data-y="-0.4950000000000002" x="40" y="232.99157303370785" width="90.44943820224722" height="74.71910112359552" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.01017142857142857"/></g><g><rect data-type="rect" data-label="schematic_component_5" data-x="1.58" data-y="-3.1949999999999994" x="334.4522471910113" y="496.4747191011235" width="216.29213483146066" height="78.65168539325839" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.01017142857142857"/></g><g><rect data-type="rect" data-label="U1" data-x="-0.6" data-y="0.31999999999999995" x="210.5758426966292" y="177.93539325842696" width="35.39325842696633" height="24.578651685393254" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.01017142857142857"/></g><g><rect data-type="rect" data-label="J1" data-x="1" data-y="-2.6799999999999997" x="367.87921348314615" y="472.879213483146" width="35.39325842696627" height="24.57865168539331" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.01017142857142857"/></g><g><rect data-type="rect" data-label="netId: GND
4
4
  globalConnNetId: connectivity_net2" data-x="1.5210000000000001" data-y="-1.056" x="413.2022471910112" y="304.85955056179773" width="47.191011235955045" height="41.292134831460714" fill="#00000066" stroke="#000000" stroke-width="0.01017142857142857"/></g><g><rect data-type="rect" data-label="netId: GND
5
5
  globalConnNetId: connectivity_net2" data-x="-1.1449999999999996" data-y="-3.6049999999999995" x="151.09550561797758" y="555.4634831460673" width="47.191011235955045" height="41.29213483146077" fill="#00000066" stroke="#000000" stroke-width="0.01017142857142857"/></g><g><rect data-type="rect" data-label="netId: GND
6
6
  globalConnNetId: connectivity_net2" data-x="-2.19" data-y="-1.086" x="48.3567415730337" y="307.80898876404495" width="47.191011235955045" height="41.29213483146066" fill="#00000066" stroke="#000000" stroke-width="0.01017142857142857"/></g><g><rect data-type="rect" data-label="netId: NODE
@@ -100,7 +100,7 @@ orientation: y-" data-x="1.6300000000000003" data-y="-0.39500000000000013" cx="4
100
100
  .port-label { fill: rgb(0, 100, 100); }
101
101
  .component-name { fill: rgb(0, 100, 100); }
102
102
 
103
- </style><rect class="boundary" x="0" y="0" width="1200" height="800"/><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"><path d="M 798.250268332738 326.4869681443245 L 713.1938678385679 326.4869681443245" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.441462970096px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 798.250268332738 326.4869681443245 L 713.1938678385679 326.4869681443245" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"><path d="M 833.487919966037 206.19291601685552 L 833.487919966037 266.33994208059 L 773.948439620118 266.33994208059 L 773.948439620118 326.4869681443245" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.441462970096px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 833.487919966037 206.19291601685552 L 833.487919966037 266.33994208059 L 773.948439620118 266.33994208059 L 773.948439620118 326.4869681443245" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"><path d="M 615.986552988088 691.0143988336245 L 418.53419469805056 691.0143988336245 L 418.53419469805056 652.739018611248" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.441462970096px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 615.986552988088 691.0143988336245 L 418.53419469805056 691.0143988336245 L 418.53419469805056 652.739018611248" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"><path d="M 421.57192328712796 326.4869681443245 L 418.53419469805056 326.4869681443245 L 418.53419469805056 350.7887968569445 L 421.57192328712796 350.7887968569445" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.441462970096px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 421.57192328712796 326.4869681443245 L 418.53419469805056 326.4869681443245 L 418.53419469805056 350.7887968569445 L 421.57192328712796 350.7887968569445" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"><path d="M 418.53419469805056 560.3920695032919 L 418.53419469805056 350.7887968569445" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.441462970096px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 418.53419469805056 560.3920695032919 L 418.53419469805056 350.7887968569445" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"><path d="M 833.487919966037 133.28742987899554 L 833.487919966037 108.98560116637555 L 773.3408939023025 108.98560116637555 L 773.3408939023025 277.8833107190845 L 713.1938678385679 277.8833107190845" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.441462970096px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 833.487919966037 133.28742987899554 L 833.487919966037 108.98560116637555 L 773.3408939023025 108.98560116637555 L 773.3408939023025 277.8833107190845 L 713.1938678385679 277.8833107190845" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"><path d="M 421.57192328712796 302.1851394317045 L 392.7135016908917 302.1851394317045 L 392.7135016908917 268.1625792340365 L 291.557139674611 268.1625792340365 L 291.557139674611 292.46440794665654" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.441462970096px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 421.57192328712796 302.1851394317045 L 392.7135016908917 302.1851394317045 L 392.7135016908917 268.1625792340365 L 291.557139674611 268.1625792340365 L 291.557139674611 292.46440794665654" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"><path d="M 713.1938678385679 350.7887968569445 L 742.4775714372751 350.7887968569445 L 742.4775714372751 381.2875918912826" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.441462970096px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 713.1938678385679 350.7887968569445 L 742.4775714372751 350.7887968569445 L 742.4775714372751 381.2875918912826" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_8__stack1"><path d="M 615.986552988088 642.4107414083844 L 586.7028493893808 642.4107414083844 L 586.7028493893808 617.9874035522013" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.441462970096px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 615.986552988088 642.4107414083844 L 586.7028493893808 642.4107414083844 L 586.7028493893808 617.9874035522013" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"><circle cx="418.53419469805056" cy="350.7887968569445" r="3.6452743068929996" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_8__stack1"/><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_0__stack1"><rect class="component chip sch-component-body" x="470.17558071236795" y="253.5814820064645" width="194.41462970096006" height="121.5091435631" stroke-width="2.430182871262px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="470.17558071236795" y="253.5814820064645" width="194.41462970096006" height="121.5091435631" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="664.590210413328" y1="350.7887968569445" x2="713.1938678385679" y2="350.7887968569445" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_0_0__stack1"><rect x="710.763684967306" y="348.3586139856825" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="688.892039125948" y="348.3586139856825" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="470.17558071236795" y1="350.7887968569445" x2="421.57192328712796" y2="350.7887968569445" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_0_1__stack1"><rect x="419.14174041586597" y="348.3586139856825" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="445.8737519997479" y="348.3586139856825" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="664.590210413328" y1="302.1851394317045" x2="710.763684967306" y2="302.1851394317045" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_0_2__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="713.1938678385679" cy="302.1851394317045" r="2.430182871262" stroke-width="2.430182871262px"/><rect x="710.763684967306" y="299.7549565604425" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="688.892039125948" y="299.7549565604425" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="470.17558071236795" y1="277.8833107190845" x2="424.00210615838995" y2="277.8833107190845" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_0_3__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="421.57192328712796" cy="277.8833107190845" r="2.430182871262" stroke-width="2.430182871262px"/><rect x="419.14174041586597" y="275.4531278478225" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="445.8737519997479" y="275.4531278478225" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="470.17558071236795" y1="302.1851394317045" x2="421.57192328712796" y2="302.1851394317045" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_0_4__stack1"><rect x="419.14174041586597" y="299.7549565604425" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="445.8737519997479" y="299.7549565604425" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="470.17558071236795" y1="326.4869681443245" x2="421.57192328712796" y2="326.4869681443245" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_0_5__stack1"><rect x="419.14174041586597" y="324.05678527306253" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="445.8737519997479" y="324.0567852730625" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="664.590210413328" y1="326.4869681443245" x2="713.1938678385679" y2="326.4869681443245" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_0_6__stack1"><rect x="710.763684967306" y="324.05678527306253" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="688.892039125948" y="324.05678527306253" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="664.590210413328" y1="277.8833107190845" x2="713.1938678385679" y2="277.8833107190845" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_0_7__stack1"><rect x="710.763684967306" y="275.4531278478225" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="688.892039125948" y="275.4531278478225" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_1__stack1"><rect class="component chip sch-component-body" x="793.9974483080294" y="163.6647157697705" width="102.67522631081954" height="12.150914356310011" stroke-width="2.430182871262px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="793.9974483080294" y="163.6647157697705" width="102.67522631081954" height="12.150914356310011" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="833.487919966037" y1="163.6647157697705" x2="833.487919966037" y2="133.28742987899554" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_1_0__stack1"><rect x="831.057737094775" y="130.85724700773355" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="831.0577370947749" y="148.47607282438304" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform="rotate(-90 831.0577370947749 148.47607282438304)"></text><line class="component-pin sch-component-pin sch-port-line" x1="833.487919966037" y1="175.81563012608052" x2="833.487919966037" y2="206.19291601685552" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_1_1__stack1"><rect x="831.057737094775" y="203.76273314559353" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="831.0577370947749" y="191.004273071468" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform="rotate(-90 831.0577370947749 191.004273071468)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_2__stack1"><rect class="component chip sch-component-body" x="828.627554223513" y="285.1738593328705" width="12.150914356309954" height="82.62621762290803" stroke-width="2.430182871262px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="828.627554223513" y="285.1738593328705" width="12.150914356309954" height="82.62621762290803" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="828.627554223513" y1="326.4869681443245" x2="798.250268332738" y2="326.4869681443245" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_2_0__stack1"><rect x="795.820085461476" y="324.05678527306253" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="813.4389112781255" y="324.05678527306253" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="840.778468579823" y1="326.4869681443245" x2="868.725571599336" y2="326.4869681443245" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_2_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="871.1557544705979" cy="326.4869681443245" r="2.430182871262" stroke-width="2.430182871262px"/><rect x="868.7255715993359" y="324.05678527306253" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="855.9671115252104" y="324.05678527306253" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_3__stack1"><rect class="component chip sch-component-body" x="379.043723040043" y="600.4900868791149" width="111.78841207805203" height="12.150914356310068" stroke-width="2.430182871262px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="379.043723040043" y="600.4900868791149" width="111.78841207805203" height="12.150914356310068" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="418.53419469805056" y1="600.4900868791149" x2="418.53419469805056" y2="560.3920695032919" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_3_0__stack1"><rect x="416.10401182678856" y="557.9618866320299" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="416.1040118267885" y="580.4410781912034" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform="rotate(-90 416.1040118267885 580.4410781912034)"></text><line class="component-pin sch-component-pin sch-port-line" x1="418.53419469805056" y1="612.6410012354249" x2="418.53419469805056" y2="652.739018611248" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_3_1__stack1"><rect x="416.10401182678856" y="650.308835739986" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="416.1040118267885" y="632.6900099233364" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform="rotate(-90 416.1040118267885 632.6900099233364)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_4__stack1"><rect class="component chip sch-component-body" x="252.0666680166035" y="332.5624253224795" width="111.78841207805198" height="12.150914356310068" stroke-width="2.430182871262px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="252.0666680166035" y="332.5624253224795" width="111.78841207805198" height="12.150914356310068" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="291.557139674611" y1="332.5624253224795" x2="291.557139674611" y2="292.46440794665654" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_4_0__stack1"><rect x="289.126956803349" y="290.03422507539455" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="289.12695680334895" y="312.51341663456805" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform="rotate(-90 289.12695680334895 312.51341663456805)"></text><line class="component-pin sch-component-pin sch-port-line" x1="291.557139674611" y1="344.7133396787895" x2="291.557139674611" y2="382.38117418335054" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_4_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="291.557139674611" cy="384.81135705461253" r="2.430182871262" stroke-width="2.430182871262px"/><rect x="289.126956803349" y="382.38117418335054" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="289.12695680334895" y="364.762348366701" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform="rotate(-90 289.12695680334895 364.762348366701)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_5__stack1"><rect class="component chip sch-component-body" x="664.5902104133279" y="618.1089126957645" width="170.11280098834004" height="97.20731485047986" stroke-width="2.430182871262px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="664.5902104133279" y="618.1089126957645" width="170.11280098834004" height="97.20731485047986" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="664.5902104133279" y1="642.4107414083844" x2="615.986552988088" y2="642.4107414083844" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_5_0__stack1"><rect x="613.556370116826" y="639.9805585371224" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="640.288381700708" y="639.9805585371224" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="664.5902104133279" y1="666.7125701210044" x2="618.41673585935" y2="666.7125701210044" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_5_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="615.986552988088" cy="666.7125701210044" r="2.430182871262" stroke-width="2.430182871262px"/><rect x="613.556370116826" y="664.2823872497424" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="640.288381700708" y="664.2823872497424" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="664.5902104133279" y1="691.0143988336245" x2="615.986552988088" y2="691.0143988336245" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_5_2__stack1"><rect x="613.556370116826" y="688.5842159623625" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="640.288381700708" y="688.5842159623625" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="713.1938678385679" cy="350.7887968569445" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="421.57192328712796" cy="350.7887968569445" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_2__stack1"><circle cx="713.1938678385679" cy="302.1851394317045" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_3__stack1"><circle cx="421.57192328712796" cy="277.8833107190845" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_4__stack1"><circle cx="421.57192328712796" cy="302.1851394317045" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_5__stack1"><circle cx="421.57192328712796" cy="326.4869681443245" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_6__stack1"><circle cx="713.1938678385679" cy="326.4869681443245" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_7__stack1"><circle cx="713.1938678385679" cy="277.8833107190845" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0__stack1"><circle cx="833.487919966037" cy="133.28742987899554" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1__stack1"><circle cx="833.487919966037" cy="206.19291601685552" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0__stack1"><circle cx="798.250268332738" cy="326.4869681443245" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1__stack1"><circle cx="871.1557544705979" cy="326.4869681443245" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_0__stack1"><circle cx="418.53419469805056" cy="560.3920695032919" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_1__stack1"><circle cx="418.53419469805056" cy="652.739018611248" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_0__stack1"><circle cx="291.557139674611" cy="292.46440794665654" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_1__stack1"><circle cx="291.557139674611" cy="384.81135705461253" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_0__stack1"><circle cx="615.986552988088" cy="642.4107414083844" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_1__stack1"><circle cx="615.986552988088" cy="666.7125701210044" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_2__stack1"><circle cx="615.986552988088" cy="691.0143988336245" r="4.860365742524" fill="red" opacity="0"/></g><rect class="component-overlay sch-component-overlay sch-net-label-overlay" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" x="727.8964742097031" y="381.2875918912826" width="29.16219445514389" height="21.87164584135803" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" d="M 727.8964742097031 403.15923773264063 L 757.058668664847 403.15923773264063" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" d="M 742.4775714372751 403.15923773264063 L 742.4775714372751 381.2875918912826" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" x="742.4775714372751" y="409.2346949107956" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="21.871645841358px">XX</text><rect class="component-overlay sch-component-overlay sch-net-label-overlay" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_1__stack1" x="403.95309747047855" y="691.0143988336243" width="29.162194455144004" height="21.87164584135803" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_1__stack1" d="M 403.95309747047855 712.8860446749824 L 433.11529192562256 712.8860446749824" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_1__stack1" d="M 418.53419469805056 712.8860446749824 L 418.53419469805056 691.0143988336243" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_1__stack1" x="418.53419469805056" y="718.9615018531374" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="21.871645841358px">XX</text><rect class="component-overlay sch-component-overlay sch-net-label-overlay" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_2__stack1" x="276.976042447039" y="384.81135705461253" width="29.162194455144004" height="21.87164584135803" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_2__stack1" d="M 276.976042447039 406.68300289597056 L 306.138236902183 406.68300289597056" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_2__stack1" d="M 291.557139674611 406.68300289597056 L 291.557139674611 384.81135705461253" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_2__stack1" x="291.557139674611" y="412.75846007412554" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="21.871645841358px">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_3__stack1" d="
103
+ </style><rect class="boundary" x="0" y="0" width="1200" height="800"/><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"><path d="M 798.250268332738 326.4869681443245 L 713.1938678385679 326.4869681443245" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.441462970096px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 798.250268332738 326.4869681443245 L 713.1938678385679 326.4869681443245" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"><path d="M 833.487919966037 206.19291601685552 L 833.487919966037 266.33994208059 L 773.948439620118 266.33994208059 L 773.948439620118 326.4869681443245" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.441462970096px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 833.487919966037 206.19291601685552 L 833.487919966037 266.33994208059 L 773.948439620118 266.33994208059 L 773.948439620118 326.4869681443245" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"><path d="M 615.986552988088 691.0143988336245 L 418.53419469805056 691.0143988336245 L 418.53419469805056 652.739018611248" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.441462970096px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 615.986552988088 691.0143988336245 L 418.53419469805056 691.0143988336245 L 418.53419469805056 652.739018611248" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"><path d="M 421.57192328712796 326.4869681443245 L 418.53419469805056 326.4869681443245 L 418.53419469805056 350.7887968569445 L 421.57192328712796 350.7887968569445" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.441462970096px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 421.57192328712796 326.4869681443245 L 418.53419469805056 326.4869681443245 L 418.53419469805056 350.7887968569445 L 421.57192328712796 350.7887968569445" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"><path d="M 418.53419469805056 560.3920695032919 L 418.53419469805056 350.7887968569445" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.441462970096px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 418.53419469805056 560.3920695032919 L 418.53419469805056 350.7887968569445" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"><path d="M 833.487919966037 133.28742987899554 L 833.487919966037 108.98560116637555 L 773.3408939023025 108.98560116637555 L 773.3408939023025 277.8833107190845 L 713.1938678385679 277.8833107190845" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.441462970096px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 833.487919966037 133.28742987899554 L 833.487919966037 108.98560116637555 L 773.3408939023025 108.98560116637555 L 773.3408939023025 277.8833107190845 L 713.1938678385679 277.8833107190845" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"><path d="M 421.57192328712796 302.1851394317045 L 364.46262581247095 302.1851394317045 L 364.46262581247095 268.1625792340365 L 291.557139674611 268.1625792340365 L 291.557139674611 292.46440794665654" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.441462970096px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 421.57192328712796 302.1851394317045 L 364.46262581247095 302.1851394317045 L 364.46262581247095 268.1625792340365 L 291.557139674611 268.1625792340365 L 291.557139674611 292.46440794665654" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"><path d="M 713.1938678385679 350.7887968569445 L 742.4775714372751 350.7887968569445 L 742.4775714372751 381.2875918912826" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.441462970096px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 713.1938678385679 350.7887968569445 L 742.4775714372751 350.7887968569445 L 742.4775714372751 381.2875918912826" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_8__stack1"><path d="M 615.986552988088 642.4107414083844 L 586.7028493893808 642.4107414083844 L 586.7028493893808 617.9874035522013" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="19.441462970096px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 615.986552988088 642.4107414083844 L 586.7028493893808 642.4107414083844 L 586.7028493893808 617.9874035522013" stroke="rgb(0, 150, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"><circle cx="418.53419469805056" cy="350.7887968569445" r="3.6452743068929996" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_8__stack1"/><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_0__stack1"><rect class="component chip sch-component-body" x="470.17558071236795" y="253.5814820064645" width="194.41462970096006" height="121.5091435631" stroke-width="2.430182871262px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="470.17558071236795" y="253.5814820064645" width="194.41462970096006" height="121.5091435631" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="664.590210413328" y1="350.7887968569445" x2="713.1938678385679" y2="350.7887968569445" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_0_0__stack1"><rect x="710.763684967306" y="348.3586139856825" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="688.892039125948" y="348.3586139856825" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="470.17558071236795" y1="350.7887968569445" x2="421.57192328712796" y2="350.7887968569445" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_0_1__stack1"><rect x="419.14174041586597" y="348.3586139856825" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="445.8737519997479" y="348.3586139856825" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="664.590210413328" y1="302.1851394317045" x2="710.763684967306" y2="302.1851394317045" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_0_2__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="713.1938678385679" cy="302.1851394317045" r="2.430182871262" stroke-width="2.430182871262px"/><rect x="710.763684967306" y="299.7549565604425" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="688.892039125948" y="299.7549565604425" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="470.17558071236795" y1="277.8833107190845" x2="424.00210615838995" y2="277.8833107190845" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_0_3__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="421.57192328712796" cy="277.8833107190845" r="2.430182871262" stroke-width="2.430182871262px"/><rect x="419.14174041586597" y="275.4531278478225" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="445.8737519997479" y="275.4531278478225" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="470.17558071236795" y1="302.1851394317045" x2="421.57192328712796" y2="302.1851394317045" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_0_4__stack1"><rect x="419.14174041586597" y="299.7549565604425" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="445.8737519997479" y="299.7549565604425" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="470.17558071236795" y1="326.4869681443245" x2="421.57192328712796" y2="326.4869681443245" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_0_5__stack1"><rect x="419.14174041586597" y="324.05678527306253" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="445.8737519997479" y="324.0567852730625" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="664.590210413328" y1="326.4869681443245" x2="713.1938678385679" y2="326.4869681443245" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_0_6__stack1"><rect x="710.763684967306" y="324.05678527306253" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="688.892039125948" y="324.05678527306253" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="664.590210413328" y1="277.8833107190845" x2="713.1938678385679" y2="277.8833107190845" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_0_7__stack1"><rect x="710.763684967306" y="275.4531278478225" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="688.892039125948" y="275.4531278478225" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_1__stack1"><rect class="component chip sch-component-body" x="793.9974483080294" y="163.6647157697705" width="102.67522631081954" height="12.150914356310011" stroke-width="2.430182871262px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="793.9974483080294" y="163.6647157697705" width="102.67522631081954" height="12.150914356310011" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="833.487919966037" y1="163.6647157697705" x2="833.487919966037" y2="133.28742987899554" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_1_0__stack1"><rect x="831.057737094775" y="130.85724700773355" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="831.0577370947749" y="148.47607282438304" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform="rotate(-90 831.0577370947749 148.47607282438304)"></text><line class="component-pin sch-component-pin sch-port-line" x1="833.487919966037" y1="175.81563012608052" x2="833.487919966037" y2="206.19291601685552" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_1_1__stack1"><rect x="831.057737094775" y="203.76273314559353" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="831.0577370947749" y="191.004273071468" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform="rotate(-90 831.0577370947749 191.004273071468)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_2__stack1"><rect class="component chip sch-component-body" x="828.627554223513" y="285.1738593328705" width="12.150914356309954" height="82.62621762290803" stroke-width="2.430182871262px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="828.627554223513" y="285.1738593328705" width="12.150914356309954" height="82.62621762290803" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="828.627554223513" y1="326.4869681443245" x2="798.250268332738" y2="326.4869681443245" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_2_0__stack1"><rect x="795.820085461476" y="324.05678527306253" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="813.4389112781255" y="324.05678527306253" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="840.778468579823" y1="326.4869681443245" x2="868.725571599336" y2="326.4869681443245" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_2_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="871.1557544705979" cy="326.4869681443245" r="2.430182871262" stroke-width="2.430182871262px"/><rect x="868.7255715993359" y="324.05678527306253" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="855.9671115252104" y="324.05678527306253" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_3__stack1"><rect class="component chip sch-component-body" x="379.043723040043" y="600.4900868791149" width="111.78841207805203" height="12.150914356310068" stroke-width="2.430182871262px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="379.043723040043" y="600.4900868791149" width="111.78841207805203" height="12.150914356310068" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="418.53419469805056" y1="600.4900868791149" x2="418.53419469805056" y2="560.3920695032919" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_3_0__stack1"><rect x="416.10401182678856" y="557.9618866320299" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="416.1040118267885" y="580.4410781912034" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform="rotate(-90 416.1040118267885 580.4410781912034)"></text><line class="component-pin sch-component-pin sch-port-line" x1="418.53419469805056" y1="612.6410012354249" x2="418.53419469805056" y2="652.739018611248" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_3_1__stack1"><rect x="416.10401182678856" y="650.308835739986" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="416.1040118267885" y="632.6900099233364" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform="rotate(-90 416.1040118267885 632.6900099233364)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_4__stack1"><rect class="component chip sch-component-body" x="252.0666680166035" y="332.5624253224795" width="111.78841207805198" height="12.150914356310068" stroke-width="2.430182871262px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="252.0666680166035" y="332.5624253224795" width="111.78841207805198" height="12.150914356310068" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="291.557139674611" y1="332.5624253224795" x2="291.557139674611" y2="292.46440794665654" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_4_0__stack1"><rect x="289.126956803349" y="290.03422507539455" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="289.12695680334895" y="312.51341663456805" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform="rotate(-90 289.12695680334895 312.51341663456805)"></text><line class="component-pin sch-component-pin sch-port-line" x1="291.557139674611" y1="344.7133396787895" x2="291.557139674611" y2="382.38117418335054" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_4_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="291.557139674611" cy="384.81135705461253" r="2.430182871262" stroke-width="2.430182871262px"/><rect x="289.126956803349" y="382.38117418335054" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="289.12695680334895" y="364.762348366701" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform="rotate(-90 289.12695680334895 364.762348366701)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_5__stack1"><rect class="component chip sch-component-body" x="664.5902104133279" y="618.1089126957645" width="170.11280098834004" height="97.20731485047986" stroke-width="2.430182871262px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="664.5902104133279" y="618.1089126957645" width="170.11280098834004" height="97.20731485047986" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="664.5902104133279" y1="642.4107414083844" x2="615.986552988088" y2="642.4107414083844" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_5_0__stack1"><rect x="613.556370116826" y="639.9805585371224" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="640.288381700708" y="639.9805585371224" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="664.5902104133279" y1="666.7125701210044" x2="618.41673585935" y2="666.7125701210044" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_5_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="615.986552988088" cy="666.7125701210044" r="2.430182871262" stroke-width="2.430182871262px"/><rect x="613.556370116826" y="664.2823872497424" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="640.288381700708" y="664.2823872497424" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="664.5902104133279" y1="691.0143988336245" x2="615.986552988088" y2="691.0143988336245" stroke-width="2.430182871262px"/><g class="sch-port" data-schematic-port-id="source_port_5_2__stack1"><rect x="613.556370116826" y="688.5842159623625" width="4.860365742524" height="4.860365742524" opacity="0"/></g><text class="pin-number sch-pin-number" x="640.288381700708" y="688.5842159623625" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="18.226371534465px" transform=""></text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="713.1938678385679" cy="350.7887968569445" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="421.57192328712796" cy="350.7887968569445" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_2__stack1"><circle cx="713.1938678385679" cy="302.1851394317045" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_3__stack1"><circle cx="421.57192328712796" cy="277.8833107190845" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_4__stack1"><circle cx="421.57192328712796" cy="302.1851394317045" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_5__stack1"><circle cx="421.57192328712796" cy="326.4869681443245" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_6__stack1"><circle cx="713.1938678385679" cy="326.4869681443245" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_7__stack1"><circle cx="713.1938678385679" cy="277.8833107190845" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0__stack1"><circle cx="833.487919966037" cy="133.28742987899554" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1__stack1"><circle cx="833.487919966037" cy="206.19291601685552" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0__stack1"><circle cx="798.250268332738" cy="326.4869681443245" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1__stack1"><circle cx="871.1557544705979" cy="326.4869681443245" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_0__stack1"><circle cx="418.53419469805056" cy="560.3920695032919" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_1__stack1"><circle cx="418.53419469805056" cy="652.739018611248" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_0__stack1"><circle cx="291.557139674611" cy="292.46440794665654" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_1__stack1"><circle cx="291.557139674611" cy="384.81135705461253" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_0__stack1"><circle cx="615.986552988088" cy="642.4107414083844" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_1__stack1"><circle cx="615.986552988088" cy="666.7125701210044" r="4.860365742524" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_2__stack1"><circle cx="615.986552988088" cy="691.0143988336245" r="4.860365742524" fill="red" opacity="0"/></g><rect class="component-overlay sch-component-overlay sch-net-label-overlay" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" x="727.8964742097031" y="381.2875918912826" width="29.16219445514389" height="21.87164584135803" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" d="M 727.8964742097031 403.15923773264063 L 757.058668664847 403.15923773264063" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" d="M 742.4775714372751 403.15923773264063 L 742.4775714372751 381.2875918912826" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" x="742.4775714372751" y="409.2346949107956" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="21.871645841358px">XX</text><rect class="component-overlay sch-component-overlay sch-net-label-overlay" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_1__stack1" x="403.95309747047855" y="691.0143988336243" width="29.162194455144004" height="21.87164584135803" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_1__stack1" d="M 403.95309747047855 712.8860446749824 L 433.11529192562256 712.8860446749824" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_1__stack1" d="M 418.53419469805056 712.8860446749824 L 418.53419469805056 691.0143988336243" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_1__stack1" x="418.53419469805056" y="718.9615018531374" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="21.871645841358px">XX</text><rect class="component-overlay sch-component-overlay sch-net-label-overlay" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_2__stack1" x="276.976042447039" y="384.81135705461253" width="29.162194455144004" height="21.87164584135803" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_2__stack1" d="M 276.976042447039 406.68300289597056 L 306.138236902183 406.68300289597056" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_2__stack1" d="M 291.557139674611 406.68300289597056 L 291.557139674611 384.81135705461253" stroke="rgb(132, 0, 0)" fill="none" stroke-width="2.430182871262px" stroke-linecap="round"/><text class="sch-net-label-symbol-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_2__stack1" x="291.557139674611" y="412.75846007412554" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="21.871645841358px">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_3__stack1" d="
104
104
  M 418.53419469805056,455.5904331801182
105
105
  L 411.97270094564317,467.74134753642824
106
106
  L 341.75661718531313,467.74134753642824
@@ -0,0 +1,103 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" class="tscircuit-schematic" width="1000" height="800" style="background-color: rgb(245, 241, 237)" data-real-to-screen-transform="matrix(76.0678017673,0,0,-76.0678017673,2831.4121987398,383.3817209072)"><style>
2
+ .boundary { fill: rgb(245, 241, 237); }
3
+ .schematic-boundary { fill: none; stroke: #fff; }
4
+ .component { fill: none; stroke: rgb(132, 0, 0); }
5
+ .chip { fill: rgb(255, 255, 194); stroke: rgb(132, 0, 0); }
6
+ .component-pin { fill: none; stroke: rgb(132, 0, 0); }
7
+ .text { font-family: sans-serif; fill: rgb(0, 150, 0); }
8
+ .pin-number { fill: rgb(169, 0, 0); }
9
+ .port-label { fill: rgb(0, 100, 100); }
10
+ .component-name { fill: rgb(0, 100, 100); }
11
+
12
+ </style><rect class="boundary" x="0" y="0" width="1000" height="800"/><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0"><path d="M 321.1747404189 716.5586926479741 L 321.1747404189 731.7722530014344 L 549.3781457207997 731.7722530014344 L 549.3781457207997 716.5586926479741" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="12.170848282768px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 321.1747404189 716.5586926479741 L 321.1747404189 731.7722530014344 L 549.3781457207997 731.7722530014344 L 549.3781457207997 716.5586926479741" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.521356035346px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1"><path d="M 469.5069538651346 398.59528126066004 L 384.23494808399164 398.59528126066004 L 384.23494808399164 311.877987245938 L 644.4628979299255 311.877987245938 L 644.4628979299255 360.56138037701004 L 629.2493375764652 360.56138037701004" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="12.170848282768px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 469.5069538651346 398.59528126066004 L 384.23494808399164 398.59528126066004 L 384.23494808399164 311.877987245938 L 644.4628979299255 311.877987245938 L 644.4628979299255 360.56138037701004 L 629.2493375764652 360.56138037701004" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.521356035346px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2"><path d="M 469.5069538651346 352.95460020028 L 440.5251213917936 352.95460020028 L 440.5251213917936 349.0751423101477" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="12.170848282768px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 469.5069538651346 352.95460020028 L 440.5251213917936 352.95460020028 L 440.5251213917936 349.0751423101477" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.521356035346px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3"><path d="M 454.2933935116748 398.59528126066004 L 384.23494808399164 398.59528126066004 L 384.23494808399164 421.4916895926173" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="12.170848282768px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 454.2933935116748 398.59528126066004 L 384.23494808399164 398.59528126066004 L 384.23494808399164 421.4916895926173" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.521356035346px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace sch-trace" data-layer="base" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4"><path d="M 629.2493375764648 375.77494073047 L 667.3593062618825 375.77494073047 L 667.3593062618825 371.8954828403377" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="12.170848282768px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 629.2493375764648 375.77494073047 L 667.3593062618825 375.77494073047 L 667.3593062618825 371.8954828403377" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.521356035346px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1"><circle cx="384.23494808399164" cy="398.59528126066004" r="2.2820340530189998" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4"/><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_0"><rect class="component chip sch-component-body" x="499.93407457205467" y="345.34782002355" width="98.8881422974905" height="76.06780176730001" stroke-width="1.521356035346px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="499.93407457205467" y="345.34782002355" width="98.8881422974905" height="76.06780176730001" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="499.93407457205467" y1="352.95460020028" x2="469.5069538651346" y2="352.95460020028" stroke-width="1.521356035346px"/><g class="sch-port" data-schematic-port-id="source_port_0_0"><rect x="467.9855978297886" y="351.433244164934" width="3.042712070692" height="3.042712070692" opacity="0"/></g><text class="pin-number sch-pin-number" x="484.7205142185949" y="351.433244164934" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="11.410170265095px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="499.93407457205467" y1="368.16816055374" x2="471.02830990048096" y2="368.16816055374" stroke-width="1.521356035346px"/><g class="sch-port" data-schematic-port-id="source_port_0_1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="469.5069538651346" cy="368.16816055374" r="1.521356035346" stroke-width="1.521356035346px"/><rect x="467.9855978297886" y="366.646804518394" width="3.042712070692" height="3.042712070692" opacity="0"/></g><text class="pin-number sch-pin-number" x="484.7205142185949" y="366.646804518394" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="11.410170265095px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="499.93407457205467" y1="383.3817209072" x2="471.02830990048096" y2="383.3817209072" stroke-width="1.521356035346px"/><g class="sch-port" data-schematic-port-id="source_port_0_2"><circle class="component-pin sch-component-pin sch-port-terminal" cx="469.5069538651346" cy="383.3817209072" r="1.521356035346" stroke-width="1.521356035346px"/><rect x="467.9855978297886" y="381.860364871854" width="3.042712070692" height="3.042712070692" opacity="0"/></g><text class="pin-number sch-pin-number" x="484.7205142185949" y="381.860364871854" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="11.410170265095px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="499.93407457205467" y1="398.59528126066004" x2="469.5069538651346" y2="398.59528126066004" stroke-width="1.521356035346px"/><g class="sch-port" data-schematic-port-id="source_port_0_3"><rect x="467.9855978297886" y="397.07392522531404" width="3.042712070692" height="3.042712070692" opacity="0"/></g><text class="pin-number sch-pin-number" x="484.7205142185949" y="397.07392522531404" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="11.410170265095px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="499.93407457205467" y1="413.80884161412" x2="471.02830990048096" y2="413.80884161412" stroke-width="1.521356035346px"/><g class="sch-port" data-schematic-port-id="source_port_0_4"><circle class="component-pin sch-component-pin sch-port-terminal" cx="469.5069538651346" cy="413.80884161412" r="1.521356035346" stroke-width="1.521356035346px"/><rect x="467.9855978297886" y="412.287485578774" width="3.042712070692" height="3.042712070692" opacity="0"/></g><text class="pin-number sch-pin-number" x="484.7205142185949" y="412.287485578774" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="11.410170265095px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="598.8222168695452" y1="406.20206143739" x2="627.7279815411189" y2="406.20206143739" stroke-width="1.521356035346px"/><g class="sch-port" data-schematic-port-id="source_port_0_5"><circle class="component-pin sch-component-pin sch-port-terminal" cx="629.2493375764648" cy="406.20206143739" r="1.521356035346" stroke-width="1.521356035346px"/><rect x="627.7279815411188" y="404.680705402044" width="3.042712070692" height="3.042712070692" opacity="0"/></g><text class="pin-number sch-pin-number" x="614.035777223005" y="404.680705402044" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="11.410170265095px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="598.8222168695452" y1="390.98850108393003" x2="627.7279815411189" y2="390.98850108393003" stroke-width="1.521356035346px"/><g class="sch-port" data-schematic-port-id="source_port_0_6"><circle class="component-pin sch-component-pin sch-port-terminal" cx="629.2493375764648" cy="390.98850108393003" r="1.521356035346" stroke-width="1.521356035346px"/><rect x="627.7279815411188" y="389.46714504858403" width="3.042712070692" height="3.042712070692" opacity="0"/></g><text class="pin-number sch-pin-number" x="614.035777223005" y="389.46714504858403" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="11.410170265095px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="598.8222168695452" y1="375.77494073047" x2="629.2493375764648" y2="375.77494073047" stroke-width="1.521356035346px"/><g class="sch-port" data-schematic-port-id="source_port_0_7"><rect x="627.7279815411188" y="374.253584695124" width="3.042712070692" height="3.042712070692" opacity="0"/></g><text class="pin-number sch-pin-number" x="614.035777223005" y="374.253584695124" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="11.410170265095px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="598.8222168695452" y1="360.56138037701004" x2="629.2493375764648" y2="360.56138037701004" stroke-width="1.521356035346px"/><g class="sch-port" data-schematic-port-id="source_port_0_8"><rect x="627.7279815411188" y="359.04002434166404" width="3.042712070692" height="3.042712070692" opacity="0"/></g><text class="pin-number sch-pin-number" x="614.035777223005" y="359.04002434166404" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="11.410170265095px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_1"><rect class="component chip sch-component-body" x="534.1645853673399" y="56.29017330781005" width="30.42712070692005" height="45.64068106037996" stroke-width="1.521356035346px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="534.1645853673399" y="56.29017330781005" width="30.42712070692005" height="45.64068106037996" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="564.59170607426" y1="71.50373366127008" x2="593.4974707458341" y2="71.50373366127008" stroke-width="1.521356035346px"/><g class="sch-port" data-schematic-port-id="source_port_1_0"><circle class="component-pin sch-component-pin sch-port-terminal" cx="595.01882678118" cy="71.50373366127008" r="1.521356035346" stroke-width="1.521356035346px"/><rect x="593.497470745834" y="69.98237762592407" width="3.042712070692" height="3.042712070692" opacity="0"/></g><text class="pin-number sch-pin-number" x="579.8052664277202" y="69.98237762592407" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="11.410170265095px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="564.59170607426" y1="86.71729401473004" x2="593.4974707458341" y2="86.71729401473004" stroke-width="1.521356035346px"/><g class="sch-port" data-schematic-port-id="source_port_1_1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="595.01882678118" cy="86.71729401473004" r="1.521356035346" stroke-width="1.521356035346px"/><rect x="593.497470745834" y="85.19593797938404" width="3.042712070692" height="3.042712070692" opacity="0"/></g><text class="pin-number sch-pin-number" x="579.8052664277202" y="85.19593797938404" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="11.410170265095px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_2"><rect class="component chip sch-component-body" x="286.9442296236148" y="683.849537888035" width="88.61898905890484" height="7.6067801767300125" stroke-width="1.521356035346px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="286.9442296236148" y="683.849537888035" width="88.61898905890484" height="7.6067801767300125" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="321.1747404189" y1="683.849537888035" x2="321.1747404189" y2="660.2685193401719" stroke-width="1.521356035346px"/><g class="sch-port" data-schematic-port-id="source_port_2_0"><circle class="component-pin sch-component-pin sch-port-terminal" cx="321.1747404189" cy="658.747163304826" r="1.521356035346" stroke-width="1.521356035346px"/><rect x="319.653384383554" y="657.22580726948" width="3.042712070692" height="3.042712070692" opacity="0"/></g><text class="pin-number sch-pin-number" x="319.65338438355366" y="671.2983505964305" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="11.410170265095px" transform="rotate(-90 319.65338438355366 671.2983505964305)"></text><line class="component-pin sch-component-pin sch-port-line" x1="321.1747404189" y1="691.456318064765" x2="321.1747404189" y2="716.5586926479741" stroke-width="1.521356035346px"/><g class="sch-port" data-schematic-port-id="source_port_2_1"><rect x="319.653384383554" y="715.0373366126281" width="3.042712070692" height="3.042712070692" opacity="0"/></g><text class="pin-number sch-pin-number" x="319.65338438355366" y="704.0075053563696" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="11.410170265095px" transform="rotate(-90 319.65338438355366 704.0075053563696)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_3"><rect class="component chip sch-component-body" x="515.1476349255149" y="683.849537888035" width="97.74712527098018" height="7.6067801767300125" stroke-width="1.521356035346px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="515.1476349255149" y="683.849537888035" width="97.74712527098018" height="7.6067801767300125" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="549.3781457207997" y1="683.849537888035" x2="549.3781457207997" y2="660.2685193401719" stroke-width="1.521356035346px"/><g class="sch-port" data-schematic-port-id="source_port_3_0"><circle class="component-pin sch-component-pin sch-port-terminal" cx="549.3781457207997" cy="658.747163304826" r="1.521356035346" stroke-width="1.521356035346px"/><rect x="547.8567896854537" y="657.22580726948" width="3.042712070692" height="3.042712070692" opacity="0"/></g><text class="pin-number sch-pin-number" x="547.8567896854538" y="671.2983505964305" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="11.410170265095px" transform="rotate(-90 547.8567896854538 671.2983505964305)"></text><line class="component-pin sch-component-pin sch-port-line" x1="549.3781457207997" y1="691.456318064765" x2="549.3781457207997" y2="716.5586926479741" stroke-width="1.521356035346px"/><g class="sch-port" data-schematic-port-id="source_port_3_1"><rect x="547.8567896854537" y="715.0373366126281" width="3.042712070692" height="3.042712070692" opacity="0"/></g><text class="pin-number sch-pin-number" x="547.8567896854538" y="704.0075053563696" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="11.410170265095px" transform="rotate(-90 547.8567896854538 704.0075053563696)"></text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0"><circle cx="469.5069538651346" cy="352.95460020028" r="3.042712070692" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1"><circle cx="469.5069538651346" cy="368.16816055374" r="3.042712070692" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_2"><circle cx="469.5069538651346" cy="383.3817209072" r="3.042712070692" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_3"><circle cx="469.5069538651346" cy="398.59528126066004" r="3.042712070692" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_4"><circle cx="469.5069538651346" cy="413.80884161412" r="3.042712070692" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_5"><circle cx="629.2493375764648" cy="406.20206143739" r="3.042712070692" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_6"><circle cx="629.2493375764648" cy="390.98850108393003" r="3.042712070692" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_7"><circle cx="629.2493375764648" cy="375.77494073047" r="3.042712070692" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_8"><circle cx="629.2493375764648" cy="360.56138037701004" r="3.042712070692" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0"><circle cx="595.01882678118" cy="71.50373366127008" r="3.042712070692" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1"><circle cx="595.01882678118" cy="86.71729401473004" r="3.042712070692" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0"><circle cx="321.1747404189" cy="658.747163304826" r="3.042712070692" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1"><circle cx="321.1747404189" cy="716.5586926479741" r="3.042712070692" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_0"><circle cx="549.3781457207997" cy="658.747163304826" r="3.042712070692" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_1"><circle cx="549.3781457207997" cy="716.5586926479741" r="3.042712070692" fill="red" opacity="0"/></g><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0" d="
13
+ M 440.5251213917936,349.0751423101477
14
+ L 432.9183412150636,344.96748101471354
15
+ L 432.9183412150636,318.8812961953141
16
+ L 448.13190156852363,318.8812961953141
17
+ L 448.13190156852363,344.96748101471354
18
+ Z
19
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.521356035346px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0" x="440.5251213917936" y="342.2290401510907" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="13.692204318114px" transform="rotate(-90 440.5251213917936 342.2290401510907)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_1" d="
20
+ M 321.1747404189,658.747163304826
21
+ L 313.56796024217,654.6395020093918
22
+ L 313.56796024217,628.5533171899924
23
+ L 328.78152059563,628.5533171899924
24
+ L 328.78152059563,654.6395020093918
25
+ Z
26
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.521356035346px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_1" x="321.1747404189" y="651.9010611457691" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="13.692204318114px" transform="rotate(-90 321.1747404189 651.9010611457691)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_2" d="
27
+ M 469.5069538651346,368.16816055374
28
+ L 465.39929256970044,375.77494073047
29
+ L 412.50681440750446,375.77494073047
30
+ L 412.50681440750446,360.56138037701
31
+ L 465.39929256970044,360.56138037701
32
+ Z
33
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.521356035346px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_2" x="462.6608517060776" y="368.16816055374" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="13.692204318114px" transform="">XXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_3" d="
34
+ M 595.01882678118,71.50373366127008
35
+ L 599.1264880766142,63.89695348454008
36
+ L 652.0189662388101,63.89695348454008
37
+ L 652.0189662388101,79.11051383800007
38
+ L 599.1264880766142,79.11051383800007
39
+ Z
40
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.521356035346px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_3" x="601.864928940237" y="71.50373366127008" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="13.692204318114px" transform="">XXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_4" d="
41
+ M 469.5069538651346,383.3817209072
42
+ L 465.39929256970044,390.98850108393003
43
+ L 412.50681440750446,390.98850108393003
44
+ L 412.50681440750446,375.77494073047
45
+ L 465.39929256970044,375.77494073047
46
+ Z
47
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.521356035346px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_4" x="462.6608517060776" y="383.3817209072" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="13.692204318114px" transform="">XXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_5" d="
48
+ M 595.01882678118,86.71729401473004
49
+ L 599.1264880766142,79.11051383800005
50
+ L 652.0189662388101,79.11051383800005
51
+ L 652.0189662388101,94.32407419146004
52
+ L 599.1264880766142,94.32407419146004
53
+ Z
54
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.521356035346px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_5" x="601.864928940237" y="86.71729401473004" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="13.692204318114px" transform="">XXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_6" d="
55
+ M 384.23494808399164,421.4916895926173
56
+ L 391.84172826072165,425.5993508880515
57
+ L 391.84172826072165,451.6855357074509
58
+ L 376.6281679072616,451.6855357074509
59
+ L 376.6281679072616,425.5993508880515
60
+ Z
61
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.521356035346px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_6" x="384.23494808399164" y="428.33779175167433" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="13.692204318114px" transform="rotate(90 384.23494808399164 428.33779175167433)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_7" d="
62
+ M 321.1747404189,731.7722530014344
63
+ L 328.78152059563,735.8799142968686
64
+ L 328.78152059563,761.966099116268
65
+ L 313.56796024217,761.966099116268
66
+ L 313.56796024217,735.8799142968686
67
+ Z
68
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.521356035346px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_7" x="321.1747404189" y="738.6183551604913" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="13.692204318114px" transform="rotate(90 321.1747404189 738.6183551604913)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_8" d="
69
+ M 469.5069538651346,413.80884161412
70
+ L 465.39929256970044,421.41562179085
71
+ L 430.3776766360355,421.41562179085
72
+ L 430.3776766360355,406.20206143739
73
+ L 465.39929256970044,406.20206143739
74
+ Z
75
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.521356035346px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_8" x="462.6608517060776" y="413.80884161412" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="13.692204318114px" transform="">XXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_9" d="
76
+ M 629.2493375764648,406.20206143739
77
+ L 633.356998871899,398.59528126066
78
+ L 668.3786148055639,398.59528126066
79
+ L 668.3786148055639,413.80884161412
80
+ L 633.356998871899,413.80884161412
81
+ Z
82
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.521356035346px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_9" x="636.0954397355217" y="406.20206143739" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="13.692204318114px" transform="">XXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_10" d="
83
+ M 629.2493375764648,390.98850108393003
84
+ L 633.356998871899,383.3817209072
85
+ L 713.0557703768914,383.3817209072
86
+ L 713.0557703768914,398.59528126066004
87
+ L 633.356998871899,398.59528126066004
88
+ Z
89
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.521356035346px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_10" x="636.0954397355217" y="390.98850108393003" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="13.692204318114px" transform="">XXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_11" d="
90
+ M 667.3593062618825,371.8954828403377
91
+ L 659.7525260851525,367.7878215449035
92
+ L 659.7525260851525,341.7016367255041
93
+ L 674.9660864386125,341.7016367255041
94
+ L 674.9660864386125,367.7878215449035
95
+ Z
96
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.521356035346px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_11" x="667.3593062618825" y="365.0493806812807" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="13.692204318114px" transform="rotate(-90 667.3593062618825 365.0493806812807)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_12" d="
97
+ M 549.3781457207997,658.747163304826
98
+ L 541.7713655440697,654.6395020093918
99
+ L 541.7713655440697,628.5533171899924
100
+ L 556.9849258975297,628.5533171899924
101
+ L 556.9849258975297,654.6395020093918
102
+ Z
103
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.521356035346px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_12" x="549.3781457207997" y="651.9010611457691" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="13.692204318114px" transform="rotate(-90 549.3781457207997 651.9010611457691)">XX</text><text class="sch-text" x="550.1388237384731" y="431.30443602059904" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="13.692204318113994px" transform="rotate(0, 550.1388237384731, 431.30443602059904)">DRV8837DSGR</text><text class="sch-text" x="518.1903469962072" y="336.6000228203105" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="13.692204318114px" transform="rotate(0, 518.1903469962072, 336.6000228203105)">U_M0</text><text class="sch-text" x="552.4208577914919" y="47.54237610457062" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="13.692204318114px" transform="rotate(0, 552.4208577914919, 47.54237610457062)">J_M0</text><rect class="schematic-box sch-box" x="499.9340745720551" y="424.45833386154203" width="100.40949833283594" height="13.692204318113966" stroke-width="1.521356035346px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="12.170848282768 6.085424141384"/><rect class="schematic-box sch-box" x="495.37000646601746" y="327.09154759939804" width="45.64068106037985" height="19.016950441824974" stroke-width="1.521356035346px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="12.170848282768 6.085424141384"/><rect class="schematic-box sch-box" x="529.6005172613022" y="38.03390088365819" width="45.64068106037985" height="19.016950441824918" stroke-width="1.521356035346px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="12.170848282768 6.085424141384"/></svg>