@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
@@ -0,0 +1,199 @@
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
+ <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="-16.315000000000005,-10.339999999999998 -17.37600000000001,-10.339999999999998 -17.37600000000001,-10.139999999999999 -16.315000000000005,-10.139999999999999" data-type="line" data-label="" points="185.6763925729441,441.3793103448276 140.6472148541111,441.3793103448276 140.6472148541111,432.89124668435016 185.6763925729441,432.89124668435016" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-16.315000000000005,-10.54 -17.37600000000001,-10.54 -17.37600000000001,-10.339999999999998" data-type="line" data-label="" points="185.6763925729441,449.8673740053051 140.6472148541111,449.8673740053051 140.6472148541111,441.3793103448276" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-16.315000000000005,-11.339999999999998 -17.37600000000001,-11.339999999999998 -17.37600000000001,-11.139999999999999 -16.315000000000005,-11.139999999999999" data-type="line" data-label="" points="185.6763925729441,483.81962864721487 140.6472148541111,483.81962864721487 140.6472148541111,475.3315649867375 185.6763925729441,475.3315649867375" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-7.267500000000004,-12.219999999999997 -7.267500000000004,-12.419999999999996 -9.832500000000003,-12.419999999999996 -9.832500000000003,-12.219999999999997" data-type="line" data-label="" points="569.655172413793,521.1671087533157 569.655172413793,529.655172413793 460.7957559681697,529.655172413793 460.7957559681697,521.1671087533157" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.915000000000001,-6.139999999999999 -12.715000000000002,-6.139999999999999 -12.715000000000002,-6.339999999999999 -12.915000000000001,-6.339999999999999" data-type="line" data-label="" points="329.973474801061,263.12997347480103 338.46153846153845,263.12997347480103 338.46153846153845,271.61803713527854 329.973474801061,271.61803713527854" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-14.215,-10.54 -14.015,-10.54 -14.015,-11.339999999999998 -14.215,-11.339999999999998" data-type="line" data-label="" points="274.8010610079576,449.8673740053051 283.2891246684351,449.8673740053051 283.2891246684351,483.81962864721487 274.8010610079576,483.81962864721487" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-7.267500000000004,-11.459999999999999 -7.267500000000004,-11.26 -9.832500000000003,-11.26 -9.832500000000003,-11.459999999999999" data-type="line" data-label="" points="569.655172413793,488.9124668435014 569.655172413793,480.42440318302397 460.7957559681697,480.42440318302397 460.7957559681697,488.9124668435014" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-17.561666666666667,-2.7399999999999993 -17.561666666666667,-2.54 -14.681666666666667,-2.54 -14.681666666666667,-2.7399999999999993" data-type="line" data-label="" points="132.76746242263482,118.83289124668431 132.76746242263482,110.34482758620689 254.9955791335102,110.34482758620689 254.9955791335102,118.83289124668431" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-11.801666666666666,-2.7399999999999993 -11.801666666666666,-2.54 -14.681666666666667,-2.54" data-type="line" data-label="" points="377.2236958443856,118.83289124668431 377.2236958443856,110.34482758620689 254.9955791335102,110.34482758620689" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-19.2975,-6.299999999999999 -19.2975,-6.499999999999998 -17.106250000000003,-6.499999999999998 -17.106250000000003,-6.139999999999999 -14.915000000000001,-6.139999999999999" data-type="line" data-label="" points="59.09814323607429,269.920424403183 59.09814323607429,278.40848806366046 152.09549071618028,278.40848806366046 152.09549071618028,263.12997347480103 245.0928381962865,263.12997347480103" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-16.315000000000005,-11.139999999999999 -17.37600000000001,-11.139999999999997 -17.37600000000001,-10.54" data-type="line" data-label="" points="185.6763925729441,475.3315649867375 140.6472148541111,475.3315649867374 140.6472148541111,449.8673740053051" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-14.215,-10.339999999999998 -12.485000000000001,-10.339999999999998 -12.485000000000001,-8.908999999999999 -14.115,-8.908999999999999 -14.115,-8.54 -15.115,-8.54 -15.115,-6.739999999999998 -14.915000000000001,-6.739999999999998" data-type="line" data-label="" points="274.8010610079576,441.3793103448276 348.2228116710876,441.3793103448276 348.2228116710876,380.64721485411144 279.0450928381963,380.64721485411144 279.0450928381963,364.98673740053056 236.60477453580904,364.98673740053056 236.60477453580904,288.5941644562334 245.0928381962865,288.5941644562334" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.715000000000002,-6.239999999999998 -11.675,-6.239999999999998 -11.675,-6.840999999999998" data-type="line" data-label="" points="338.46153846153845,267.37400530503976 382.59946949602124,267.37400530503976 382.59946949602124,292.8806366047745" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-16.315000000000005,-10.939999999999998 -17.956000000000007,-10.939999999999998 -17.956000000000007,-10.438999999999998" data-type="line" data-label="" points="185.6763925729441,466.84350132625997 116.03183023872646,466.84350132625997 116.03183023872646,445.58090185676394" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-14.015,-10.54 -13.125,-10.54 -13.125,-10.039" data-type="line" data-label="" points="283.2891246684351,449.8673740053051 321.0610079575597,449.8673740053051 321.0610079575597,428.6047745358091" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-14.915000000000001,-6.339999999999999 -15.216000000000001,-6.339999999999999 -15.216000000000001,-5.938999999999998" data-type="line" data-label="" points="245.0928381962865,271.61803713527854 232.31830238726786,271.61803713527854 232.31830238726786,254.5994694960212" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-16.315000000000005,-10.739999999999998 -17.155000000000005,-10.739999999999998" data-type="line" data-label="" points="185.6763925729441,458.3554376657825 150.02652519893877,458.3554376657825" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-14.681666666666667,-3.339999999999999 -14.681666666666667,-4.179999999999999" data-type="line" data-label="" points="254.9955791335102,144.29708222811666 254.9955791335102,179.94694960212198" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-14.215,-10.139999999999999 -13.375,-10.139999999999999" data-type="line" data-label="" points="274.8010610079576,432.89124668435016 310.45092838196297,432.89124668435016" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-17.561666666666667,-3.339999999999999 -17.561666666666667,-4.179999999999999" data-type="line" data-label="" points="132.76746242263482,144.29708222811666 132.76746242263482,179.94694960212198" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-14.915000000000001,-6.539999999999998 -15.755,-6.539999999999998" data-type="line" data-label="" points="245.0928381962865,280.10610079575594 209.44297082228115,280.10610079575594" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.915000000000001,-6.739999999999998 -11.915000000000001,-6.739999999999998" data-type="line" data-label="" points="329.973474801061,288.5941644562334 372.4137931034483,288.5941644562334" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-11.801666666666666,-3.339999999999999 -11.801666666666666,-4.339999999999999" data-type="line" data-label="" points="377.2236958443856,144.29708222811666 377.2236958443856,186.73740053050395" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.915000000000001,-6.539999999999998 -11.915000000000001,-6.539999999999998" data-type="line" data-label="" points="329.973474801061,280.10610079575594 372.4137931034483,280.10610079575594" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-8.775000000000002,-4.699999999999999 -8.775000000000002,-5.539999999999999" data-type="line" data-label="" points="505.67639257294434,202.0159151193634 505.67639257294434,237.6657824933687" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="schematic_component_65" data-x="-15.265000000000002" data-y="-10.739999999999998" x="185.6763925729441" y="424.40318302387266" width="89.12466843501352" height="67.90450928381972" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="schematic_component_66" data-x="-9.700000000000003" data-y="-11.839999999999998" x="441.6976127320955" y="488.9124668435014" width="49.442970822281154" height="32.25464190981427" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="schematic_component_67" data-x="-7.135000000000003" data-y="-11.839999999999998" x="550.557029177719" y="488.9124668435014" width="49.442970822281154" height="32.25464190981427" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="schematic_component_68" data-x="-14.464166666666667" data-y="-3.039999999999999" x="241.20247568523428" y="118.83289124668431" width="46.0477453580902" height="25.464190981432353" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="schematic_component_69" data-x="-17.344166666666666" data-y="-3.039999999999999" x="118.974358974359" y="118.83289124668431" width="46.0477453580902" height="25.464190981432353" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="schematic_component_70" data-x="-13.915000000000001" data-y="-6.439999999999999" x="245.0928381962865" y="254.64190981432355" width="84.88063660477451" height="42.44031830238731" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="schematic_component_71" data-x="-11.644166666666665" data-y="-3.039999999999999" x="363.4305923961098" y="118.83289124668431" width="40.9549071618037" height="25.464190981432353" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="schematic_component_72" data-x="-8.617500000000001" data-y="-4.3999999999999995" x="491.8832891246685" y="176.55172413793105" width="40.95490716180376" height="25.464190981432353" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="schematic_component_73" data-x="-19.165" data-y="-5.919999999999999" x="40.00000000000006" y="237.66578249336874" width="49.442970822281154" height="32.254641909814296" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="LSM6DS3TR-C" data-x="-15.255000000000003" data-y="-11.669999999999998" x="202.65251989389913" y="494.0053050397879" width="56.0212201591512" height="7.639257294429683" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="U6" data-x="-15.795000000000002" data-y="-9.824999999999998" x="200.10610079575588" y="414.2175066312997" width="15.27851458885948" height="10.610079575596842" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="SM06B-SRSS-TB(LF)(SN)" data-x="-13.255" data-y="-7.0699999999999985" x="262.0689655172414" y="298.77984084880643" width="106.9496021220159" height="7.639257294429683" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="ToF module / 3.3V logic" data-x="-13.135000000000002" data-y="-5.824999999999999" x="259.5225464190981" y="244.45623342175065" width="122.2281167108755" height="10.610079575596814" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="netId: GND
4
+ globalConnNetId: connectivity_net0" data-x="-17.37600000000001" data-y="-11.549999999999999" x="130.46153846153817" y="483.8196286472148" width="20.37135278514586" height="17.824933687002783" fill="#00000066" stroke="#000000" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="netId: GND
5
+ globalConnNetId: connectivity_net0" data-x="-7.267500000000004" data-y="-12.629999999999997" x="559.46949602122" y="529.6551724137931" width="20.37135278514586" height="17.82493368700284" fill="#00000066" stroke="#000000" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="netId: GND
6
+ globalConnNetId: connectivity_net0" data-x="-19.2975" data-y="-6.709999999999998" x="48.91246684350142" y="278.40848806366046" width="20.371352785145746" height="17.82493368700267" fill="#00000066" stroke="#000000" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="netId: GND
7
+ globalConnNetId: connectivity_net0" data-x="-11.675" data-y="-7.050999999999998" x="372.41379310344826" y="292.8806366047745" width="20.371352785145916" height="17.82493368700267" fill="#00000066" stroke="#000000" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="netId: V3V3_IMU
8
+ globalConnNetId: connectivity_net2" data-x="-17.956000000000007" data-y="-10.228999999999997" x="93.11405835543735" y="427.7559681697612" width="45.83554376657821" height="17.824933687002726" fill="#ef444466" stroke="#ef4444" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="netId: V3V3_IMU
9
+ globalConnNetId: connectivity_net2" data-x="-13.125" data-y="-9.828999999999999" x="298.1432360742706" y="410.7798408488064" width="45.83554376657821" height="17.824933687002726" fill="#ef444466" stroke="#ef4444" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="netId: V3V3_IMU
10
+ globalConnNetId: connectivity_net2" data-x="-7.267500000000004" data-y="-11.049999999999999" x="546.7374005305039" y="462.59946949602124" width="45.835543766578326" height="17.824933687002726" fill="#ef444466" stroke="#ef4444" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="netId: V3V3
11
+ globalConnNetId: connectivity_net5" data-x="-17.561666666666667" data-y="-2.33" x="120.03536693191859" y="92.51989389920422" width="25.464190981432466" height="17.824933687002655" fill="#ef444466" stroke="#ef4444" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="netId: V3V3
12
+ globalConnNetId: connectivity_net5" data-x="-15.216000000000001" data-y="-5.728999999999998" x="219.58620689655163" y="236.77453580901852" width="25.464190981432466" height="17.82493368700264" fill="#ef444466" stroke="#ef4444" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="netId: V3V3
13
+ globalConnNetId: connectivity_net5" data-x="-8.775000000000002" data-y="-3.889" x="492.9442970822281" y="158.68435013262598" width="25.464190981432466" height="17.82493368700267" fill="#ef444466" stroke="#ef4444" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="netId: V3V3
14
+ globalConnNetId: connectivity_net5" data-x="-19.2975" data-y="-5.328999999999999" x="46.36604774535806" y="219.79840848806364" width="25.464190981432466" height="17.82493368700267" fill="#ef444466" stroke="#ef4444" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="INLINE netId: IMU_INT
15
+ axis: x
16
+ side: y+" data-x="-16.735000000000007" data-y="-10.629999999999999" x="154.27055702917744" y="451.1405835543767" width="27.16180371352789" height="5.09283819628655" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="INLINE netId: I2C_SCL
17
+ axis: y
18
+ side: x-" data-x="-15.225" data-y="-7.639999999999999" x="229.3899204244031" y="313.209549071618" width="5.092838196286607" height="27.16180371352789" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="INLINE netId: I2C_SCL
19
+ axis: y
20
+ side: x-" data-x="-14.791666666666666" data-y="-3.759999999999999" x="247.78072502210426" y="148.5411140583554" width="5.092838196286607" height="27.16180371352789" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="INLINE netId: I2C_SDA
21
+ axis: x
22
+ side: y+" data-x="-13.795" data-y="-10.03" x="279.0450928381963" y="425.67639257294434" width="27.16180371352789" height="5.09283819628655" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="INLINE netId: I2C_SDA
23
+ axis: y
24
+ side: x-" data-x="-17.671666666666667" data-y="-3.759999999999999" x="125.552608311229" y="148.5411140583554" width="5.09283819628638" height="27.16180371352789" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="INLINE netId: I2C_SDA
25
+ axis: x
26
+ side: y+" data-x="-15.335" data-y="-6.429999999999998" x="213.68700265251982" y="272.8912466843501" width="27.16180371352789" height="5.092838196286436" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="INLINE netId: TOF_XSHUT
27
+ axis: x
28
+ side: y+" data-x="-12.415000000000001" data-y="-6.629999999999998" x="334.2175066312998" y="281.37931034482756" width="33.9522546419098" height="5.092838196286436" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="INLINE netId: TOF_XSHUT
29
+ axis: y
30
+ side: x-" data-x="-11.911666666666665" data-y="-3.839999999999999" x="370.0088417329797" y="148.5411140583554" width="5.09283819628655" height="33.95225464190986" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="INLINE netId: TOF_INT
31
+ axis: x
32
+ side: y+" data-x="-12.495000000000001" data-y="-6.429999999999998" x="334.2175066312998" y="272.8912466843501" width="27.16180371352789" height="5.092838196286436" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.023562499999999993"/></g><g><rect data-type="rect" data-label="INLINE netId: TOF_INT
33
+ axis: y
34
+ side: x-" data-x="-8.885000000000002" data-y="-5.119999999999999" x="498.4615384615385" y="206.2599469496021" width="5.092838196286493" height="27.16180371352789" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.023562499999999993"/></g><text data-type="text" data-label="IMU_INT" data-x="-16.415000000000006" data-y="-10.629999999999999" x="181.43236074270533" y="453.68700265251994" fill="green" font-size="5.092838196286474" font-family="sans-serif" text-anchor="end" dominant-baseline="central">IMU_INT</text><text data-type="text" data-label="I2C_SCL" data-x="-15.225" data-y="-7.639999999999999" x="231.9363395225464" y="326.790450928382" fill="green" font-size="5.092838196286474" font-family="sans-serif" text-anchor="middle" dominant-baseline="central" transform="rotate(-90, 231.9363395225464, 326.790450928382)">I2C_SCL</text><text data-type="text" data-label="I2C_SCL" data-x="-14.791666666666666" data-y="-3.439999999999999" x="250.32714412024757" y="148.5411140583554" fill="green" font-size="5.092838196286474" font-family="sans-serif" text-anchor="end" dominant-baseline="central" transform="rotate(-90, 250.32714412024757, 148.5411140583554)">I2C_SCL</text><text data-type="text" data-label="I2C_SDA" data-x="-14.115" data-y="-10.03" x="279.0450928381963" y="428.2228116710876" fill="green" font-size="5.092838196286474" font-family="sans-serif" text-anchor="start" dominant-baseline="central">I2C_SDA</text><text data-type="text" data-label="I2C_SDA" data-x="-17.671666666666667" data-y="-3.439999999999999" x="128.09902740937218" y="148.5411140583554" fill="green" font-size="5.092838196286474" font-family="sans-serif" text-anchor="end" dominant-baseline="central" transform="rotate(-90, 128.09902740937218, 148.5411140583554)">I2C_SDA</text><text data-type="text" data-label="I2C_SDA" data-x="-15.015" data-y="-6.429999999999998" x="240.8488063660477" y="275.43766578249335" fill="green" font-size="5.092838196286474" font-family="sans-serif" text-anchor="end" dominant-baseline="central">I2C_SDA</text><text data-type="text" data-label="TOF_XSHUT" data-x="-12.815000000000001" data-y="-6.629999999999998" x="334.2175066312998" y="283.9257294429708" fill="green" font-size="5.092838196286474" font-family="sans-serif" text-anchor="start" dominant-baseline="central">TOF_XSHUT</text><text data-type="text" data-label="TOF_XSHUT" data-x="-11.911666666666665" data-y="-3.439999999999999" x="372.555260831123" y="148.5411140583554" fill="green" font-size="5.092838196286474" font-family="sans-serif" text-anchor="end" dominant-baseline="central" transform="rotate(-90, 372.555260831123, 148.5411140583554)">TOF_XSHUT</text><text data-type="text" data-label="TOF_INT" data-x="-12.815000000000001" data-y="-6.429999999999998" x="334.2175066312998" y="275.43766578249335" fill="green" font-size="5.092838196286474" font-family="sans-serif" text-anchor="start" dominant-baseline="central">TOF_INT</text><text data-type="text" data-label="TOF_INT" data-x="-8.885000000000002" data-y="-4.799999999999999" x="501.00795755968176" y="206.2599469496021" fill="green" font-size="5.092838196286474" font-family="sans-serif" text-anchor="end" dominant-baseline="central" transform="rotate(-90, 501.00795755968176, 206.2599469496021)">TOF_INT</text><g><circle data-type="point" data-label="SDO_SA0
35
+ x-" data-x="-16.315000000000005" data-y="-10.139999999999999" cx="185.6763925729441" cy="432.89124668435016" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="SDx
36
+ x-" data-x="-16.315000000000005" data-y="-10.339999999999998" cx="185.6763925729441" cy="441.3793103448276" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="SCx
37
+ x-" data-x="-16.315000000000005" data-y="-10.54" cx="185.6763925729441" cy="449.8673740053051" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="INT1
38
+ x-" data-x="-16.315000000000005" data-y="-10.739999999999998" cx="185.6763925729441" cy="458.3554376657825" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VDDIO
39
+ x-" data-x="-16.315000000000005" data-y="-10.939999999999998" cx="185.6763925729441" cy="466.84350132625997" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND1
40
+ x-" data-x="-16.315000000000005" data-y="-11.139999999999999" cx="185.6763925729441" cy="475.3315649867375" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="GND2
41
+ x-" data-x="-16.315000000000005" data-y="-11.339999999999998" cx="185.6763925729441" cy="483.81962864721487" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="VDD
42
+ x+" data-x="-14.215" data-y="-11.339999999999998" cx="274.8010610079576" cy="483.81962864721487" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="INT2
43
+ x+" data-x="-14.215" data-y="-11.139999999999999" cx="274.8010610079576" cy="475.3315649867375" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="NC1
44
+ x+" data-x="-14.215" data-y="-10.939999999999998" cx="274.8010610079576" cy="466.84350132625997" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="NC2
45
+ x+" data-x="-14.215" data-y="-10.739999999999998" cx="274.8010610079576" cy="458.3554376657825" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="CS
46
+ x+" data-x="-14.215" data-y="-10.54" cx="274.8010610079576" cy="449.8673740053051" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="SCL
47
+ x+" data-x="-14.215" data-y="-10.339999999999998" cx="274.8010610079576" cy="441.3793103448276" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="SDA
48
+ x+" data-x="-14.215" data-y="-10.139999999999999" cx="274.8010610079576" cy="432.89124668435016" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
49
+ y+" data-x="-9.832500000000003" data-y="-11.459999999999999" cx="460.7957559681697" cy="488.9124668435014" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
50
+ y-" data-x="-9.832500000000003" data-y="-12.219999999999997" cx="460.7957559681697" cy="521.1671087533157" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
51
+ y+" data-x="-7.267500000000003" data-y="-11.459999999999999" cx="569.6551724137931" cy="488.9124668435014" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
52
+ y-" data-x="-7.267500000000003" data-y="-12.219999999999997" cx="569.6551724137931" cy="521.1671087533157" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
53
+ y-" data-x="-14.681666666666667" data-y="-3.339999999999999" cx="254.9955791335102" cy="144.29708222811666" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
54
+ y+" data-x="-14.681666666666667" data-y="-2.7399999999999993" cx="254.9955791335102" cy="118.83289124668431" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
55
+ y-" data-x="-17.561666666666667" data-y="-3.339999999999999" cx="132.76746242263482" cy="144.29708222811666" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
56
+ y+" data-x="-17.561666666666667" data-y="-2.7399999999999993" cx="132.76746242263482" cy="118.83289124668431" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="1
57
+ x-" data-x="-14.915000000000001" data-y="-6.139999999999999" cx="245.0928381962865" cy="263.12997347480103" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="2
58
+ x-" data-x="-14.915000000000001" data-y="-6.339999999999999" cx="245.0928381962865" cy="271.61803713527854" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="3
59
+ x-" data-x="-14.915000000000001" data-y="-6.539999999999998" cx="245.0928381962865" cy="280.10610079575594" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="4
60
+ x-" data-x="-14.915000000000001" data-y="-6.739999999999998" cx="245.0928381962865" cy="288.5941644562334" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="5
61
+ x+" data-x="-12.915000000000001" data-y="-6.739999999999998" cx="329.973474801061" cy="288.5941644562334" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="6
62
+ x+" data-x="-12.915000000000001" data-y="-6.539999999999998" cx="329.973474801061" cy="280.10610079575594" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="7
63
+ x+" data-x="-12.915000000000001" data-y="-6.339999999999999" cx="329.973474801061" cy="271.61803713527854" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="8
64
+ x+" data-x="-12.915000000000001" data-y="-6.139999999999999" cx="329.973474801061" cy="263.12997347480103" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
65
+ y-" data-x="-11.801666666666666" data-y="-3.339999999999999" cx="377.2236958443856" cy="144.29708222811666" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
66
+ y+" data-x="-11.801666666666666" data-y="-2.7399999999999993" cx="377.2236958443856" cy="118.83289124668431" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
67
+ y-" data-x="-8.775000000000002" data-y="-4.699999999999999" cx="505.67639257294434" cy="202.0159151193634" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
68
+ y+" data-x="-8.775000000000002" data-y="-4.1" cx="505.67639257294434" cy="176.55172413793105" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anode
69
+ y+" data-x="-19.2975" data-y="-5.539999999999999" cx="59.09814323607429" cy="237.6657824933687" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="cathode
70
+ y-" data-x="-19.2975" data-y="-6.299999999999999" cx="59.09814323607429" cy="269.920424403183" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anchorPoint
71
+ orientation: y-" data-x="-17.37600000000001" data-y="-11.339999999999998" cx="140.6472148541111" cy="483.81962864721487" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
72
+ orientation: y-" data-x="-7.267500000000004" data-y="-12.419999999999996" cx="569.655172413793" cy="529.655172413793" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
73
+ orientation: y-" data-x="-19.2975" data-y="-6.499999999999998" cx="59.09814323607429" cy="278.40848806366046" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
74
+ orientation: y-" data-x="-11.675" data-y="-6.840999999999998" cx="382.59946949602124" cy="292.8806366047745" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
75
+ orientation: y+" data-x="-17.956000000000007" data-y="-10.438999999999998" cx="116.03183023872646" cy="445.58090185676394" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
76
+ orientation: y+" data-x="-13.125" data-y="-10.039" cx="321.0610079575597" cy="428.6047745358091" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
77
+ orientation: y+" data-x="-7.267500000000004" data-y="-11.26" cx="569.655172413793" cy="480.42440318302397" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
78
+ orientation: y+" data-x="-17.561666666666667" data-y="-2.54" cx="132.76746242263482" cy="110.34482758620689" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
79
+ orientation: y+" data-x="-15.216000000000001" data-y="-5.938999999999998" cx="232.31830238726786" cy="254.5994694960212" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
80
+ orientation: y+" data-x="-8.775000000000002" data-y="-4.1" cx="505.67639257294434" cy="176.55172413793105" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
81
+ orientation: y+" data-x="-19.2975" data-y="-5.539999999999999" cx="59.09814323607429" cy="237.6657824933687" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="inline anchor
82
+ IMU_INT" data-x="-16.735000000000007" data-y="-10.739999999999998" cx="167.85145888594138" cy="458.3554376657825" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
83
+ I2C_SCL" data-x="-15.115" data-y="-7.639999999999999" cx="236.60477453580904" cy="326.790450928382" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
84
+ I2C_SCL" data-x="-14.681666666666667" data-y="-3.759999999999999" cx="254.9955791335102" cy="162.12201591511933" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
85
+ I2C_SDA" data-x="-13.795" data-y="-10.139999999999999" cx="292.62599469496024" cy="432.89124668435016" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
86
+ I2C_SDA" data-x="-17.561666666666667" data-y="-3.759999999999999" cx="132.76746242263482" cy="162.12201591511933" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
87
+ I2C_SDA" data-x="-15.335" data-y="-6.539999999999998" cx="227.26790450928377" cy="280.10610079575594" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
88
+ TOF_XSHUT" data-x="-12.415000000000001" data-y="-6.739999999999998" cx="351.1936339522547" cy="288.5941644562334" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
89
+ TOF_XSHUT" data-x="-11.801666666666666" data-y="-3.839999999999999" cx="377.2236958443856" cy="165.51724137931032" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
90
+ TOF_INT" data-x="-12.415000000000001" data-y="-6.539999999999998" cx="351.1936339522547" cy="280.10610079575594" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
91
+ TOF_INT" data-x="-8.775000000000002" data-y="-5.119999999999999" cx="505.67639257294434" cy="219.84084880636604" r="3" fill="green"/></g><g id="crosshair" style="display: none"><line id="crosshair-h" y1="0" y2="640" stroke="#666" stroke-width="0.5"/><line id="crosshair-v" x1="0" x2="640" stroke="#666" stroke-width="0.5"/><text id="coordinates" font-family="monospace" font-size="12" fill="#666"></text></g><script><![CDATA[
92
+ document.currentScript.parentElement.addEventListener('mousemove', (e) => {
93
+ const svg = e.currentTarget;
94
+ const rect = svg.getBoundingClientRect();
95
+ const x = e.clientX - rect.left;
96
+ const y = e.clientY - rect.top;
97
+ const crosshair = svg.getElementById('crosshair');
98
+ const h = svg.getElementById('crosshair-h');
99
+ const v = svg.getElementById('crosshair-v');
100
+ const coords = svg.getElementById('coordinates');
101
+
102
+ crosshair.style.display = 'block';
103
+ h.setAttribute('x1', '0');
104
+ h.setAttribute('x2', '640');
105
+ h.setAttribute('y1', y);
106
+ h.setAttribute('y2', y);
107
+ v.setAttribute('x1', x);
108
+ v.setAttribute('x2', x);
109
+ v.setAttribute('y1', '0');
110
+ v.setAttribute('y2', '640');
111
+
112
+ // Calculate real coordinates using inverse transformation
113
+ const matrix = {"a":42.44031830238728,"c":0,"e":878.0901856763928,"b":0,"d":-42.44031830238728,"f":2.54641909814319};
114
+ // Manually invert and apply the affine transform
115
+ // Since we only use translate and scale, we can directly compute:
116
+ // x' = (x - tx) / sx
117
+ // y' = (y - ty) / sy
118
+ const sx = matrix.a;
119
+ const sy = matrix.d;
120
+ const tx = matrix.e;
121
+ const ty = matrix.f;
122
+ const realPoint = {
123
+ x: (x - tx) / sx,
124
+ y: (y - ty) / sy // Flip y back since we used negative scale
125
+ }
126
+
127
+ coords.textContent = `(${realPoint.x.toFixed(2)}, ${realPoint.y.toFixed(2)})`;
128
+ coords.setAttribute('x', (x + 5).toString());
129
+ coords.setAttribute('y', (y - 5).toString());
130
+ });
131
+ document.currentScript.parentElement.addEventListener('mouseleave', () => {
132
+ document.currentScript.parentElement.getElementById('crosshair').style.display = 'none';
133
+ });
134
+ ]]></script>
135
+ </g>
136
+ <g transform="translate(0, 1216)">
137
+ <style>
138
+ .boundary { fill: rgb(245, 241, 237); }
139
+ .schematic-boundary { fill: none; stroke: #fff; }
140
+ .component { fill: none; stroke: rgb(132, 0, 0); }
141
+ .chip { fill: rgb(255, 255, 194); stroke: rgb(132, 0, 0); }
142
+ .component-pin { fill: none; stroke: rgb(132, 0, 0); }
143
+ .text { font-family: sans-serif; fill: rgb(0, 150, 0); }
144
+ .pin-number { fill: rgb(169, 0, 0); }
145
+ .port-label { fill: rgb(0, 100, 100); }
146
+ .component-name { fill: rgb(0, 100, 100); }
147
+
148
+ </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 389.3440713503255 591.8244644856638 L 318.7260807350099 591.8244644856638 L 318.7260807350099 578.5128734177439 L 389.3440713503255 578.5128734177439" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 389.3440713503255 591.8244644856638 L 318.7260807350099 591.8244644856638 L 318.7260807350099 578.5128734177439 L 389.3440713503255 578.5128734177439" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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 389.3440713503255 605.1360555535839 L 318.7260807350099 605.1360555535839 L 318.7260807350099 591.8244644856638" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 389.3440713503255 605.1360555535839 L 318.7260807350099 605.1360555535839 L 318.7260807350099 591.8244644856638" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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 389.3440713503255 658.3824198252638 L 318.7260807350099 658.3824198252638 L 318.7260807350099 645.0708287573439 L 389.3440713503255 645.0708287573439" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 389.3440713503255 658.3824198252638 L 318.7260807350099 658.3824198252638 L 318.7260807350099 645.0708287573439 L 389.3440713503255 645.0708287573439" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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 991.5271722853568 716.9534205241117 L 991.5271722853568 730.2650115920318 L 820.8060168392827 730.2650115920318 L 820.8060168392827 716.9534205241117" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 991.5271722853568 716.9534205241117 L 991.5271722853568 730.2650115920318 L 820.8060168392827 730.2650115920318 L 820.8060168392827 716.9534205241117" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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 615.6411195049659 312.2810520593439 L 628.9527105728858 312.2810520593439 L 628.9527105728858 325.59264312726395 L 615.6411195049659 325.59264312726395" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 615.6411195049659 312.2810520593439 L 628.9527105728858 312.2810520593439 L 628.9527105728858 325.59264312726395 L 615.6411195049659 325.59264312726395" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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 529.115777563486 605.1360555535839 L 542.4273686314059 605.1360555535839 L 542.4273686314059 658.3824198252638 L 529.115777563486 658.3824198252638" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 529.115777563486 605.1360555535839 L 542.4273686314059 605.1360555535839 L 542.4273686314059 658.3824198252638 L 529.115777563486 658.3824198252638" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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 991.5271722853568 666.3693744660159 L 991.5271722853568 653.0577833980959 L 820.8060168392827 653.0577833980959 L 820.8060168392827 666.3693744660159" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 991.5271722853568 666.3693744660159 L 991.5271722853568 653.0577833980959 L 820.8060168392827 653.0577833980959 L 820.8060168392827 666.3693744660159" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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 306.36848702695784 85.98400390470397 L 306.36848702695784 72.67241283678402 L 498.0553984050059 72.67241283678402 L 498.0553984050059 85.98400390470397" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 306.36848702695784 85.98400390470397 L 306.36848702695784 72.67241283678402 L 498.0553984050059 72.67241283678402 L 498.0553984050059 85.98400390470397" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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 689.742309783054 85.98400390470397 L 689.742309783054 72.67241283678402 L 498.0553984050059 72.67241283678402" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 689.742309783054 85.98400390470397 L 689.742309783054 72.67241283678402 L 498.0553984050059 72.67241283678402" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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_9__stack1"><path d="M 190.83496954996895 322.9303249136799 L 190.83496954996895 336.24191598159985 L 336.6800891878672 336.24191598159985 L 336.6800891878672 312.2810520593439 L 482.52520882576584 312.2810520593439" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 190.83496954996895 322.9303249136799 L 190.83496954996895 336.24191598159985 L 336.6800891878672 336.24191598159985 L 336.6800891878672 312.2810520593439 L 482.52520882576584 312.2810520593439" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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_10__stack1"><path d="M 389.3440713503255 645.0708287573439 L 318.7260807350099 645.0708287573437 L 318.7260807350099 605.1360555535839" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 389.3440713503255 645.0708287573439 L 318.7260807350099 645.0708287573437 L 318.7260807350099 605.1360555535839" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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_11__stack1"><path d="M 529.115777563486 591.8244644856638 L 644.2610403009938 591.8244644856638 L 644.2610403009938 496.58003039469634 L 535.7715730974459 496.58003039469634 L 535.7715730974459 472.02014487438396 L 469.2136177578459 472.02014487438396 L 469.2136177578459 352.21582526310385 L 482.52520882576584 352.21582526310385" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 529.115777563486 591.8244644856638 L 644.2610403009938 591.8244644856638 L 644.2610403009938 496.58003039469634 L 535.7715730974459 496.58003039469634 L 535.7715730974459 472.02014487438396 L 469.2136177578459 472.02014487438396 L 469.2136177578459 352.21582526310385 L 482.52520882576584 352.21582526310385" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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_12__stack1"><path d="M 628.9527105728858 318.9368475933039 L 698.1729841260699 318.9368475933039 L 698.1729841260699 358.9381787524035" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 628.9527105728858 318.9368475933039 L 698.1729841260699 318.9368475933039 L 698.1729841260699 358.9381787524035" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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_13__stack1"><path d="M 389.3440713503255 631.7592376894238 L 280.12246663804194 631.7592376894238 L 280.12246663804194 598.4137020642843" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 389.3440713503255 631.7592376894238 L 280.12246663804194 631.7592376894238 L 280.12246663804194 598.4137020642843" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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_14__stack1"><path d="M 542.4273686314059 605.1360555535839 L 601.6639488836499 605.1360555535839 L 601.6639488836499 571.7905199284444" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 542.4273686314059 605.1360555535839 L 601.6639488836499 605.1360555535839 L 601.6639488836499 571.7905199284444" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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_15__stack1"><path d="M 482.52520882576584 325.59264312726395 L 462.4912642685463 325.59264312726395 L 462.4912642685463 298.90290303608424" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 482.52520882576584 325.59264312726395 L 462.4912642685463 325.59264312726395 L 462.4912642685463 298.90290303608424" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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_16__stack1"><path d="M 389.3440713503255 618.4476466215038 L 333.43538886506167 618.4476466215038" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 389.3440713503255 618.4476466215038 L 333.43538886506167 618.4476466215038" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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_17__stack1"><path d="M 498.0553984050059 125.91877710846393 L 498.0553984050059 181.82745959372792" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 498.0553984050059 125.91877710846393 L 498.0553984050059 181.82745959372792" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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_18__stack1"><path d="M 529.115777563486 578.5128734177439 L 585.0244600487499 578.5128734177439" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 529.115777563486 578.5128734177439 L 585.0244600487499 578.5128734177439" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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_19__stack1"><path d="M 306.36848702695784 125.91877710846393 L 306.36848702695784 181.82745959372792" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 306.36848702695784 125.91877710846393 L 306.36848702695784 181.82745959372792" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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_20__stack1"><path d="M 482.52520882576584 338.9042341951839 L 426.6165263405019 338.9042341951839" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 482.52520882576584 338.9042341951839 L 426.6165263405019 338.9042341951839" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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_21__stack1"><path d="M 615.6411195049659 352.21582526310385 L 682.1990748445659 352.21582526310385" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 615.6411195049659 352.21582526310385 L 682.1990748445659 352.21582526310385" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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_22__stack1"><path d="M 689.742309783054 125.91877710846393 L 689.742309783054 192.47673244806393" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 689.742309783054 125.91877710846393 L 689.742309783054 192.47673244806393" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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_23__stack1"><path d="M 615.6411195049659 338.9042341951839 L 682.1990748445659 338.9042341951839" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 615.6411195049659 338.9042341951839 L 682.1990748445659 338.9042341951839" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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_24__stack1"><path d="M 891.1910546109098 216.43759637031994 L 891.1910546109098 272.34627885558393" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="10.649272854336001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 891.1910546109098 216.43759637031994 L 891.1910546109098 272.34627885558393" stroke="rgb(0, 150, 0)" fill="none" stroke-width="1.3311591067920001px" 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"><circle cx="318.7260807350099" cy="591.8244644856638" r="1.996738660188" 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_1__stack1"><circle cx="318.7260807350099" cy="605.1360555535839" r="1.996738660188" 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__stack1"><circle cx="318.7260807350099" cy="645.0708287573439" r="1.996738660188" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="389.3440713503255" cy="645.0708287573439" r="1.996738660188" 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_3__stack1"/><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"><circle cx="542.4273686314059" cy="605.1360555535839" r="1.996738660188" 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_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"><circle cx="498.0553984050059" cy="72.67241283678402" r="1.996738660188" 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_8__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_9__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_10__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_11__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_12__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_13__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_14__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_15__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_16__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_17__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_18__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_19__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_20__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_21__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_22__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_23__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_24__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="415.96725348616565" y="565.2012823498238" width="86.52534194148029" height="106.49272854336004" stroke-width="1.3311591067920001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="415.96725348616565" y="565.2012823498238" width="86.52534194148029" height="106.49272854336004" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="415.96725348616565" y1="578.5128734177439" x2="389.3440713503255" y2="578.5128734177439" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_0_0__stack1"><rect x="388.01291224353355" y="577.1817143109519" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="402.6556624182456" y="577.181714310952" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform=""></text><text class="pin-number sch-pin-label" x="422.62304902012556" y="578.5128734177439" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="9.983693300939999px" transform="">SDO_SA0</text><line class="component-pin sch-component-pin sch-port-line" x1="415.96725348616565" y1="591.8244644856638" x2="389.3440713503255" y2="591.8244644856638" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_0_1__stack1"><rect x="388.01291224353355" y="590.4933053788718" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="402.6556624182456" y="590.4933053788719" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform=""></text><text class="pin-number sch-pin-label" x="422.62304902012556" y="591.8244644856638" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="9.983693300939999px" transform="">SDx</text><line class="component-pin sch-component-pin sch-port-line" x1="415.96725348616565" y1="605.1360555535839" x2="389.3440713503255" y2="605.1360555535839" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_0_2__stack1"><rect x="388.01291224353355" y="603.8048964467919" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="402.6556624182456" y="603.804896446792" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform=""></text><text class="pin-number sch-pin-label" x="422.62304902012556" y="605.1360555535839" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="9.983693300939999px" transform="">SCx</text><line class="component-pin sch-component-pin sch-port-line" x1="415.96725348616565" y1="618.4476466215038" x2="389.3440713503255" y2="618.4476466215038" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_0_3__stack1"><rect x="388.01291224353355" y="617.1164875147118" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="402.6556624182456" y="617.1164875147119" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform=""></text><text class="pin-number sch-pin-label" x="422.62304902012556" y="618.4476466215038" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="9.983693300939999px" transform="">INT1</text><line class="component-pin sch-component-pin sch-port-line" x1="415.96725348616565" y1="631.7592376894238" x2="389.3440713503255" y2="631.7592376894238" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_0_4__stack1"><rect x="388.01291224353355" y="630.4280785826318" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="402.6556624182456" y="630.4280785826319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform=""></text><text class="pin-number sch-pin-label" x="422.62304902012556" y="631.7592376894238" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="9.983693300939999px" transform="">VDDIO</text><line class="component-pin sch-component-pin sch-port-line" x1="415.96725348616565" y1="645.0708287573439" x2="389.3440713503255" y2="645.0708287573439" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_0_5__stack1"><rect x="388.01291224353355" y="643.7396696505518" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="402.6556624182456" y="643.739669650552" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform=""></text><text class="pin-number sch-pin-label" x="422.62304902012556" y="645.0708287573439" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="9.983693300939999px" transform="">GND1</text><line class="component-pin sch-component-pin sch-port-line" x1="415.96725348616565" y1="658.3824198252638" x2="389.3440713503255" y2="658.3824198252638" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_0_6__stack1"><rect x="388.01291224353355" y="657.0512607184718" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="402.6556624182456" y="657.0512607184719" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform=""></text><text class="pin-number sch-pin-label" x="422.62304902012556" y="658.3824198252638" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="9.983693300939999px" transform="">GND2</text><line class="component-pin sch-component-pin sch-port-line" x1="502.49259542764594" y1="658.3824198252638" x2="529.115777563486" y2="658.3824198252638" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_0_7__stack1"><rect x="527.7846184566939" y="657.0512607184718" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="515.804186495566" y="657.0512607184719" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform=""></text><text class="pin-number sch-pin-label" x="495.8367998936859" y="658.3824198252638" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="9.983693300939999px" transform="">VDD</text><line class="component-pin sch-component-pin sch-port-line" x1="502.49259542764594" y1="645.0708287573439" x2="527.7846184566939" y2="645.0708287573439" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_0_8__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="529.115777563486" cy="645.0708287573439" r="1.3311591067920001" stroke-width="1.3311591067920001px"/><rect x="527.7846184566939" y="643.7396696505518" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="515.804186495566" y="643.739669650552" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform=""></text><text class="pin-number sch-pin-label" x="495.8367998936859" y="645.0708287573439" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="9.983693300939999px" transform="">INT2</text><line class="component-pin sch-component-pin sch-port-line" x1="502.49259542764594" y1="631.7592376894238" x2="527.7846184566939" y2="631.7592376894238" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_0_9__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="529.115777563486" cy="631.7592376894238" r="1.3311591067920001" stroke-width="1.3311591067920001px"/><rect x="527.7846184566939" y="630.4280785826318" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="515.804186495566" y="630.4280785826319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform=""></text><text class="pin-number sch-pin-label" x="495.8367998936859" y="631.7592376894238" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="9.983693300939999px" transform="">NC1</text><line class="component-pin sch-component-pin sch-port-line" x1="502.49259542764594" y1="618.4476466215038" x2="527.7846184566939" y2="618.4476466215038" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_0_10__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="529.115777563486" cy="618.4476466215038" r="1.3311591067920001" stroke-width="1.3311591067920001px"/><rect x="527.7846184566939" y="617.1164875147118" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="515.804186495566" y="617.1164875147119" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform=""></text><text class="pin-number sch-pin-label" x="495.8367998936859" y="618.4476466215038" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="9.983693300939999px" transform="">NC2</text><line class="component-pin sch-component-pin sch-port-line" x1="502.49259542764594" y1="605.1360555535839" x2="529.115777563486" y2="605.1360555535839" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_0_11__stack1"><rect x="527.7846184566939" y="603.8048964467919" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="515.804186495566" y="603.804896446792" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform=""></text><text class="pin-number sch-pin-label" x="495.8367998936859" y="605.1360555535839" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="9.983693300939999px" transform="">CS</text><line class="component-pin sch-component-pin sch-port-line" x1="502.49259542764594" y1="591.8244644856638" x2="529.115777563486" y2="591.8244644856638" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_0_12__stack1"><rect x="527.7846184566939" y="590.4933053788718" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="515.804186495566" y="590.4933053788719" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform=""></text><text class="pin-number sch-pin-label" x="495.8367998936859" y="591.8244644856638" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="9.983693300939999px" transform="">SCL</text><line class="component-pin sch-component-pin sch-port-line" x1="502.49259542764594" y1="578.5128734177439" x2="529.115777563486" y2="578.5128734177439" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_0_13__stack1"><rect x="527.7846184566939" y="577.1817143109519" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="515.804186495566" y="577.181714310952" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform=""></text><text class="pin-number sch-pin-label" x="495.8367998936859" y="578.5128734177439" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="9.983693300939999px" transform="">SDA</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="790.8549369364628" y="688.3334997280838" width="77.54001797063393" height="6.655795533960145" stroke-width="1.3311591067920001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="790.8549369364628" y="688.3334997280838" width="77.54001797063393" height="6.655795533960145" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="820.8060168392827" y1="688.3334997280838" x2="820.8060168392827" y2="666.3693744660159" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_1_0__stack1"><rect x="819.4748577324907" y="665.0382153592238" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="819.4748577324907" y="677.3514370970498" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="rotate(-90 819.4748577324907 677.3514370970498)"></text><text class="pin-number sch-pin-label" x="820.8060168392827" y="694.9892952620439" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="9.983693300939999px" transform="rotate(-90 820.8060168392827 694.9892952620439)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="820.8060168392827" y1="694.9892952620439" x2="820.8060168392827" y2="716.9534205241117" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_1_1__stack1"><rect x="819.4748577324907" y="715.6222614173197" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="819.4748577324907" y="705.9713578930779" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="rotate(-90 819.4748577324907 705.9713578930779)"></text><text class="pin-number sch-pin-label" x="820.8060168392827" y="688.3334997280838" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="9.983693300939999px" transform="rotate(-90 820.8060168392827 688.3334997280838)">cathode</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="961.5760923825367" y="688.3334997280838" width="77.54001797063393" height="6.655795533960145" stroke-width="1.3311591067920001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="961.5760923825367" y="688.3334997280838" width="77.54001797063393" height="6.655795533960145" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="991.5271722853568" y1="688.3334997280838" x2="991.5271722853568" y2="666.3693744660159" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_2_0__stack1"><rect x="990.1960131785647" y="665.0382153592238" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="990.1960131785647" y="677.3514370970498" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="rotate(-90 990.1960131785647 677.3514370970498)"></text><text class="pin-number sch-pin-label" x="991.5271722853568" y="694.9892952620439" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="9.983693300939999px" transform="rotate(-90 991.5271722853568 694.9892952620439)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="991.5271722853568" y1="694.9892952620439" x2="991.5271722853568" y2="716.9534205241117" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_2_1__stack1"><rect x="990.1960131785647" y="715.6222614173197" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="990.1960131785647" y="705.9713578930779" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="rotate(-90 990.1960131785647 705.9713578930779)"></text><text class="pin-number sch-pin-label" x="991.5271722853568" y="688.3334997280838" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="9.983693300939999px" transform="rotate(-90 991.5271722853568 688.3334997280838)">cathode</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="476.42406291963584" y="102.62349273960396" width="72.21538154346604" height="6.655795533959974" stroke-width="1.3311591067920001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="476.42406291963584" y="102.62349273960396" width="72.21538154346604" height="6.655795533959974" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="498.0553984050059" y1="109.27928827356394" x2="498.0553984050059" y2="125.91877710846393" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_3_0__stack1"><rect x="496.72423929821394" y="124.58761800167193" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="496.724239298214" y="117.59903269101395" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="rotate(-90 496.724239298214 117.59903269101395)"></text><text class="pin-number sch-pin-label" x="498.0553984050059" y="102.62349273960396" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="9.983693300939999px" transform="rotate(-90 498.0553984050059 102.62349273960396)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="498.0553984050059" y1="102.62349273960396" x2="498.0553984050059" y2="85.98400390470397" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_3_1__stack1"><rect x="496.72423929821394" y="84.65284479791197" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="496.724239298214" y="94.30374832215395" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="rotate(-90 496.724239298214 94.30374832215395)"></text><text class="pin-number sch-pin-label" x="498.0553984050059" y="109.27928827356394" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="9.983693300939999px" transform="rotate(-90 498.0553984050059 109.27928827356394)">cathode</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="284.737151541588" y="102.62349273960396" width="72.21538154346604" height="6.655795533959974" stroke-width="1.3311591067920001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="284.737151541588" y="102.62349273960396" width="72.21538154346604" height="6.655795533959974" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="306.36848702695784" y1="109.27928827356394" x2="306.36848702695784" y2="125.91877710846393" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_4_0__stack1"><rect x="305.03732792016586" y="124.58761800167193" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="305.0373279201658" y="117.59903269101395" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="rotate(-90 305.0373279201658 117.59903269101395)"></text><text class="pin-number sch-pin-label" x="306.36848702695784" y="102.62349273960396" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="9.983693300939999px" transform="rotate(-90 306.36848702695784 102.62349273960396)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="306.36848702695784" y1="102.62349273960396" x2="306.36848702695784" y2="85.98400390470397" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_4_1__stack1"><rect x="305.03732792016586" y="84.65284479791197" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="305.0373279201658" y="94.30374832215395" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="rotate(-90 305.0373279201658 94.30374832215395)"></text><text class="pin-number sch-pin-label" x="306.36848702695784" y="109.27928827356394" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="9.983693300939999px" transform="rotate(-90 306.36848702695784 109.27928827356394)">cathode</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="509.14839096160586" y="298.96946099142394" width="79.86954640752003" height="66.55795533959997" stroke-width="1.3311591067920001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="509.14839096160586" y="298.96946099142394" width="79.86954640752003" height="66.55795533959997" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="509.14839096160586" y1="312.2810520593439" x2="482.52520882576584" y2="312.2810520593439" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_5_0__stack1"><rect x="481.1940497189739" y="310.9498929525519" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="495.8367998936858" y="310.949892952552" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="">1</text><line class="component-pin sch-component-pin sch-port-line" x1="509.14839096160586" y1="325.59264312726395" x2="482.52520882576584" y2="325.59264312726395" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_5_1__stack1"><rect x="481.1940497189739" y="324.261484020472" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="495.8367998936858" y="324.2614840204719" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="">2</text><line class="component-pin sch-component-pin sch-port-line" x1="509.14839096160586" y1="338.9042341951839" x2="482.52520882576584" y2="338.9042341951839" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_5_2__stack1"><rect x="481.1940497189739" y="337.57307508839193" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="495.8367998936858" y="337.5730750883919" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="">3</text><line class="component-pin sch-component-pin sch-port-line" x1="509.14839096160586" y1="352.21582526310385" x2="482.52520882576584" y2="352.21582526310385" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_5_3__stack1"><rect x="481.1940497189739" y="350.8846661563119" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="495.8367998936858" y="350.88466615631194" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="">4</text><line class="component-pin sch-component-pin sch-port-line" x1="589.0179373691259" y1="352.21582526310385" x2="615.6411195049659" y2="352.21582526310385" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_5_4__stack1"><rect x="614.3099603981739" y="350.8846661563119" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="602.329528437046" y="350.88466615631194" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="">5</text><line class="component-pin sch-component-pin sch-port-line" x1="589.0179373691259" y1="338.9042341951839" x2="615.6411195049659" y2="338.9042341951839" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_5_5__stack1"><rect x="614.3099603981739" y="337.57307508839193" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="602.329528437046" y="337.5730750883919" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="">6</text><line class="component-pin sch-component-pin sch-port-line" x1="589.0179373691259" y1="325.59264312726395" x2="615.6411195049659" y2="325.59264312726395" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_5_6__stack1"><rect x="614.3099603981739" y="324.261484020472" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="602.329528437046" y="324.2614840204719" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="">7</text><line class="component-pin sch-component-pin sch-port-line" x1="589.0179373691259" y1="312.2810520593439" x2="615.6411195049659" y2="312.2810520593439" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_5_7__stack1"><rect x="614.3099603981739" y="310.9498929525519" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="602.329528437046" y="310.949892952552" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="">8</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_6__stack1"><rect class="component chip sch-component-body" x="668.110974297684" y="102.62349273960396" width="64.22842690271398" height="6.655795533959974" stroke-width="1.3311591067920001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="668.110974297684" y="102.62349273960396" width="64.22842690271398" height="6.655795533959974" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="689.742309783054" y1="109.27928827356394" x2="689.742309783054" y2="125.91877710846393" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_6_0__stack1"><rect x="688.411150676262" y="124.58761800167193" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="688.411150676262" y="117.59903269101395" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="rotate(-90 688.411150676262 117.59903269101395)"></text><text class="pin-number sch-pin-label" x="689.742309783054" y="102.62349273960396" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="9.983693300939999px" transform="rotate(-90 689.742309783054 102.62349273960396)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="689.742309783054" y1="102.62349273960396" x2="689.742309783054" y2="85.98400390470397" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_6_1__stack1"><rect x="688.411150676262" y="84.65284479791197" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="688.411150676262" y="94.30374832215395" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="rotate(-90 688.411150676262 94.30374832215395)"></text><text class="pin-number sch-pin-label" x="689.742309783054" y="109.27928827356394" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="9.983693300939999px" transform="rotate(-90 689.742309783054 109.27928827356394)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_7__stack1"><rect class="component chip sch-component-body" x="869.5597191255398" y="193.14231200146" width="64.22842690271398" height="6.655795533959974" stroke-width="1.3311591067920001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="869.5597191255398" y="193.14231200146" width="64.22842690271398" height="6.655795533959974" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="891.1910546109098" y1="199.79810753541997" x2="891.1910546109098" y2="216.43759637031994" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_7_0__stack1"><rect x="889.8598955041177" y="215.10643726352794" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="889.8598955041178" y="208.11785195286998" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="rotate(-90 889.8598955041178 208.11785195286998)"></text><text class="pin-number sch-pin-label" x="891.1910546109098" y="193.14231200146" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="9.983693300939999px" transform="rotate(-90 891.1910546109098 193.14231200146)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="891.1910546109098" y1="193.14231200146" x2="891.1910546109098" y2="177.83398227335195" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_7_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="891.1910546109098" cy="176.50282316655998" r="1.3311591067920001" stroke-width="1.3311591067920001px"/><rect x="889.8598955041177" y="175.17166405976798" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="889.8598955041178" y="184.82256758401" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="rotate(-90 889.8598955041178 184.82256758401)"></text><text class="pin-number sch-pin-label" x="891.1910546109098" y="199.79810753541997" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="9.983693300939999px" transform="rotate(-90 891.1910546109098 199.79810753541997)">cathode</text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_8__stack1"><rect class="component chip sch-component-body" x="160.8838896471491" y="294.31040411765196" width="77.54001797063393" height="6.6557955339599175" stroke-width="1.3311591067920001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="160.8838896471491" y="294.31040411765196" width="77.54001797063393" height="6.6557955339599175" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="190.83496954996895" y1="294.31040411765196" x2="190.83496954996895" y2="273.67743796237596" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_8_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="190.83496954996895" cy="272.34627885558393" r="1.3311591067920001" stroke-width="1.3311591067920001px"/><rect x="189.50381044317695" y="271.01511974879196" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="189.50381044317692" y="283.328341486618" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="rotate(-90 189.50381044317692 283.328341486618)"></text><text class="pin-number sch-pin-label" x="190.83496954996895" y="300.9661996516119" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="end" dominant-baseline="middle" font-size="9.983693300939999px" transform="rotate(-90 190.83496954996895 300.9661996516119)">anode</text><line class="component-pin sch-component-pin sch-port-line" x1="190.83496954996895" y1="300.9661996516119" x2="190.83496954996895" y2="322.9303249136799" stroke-width="1.3311591067920001px"/><g class="sch-port" data-schematic-port-id="source_port_8_1__stack1"><rect x="189.50381044317695" y="321.5991658068879" width="2.6623182135840002" height="2.6623182135840002" opacity="0"/></g><text class="pin-number sch-pin-number" x="189.50381044317692" y="311.94826228264594" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="9.983693300939999px" transform="rotate(-90 189.50381044317692 311.94826228264594)"></text><text class="pin-number sch-pin-label" x="190.83496954996895" y="294.31040411765196" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="start" dominant-baseline="middle" font-size="9.983693300939999px" transform="rotate(-90 190.83496954996895 294.31040411765196)">cathode</text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="389.3440713503255" cy="578.5128734177439" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="389.3440713503255" cy="591.8244644856638" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_2__stack1"><circle cx="389.3440713503255" cy="605.1360555535839" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_3__stack1"><circle cx="389.3440713503255" cy="618.4476466215038" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_4__stack1"><circle cx="389.3440713503255" cy="631.7592376894238" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_5__stack1"><circle cx="389.3440713503255" cy="645.0708287573439" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_6__stack1"><circle cx="389.3440713503255" cy="658.3824198252638" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_7__stack1"><circle cx="529.115777563486" cy="658.3824198252638" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_8__stack1"><circle cx="529.115777563486" cy="645.0708287573439" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_9__stack1"><circle cx="529.115777563486" cy="631.7592376894238" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_10__stack1"><circle cx="529.115777563486" cy="618.4476466215038" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_11__stack1"><circle cx="529.115777563486" cy="605.1360555535839" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_12__stack1"><circle cx="529.115777563486" cy="591.8244644856638" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_13__stack1"><circle cx="529.115777563486" cy="578.5128734177439" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0__stack1"><circle cx="820.8060168392827" cy="666.3693744660159" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1__stack1"><circle cx="820.8060168392827" cy="716.9534205241117" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0__stack1"><circle cx="991.5271722853568" cy="666.3693744660159" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1__stack1"><circle cx="991.5271722853568" cy="716.9534205241117" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_0__stack1"><circle cx="498.0553984050059" cy="125.91877710846393" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_1__stack1"><circle cx="498.0553984050059" cy="85.98400390470397" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_0__stack1"><circle cx="306.36848702695784" cy="125.91877710846393" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_1__stack1"><circle cx="306.36848702695784" cy="85.98400390470397" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_0__stack1"><circle cx="482.52520882576584" cy="312.2810520593439" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_1__stack1"><circle cx="482.52520882576584" cy="325.59264312726395" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_2__stack1"><circle cx="482.52520882576584" cy="338.9042341951839" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_3__stack1"><circle cx="482.52520882576584" cy="352.21582526310385" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_4__stack1"><circle cx="615.6411195049659" cy="352.21582526310385" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_5__stack1"><circle cx="615.6411195049659" cy="338.9042341951839" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_6__stack1"><circle cx="615.6411195049659" cy="325.59264312726395" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_7__stack1"><circle cx="615.6411195049659" cy="312.2810520593439" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_0__stack1"><circle cx="689.742309783054" cy="125.91877710846393" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_1__stack1"><circle cx="689.742309783054" cy="85.98400390470397" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_7_0__stack1"><circle cx="891.1910546109098" cy="216.43759637031994" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_7_1__stack1"><circle cx="891.1910546109098" cy="176.50282316655998" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_8_0__stack1"><circle cx="190.83496954996895" cy="272.34627885558393" r="2.6623182135840002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_8_1__stack1"><circle cx="190.83496954996895" cy="322.9303249136799" r="2.6623182135840002" 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="310.73912609425787" y="658.3824198252638" width="15.973909281504007" height="11.980431961128033" 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 310.73912609425787 670.3628517863918 L 326.7130353757619 670.3628517863918" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3311591067920001px" 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 318.7260807350099 670.3628517863918 L 318.7260807350099 658.3824198252638" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3311591067920001px" 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="318.7260807350099" y="673.6907495533718" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="11.980431961128px">GND</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="983.5402176446048" y="730.2650115920317" width="15.973909281503893" height="11.980431961128033" 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 983.5402176446048 742.2454435531597 L 999.5141269261087 742.2454435531597" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3311591067920001px" 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 991.5271722853568 742.2454435531597 L 991.5271722853568 730.2650115920317" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3311591067920001px" 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="991.5271722853568" y="745.5733413201397" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="11.980431961128px">GND</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="182.84801490921694" y="336.24191598159985" width="15.973909281504007" height="11.980431961128033" 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 182.84801490921694 348.2223479427279 L 198.82192419072095 348.2223479427279" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3311591067920001px" 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 190.83496954996895 348.2223479427279 L 190.83496954996895 336.24191598159985" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3311591067920001px" 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="190.83496954996895" y="351.55024570970784" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="11.980431961128px">GND</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_3__stack1" x="690.1860294853179" y="358.9381787524035" width="15.973909281503893" height="11.980431961128033" fill="transparent"/><path class="sch-net-label-symbol-path" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_3__stack1" d="M 690.1860294853179 370.9186107135315 L 706.1599387668218 370.9186107135315" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3311591067920001px" 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_3__stack1" d="M 698.1729841260699 370.9186107135315 L 698.1729841260699 358.9381787524035" stroke="rgb(132, 0, 0)" fill="none" stroke-width="1.3311591067920001px" 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_3__stack1" x="698.1729841260699" y="374.24650848051147" fill="rgb(15, 15, 15)" font-family="sans-serif" text-anchor="middle" dominant-baseline="hanging" font-size="11.980431961128px">GND</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_4__stack1" d="
149
+ M 280.12246663804194,598.4137020642843
150
+ L 273.46667110408197,594.8195724759458
151
+ L 273.46667110408197,530.8529401975676
152
+ L 286.778262172002,530.8529401975676
153
+ L 286.7782621720019,594.8195724759458
154
+ Z
155
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.3311591067920001px"/><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__stack1" x="280.12246663804194" y="592.4234860837203" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="11.980431961128px" transform="rotate(-90 280.12246663804194 592.4234860837203)">V3V3_IMU</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_5__stack1" d="
156
+ M 601.6639488836499,571.7905199284444
157
+ L 595.0081533496899,568.196390340106
158
+ L 595.0081533496899,504.22975806172775
159
+ L 608.31974441761,504.22975806172775
160
+ L 608.31974441761,568.196390340106
161
+ Z
162
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.3311591067920001px"/><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__stack1" x="601.6639488836499" y="565.8003039478804" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="11.980431961128px" transform="rotate(-90 601.6639488836499 565.8003039478804)">V3V3_IMU</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_6__stack1" d="
163
+ M 991.5271722853568,653.0577833980959
164
+ L 984.8713767513967,649.4636538097575
165
+ L 984.8713767513967,585.4970215313792
166
+ L 998.1829678193168,585.4970215313792
167
+ L 998.1829678193168,649.4636538097575
168
+ Z
169
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.3311591067920001px"/><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__stack1" x="991.5271722853568" y="647.0675674175319" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="11.980431961128px" transform="rotate(-90 991.5271722853568 647.0675674175319)">V3V3_IMU</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_7__stack1" d="
170
+ M 306.36848702695784,72.67241283678402
171
+ L 299.71269149299786,69.07828324844562
172
+ L 299.71269149299786,33.278977669786094
173
+ L 313.02428256091787,33.278977669786094
174
+ L 313.0242825609178,69.07828324844562
175
+ Z
176
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.3311591067920001px"/><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__stack1" x="306.36848702695784" y="66.68219685622002" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="11.980431961128px" transform="rotate(-90 306.36848702695784 66.68219685622002)">V3V3</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_8__stack1" d="
177
+ M 462.4912642685463,298.90290303608424
178
+ L 455.8354687345863,295.30877344774586
179
+ L 455.8354687345863,259.50946786908634
180
+ L 469.1470598025063,259.50946786908634
181
+ L 469.14705980250625,295.30877344774586
182
+ Z
183
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.3311591067920001px"/><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__stack1" x="462.4912642685463" y="292.9126870555202" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="11.980431961128px" transform="rotate(-90 462.4912642685463 292.9126870555202)">V3V3</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_9__stack1" d="
184
+ M 891.1910546109098,176.50282316655998
185
+ L 884.5352590769497,172.90869357822157
186
+ L 884.5352590769497,137.10938799956205
187
+ L 897.8468501448698,137.10938799956205
188
+ L 897.8468501448698,172.90869357822157
189
+ Z
190
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.3311591067920001px"/><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__stack1" x="891.1910546109098" y="170.512607185996" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="11.980431961128px" transform="rotate(-90 891.1910546109098 170.512607185996)">V3V3</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_10__stack1" d="
191
+ M 190.83496954996895,272.34627885558393
192
+ L 184.17917401600894,268.75214926724556
193
+ L 184.17917401600894,232.952843688586
194
+ L 197.49076508392895,232.952843688586
195
+ L 197.49076508392895,268.75214926724556
196
+ Z
197
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="1.3311591067920001px"/><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__stack1" x="190.83496954996895" y="266.3560628750199" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="11.980431961128px" transform="rotate(-90 190.83496954996895 266.3560628750199)">V3V3</text><text class="sch-text" x="459.8955040103018" y="680.3465450873318" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="11.98043196112798px" transform="rotate(0, 459.8955040103018, 680.3465450873318)">LSM6DS3TR-C</text><text class="sch-text" x="423.9542081269178" y="557.5471174857698" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="11.980431961128px" transform="rotate(0, 423.9542081269178, 557.5471174857698)">U6</text><text class="sch-text" x="593.0114146895019" y="374.1799505251719" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="11.98043196112798px" transform="rotate(0, 593.0114146895019, 374.1799505251719)">SM06B-SRSS-TB(LF)(SN)</text><text class="sch-text" x="600.9983693302538" y="291.31529612736995" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="11.980431961128px" transform="rotate(0, 600.9983693302538, 291.31529612736995)">ToF module / 3.3V logic</text><text class="sch-text" x="361.3897301076936" y="611.1262715341479" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="7.986954640752px" transform="rotate(0, 361.3897301076936, 611.1262715341479)">IMU_INT</text><text class="sch-text" x="461.89224267048996" y="412.1179850687439" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="7.986954640752px" transform="rotate(-90, 461.89224267048996, 412.1179850687439)">I2C_SCL</text><text class="sch-text" x="490.73402331765" y="153.87311835109594" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="7.986954640752px" transform="rotate(-90, 490.73402331765, 153.87311835109594)">I2C_SCL</text><text class="sch-text" x="557.0701188061179" y="571.191498330388" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="7.986954640752px" transform="rotate(0, 557.0701188061179, 571.191498330388)">I2C_SDA</text><text class="sch-text" x="299.047111939602" y="153.87311835109594" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="7.986954640752px" transform="rotate(-90, 299.047111939602, 153.87311835109594)">I2C_SDA</text><text class="sch-text" x="454.5708675831339" y="331.58285910782786" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="7.986954640752px" transform="rotate(0, 454.5708675831339, 331.58285910782786)">I2C_SDA</text><text class="sch-text" x="648.9200971747658" y="344.8944501757479" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="7.986954640752px" transform="rotate(0, 648.9200971747658, 344.8944501757479)">TOF_XSHUT</text><text class="sch-text" x="682.4209346956981" y="159.19775477826394" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="7.986954640752px" transform="rotate(-90, 682.4209346956981, 159.19775477826394)">TOF_XSHUT</text><text class="sch-text" x="643.5954607475978" y="331.58285910782786" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="7.986954640752px" transform="rotate(0, 643.5954607475978, 331.58285910782786)">TOF_INT</text><text class="sch-text" x="883.8696795235538" y="244.39193761295198" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="7.986954640752px" transform="rotate(-90, 883.8696795235538, 244.39193761295198)">TOF_INT</text><rect class="schematic-box sch-box" x="415.96725348616565" y="674.3563291067678" width="87.8565010482721" height="11.980431961128033" stroke-width="1.3311591067920001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="10.649272854336001 5.3246364271680005"/><rect class="schematic-box sch-box" x="411.9737761657898" y="549.2273730683198" width="23.960863922256067" height="16.63948883490002" stroke-width="1.3311591067920001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="10.649272854336001 5.3246364271680005"/><rect class="schematic-box sch-box" x="509.14839096160586" y="368.18973454460786" width="167.726047455792" height="11.980431961128033" stroke-width="1.3311591067920001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="10.649272854336001 5.3246364271680005"/><rect class="schematic-box sch-box" x="505.15491364122977" y="282.99555170992005" width="191.68691137804797" height="16.639488834899907" stroke-width="1.3311591067920001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="10.649272854336001 5.3246364271680005"/>
198
+ </g>
199
+ </svg>