@tscircuit/schematic-trace-solver 0.0.187 → 0.0.189

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/dist/index.d.ts +42 -23
  2. package/dist/index.js +1053 -316
  3. package/lib/solvers/InlineNetLabelSolver/InlineNetLabelSolver.ts +612 -230
  4. package/lib/solvers/InlineNetLabelSolver/alignPortOnlyInlineNetLabelStubs.ts +2 -6
  5. package/lib/solvers/InlineNetLabelSolver/getAnchoredNetLabelRenderedBounds.ts +13 -0
  6. package/lib/solvers/InlineNetLabelSolver/getInlineLabelObstacles.ts +64 -0
  7. package/lib/solvers/InlineNetLabelSolver/getLocalTraceLabelShifts.ts +407 -0
  8. package/lib/solvers/InlineNetLabelSolver/getOutputLabelCollisions.ts +145 -0
  9. package/lib/solvers/InlineNetLabelSolver/isLabelRepresentedInline.ts +15 -0
  10. package/lib/solvers/InlineNetLabelSolver/pushAnchoredNetLabelsAwayFromInlineLabels.ts +61 -31
  11. package/lib/solvers/NetLabelNetLabelCollisionSolver/NetLabelNetLabelCollisionSolver.ts +94 -16
  12. package/lib/solvers/NetLabelToTraceSolver/NetLabelToTraceSolver.ts +4 -3
  13. package/lib/solvers/SameNetJunctionAlignmentSolver/alignSameNetJunctions.ts +7 -7
  14. package/lib/solvers/SchematicTracePipelineSolver/SchematicTracePipelineSolver.ts +3 -0
  15. package/lib/solvers/TraceCleanupSolver/sub-solver/generateLShapeRerouteCandidates.ts +5 -1
  16. package/lib/types/InputProblem.ts +2 -2
  17. package/package.json +1 -1
  18. package/site/SchematicTracePipelineSolver/repro-robot-controller-imu-tof.page.tsx +7 -0
  19. package/site/bug-reports/bug-report-20260907T110144Z.page.tsx +4 -0
  20. package/site/bug-reports/bug-report-20260907T145640Z.page.tsx +4 -0
  21. package/tests/bug-reports/bug-report-20260730T061837Z/__snapshots__/bug-report-20260730T061837Z.snap.svg +2 -2
  22. package/tests/bug-reports/bug-report-20260806T093501Z/__snapshots__/bug-report-20260806T093501Z.snap.svg +2 -2
  23. package/tests/bug-reports/bug-report-20260811T075142Z/__snapshots__/bug-report-20260811T075142Z.snap.svg +18 -18
  24. package/tests/bug-reports/bug-report-20260819T091818Z/__snapshots__/bug-report-20260819T091818Z.snap.svg +2 -2
  25. package/tests/bug-reports/bug-report-20260819T091818Z/bug-report-20260819T091818Z.test.ts +21 -0
  26. package/tests/bug-reports/bug-report-20260825T103621Z/__snapshots__/bug-report-20260825T103621Z.snap.svg +5 -38
  27. package/tests/bug-reports/bug-report-20260826T072956Z/__snapshots__/bug-report-20260826T072956Z.snap.svg +3 -9
  28. package/tests/bug-reports/bug-report-20260901T055358Z/__snapshots__/bug-report-20260901T055358Z.snap.svg +18 -30
  29. package/tests/bug-reports/bug-report-20260901T055358Z/bug-report-20260901T055358Z.test.ts +33 -0
  30. package/tests/bug-reports/bug-report-20260907T110144Z/__snapshots__/bug-report-20260907T110144Z.snap.svg +282 -0
  31. package/tests/bug-reports/bug-report-20260907T110144Z/bug-report-20260907T110144Z.json +1073 -0
  32. package/tests/bug-reports/bug-report-20260907T110144Z/bug-report-20260907T110144Z.test.ts +12 -0
  33. package/tests/bug-reports/bug-report-20260907T145640Z/__snapshots__/bug-report-20260907T145640Z.snap.svg +1107 -0
  34. package/tests/bug-reports/bug-report-20260907T145640Z/bug-report-20260907T145640Z.json +3563 -0
  35. package/tests/bug-reports/bug-report-20260907T145640Z/bug-report-20260907T145640Z.test.ts +117 -0
  36. package/tests/repros/__snapshots__/repro-battery-management-bq24073.snap.svg +4 -4
  37. package/tests/repros/__snapshots__/repro-board-648-esp12f-section.snap.svg +2 -2
  38. package/tests/repros/__snapshots__/repro-core-tb67s579ftg-inline-label-routing.snap.svg +20 -20
  39. package/tests/repros/__snapshots__/repro-esp12f-section.snap.svg +37 -55
  40. package/tests/repros/__snapshots__/repro-hub-usb-sheet.snap.svg +44 -68
  41. package/tests/repros/__snapshots__/repro-mspm0l1306-capacitor-symmetry.snap.svg +3 -9
  42. package/tests/repros/__snapshots__/repro-robot-controller-imu-tof.snap.svg +199 -0
  43. package/tests/repros/__snapshots__/repro-robot-controller-imu-tof.source.svg +33 -0
  44. package/tests/repros/__snapshots__/repro-usb-power-vbus-label-detour.snap.svg +50 -74
  45. package/tests/repros/__snapshots__/repro48-555-timer-vcc-rail-label.snap.svg +2 -2
  46. package/tests/repros/__snapshots__/rp2040-robot-controller-disconnected-gnd.snap.svg +103 -0
  47. package/tests/repros/assets/repro-robot-controller-imu-tof.input.json +540 -0
  48. package/tests/repros/assets/rp2040-robot-controller.input.json +349 -0
  49. package/tests/repros/repro-battery-management-bq24073.test.ts +13 -1
  50. package/tests/repros/repro-hub-usb-sheet.test.ts +25 -0
  51. package/tests/repros/repro-robot-controller-imu-tof.test.ts +83 -0
  52. package/tests/repros/repro-usb-power-vbus-label-detour.test.ts +59 -13
  53. package/tests/repros/rp2040-robot-controller-disconnected-gnd.test.ts +59 -0
  54. package/tests/solvers/InlineNetLabelSolver/get-anchored-net-label-rendered-bounds.test.ts +24 -0
  55. package/tests/solvers/InlineNetLabelSolver/local-trace-label-shifts.test.ts +296 -0
  56. package/tests/solvers/InlineNetLabelSolver/multi-pin-connected-components.test.ts +7 -4
  57. package/tests/solvers/InlineNetLabelSolver/push-anchored-net-labels-away.test.ts +2 -1
  58. package/tests/solvers/InlineNetLabelSolver/shared-direct-and-named-connection.test.ts +62 -0
  59. package/tests/solvers/InlineNetLabelSolver/two-pin-terminal-stubs-atomic.test.ts +9 -3
  60. package/tests/solvers/TraceCleanupSolver/perpendicular-detours-preserve-endpoints.test.ts +60 -0
@@ -1,6 +1,6 @@
1
1
  <svg width="1200" height="2016" viewBox="0 0 1200 2016" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Solver debug visualization on top and Circuit JSON schematic on the bottom">
2
2
  <g transform="translate(0, 0) scale(1.875, 1.875) translate(0, 0)">
3
- <rect width="100%" height="100%" fill="white"/><g><polyline data-points="-10.38,4.3 -12.12,4.3" data-type="line" data-label="" points="108.94538606403009,244.8587570621469 76.1770244821092,244.8587570621469" fill="none" stroke="hsl(232, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,4.1 -12.12,4.1" data-type="line" data-label="" points="108.94538606403009,248.62523540489644 76.1770244821092,248.62523540489644" fill="none" stroke="hsl(232, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,3.9 -12.12,3.8999999999999995" data-type="line" data-label="" points="108.94538606403009,252.39171374764595 76.1770244821092,252.39171374764595" fill="none" stroke="hsl(232, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,3.7 -12.12,3.6999999999999997" data-type="line" data-label="" points="108.94538606403009,256.15819209039546 76.1770244821092,256.1581920903955" fill="none" stroke="hsl(232, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,3.5 -12.12,3.5" data-type="line" data-label="" points="108.94538606403009,259.924670433145 76.1770244821092,259.924670433145" fill="none" stroke="hsl(232, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,3.3 -12.12,3.3" data-type="line" data-label="" points="108.94538606403009,263.69114877589453 76.1770244821092,263.69114877589453" fill="none" stroke="hsl(232, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,3.1 -12.12,3.0999999999999996" data-type="line" data-label="" points="108.94538606403009,267.4576271186441 76.1770244821092,267.4576271186441" fill="none" stroke="hsl(232, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,2.9000000000000004 -12.12,2.9" data-type="line" data-label="" points="108.94538606403009,271.2241054613936 76.1770244821092,271.2241054613936" fill="none" stroke="hsl(232, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,2.7 -12.12,2.7" data-type="line" data-label="" points="108.94538606403009,274.9905838041431 76.1770244821092,274.9905838041431" fill="none" stroke="hsl(232, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,2.5 -12.12,2.5" data-type="line" data-label="" points="108.94538606403009,278.7570621468927 76.1770244821092,278.7570621468927" fill="none" stroke="hsl(0, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,2.3000000000000003 -12.12,2.3" data-type="line" data-label="" points="108.94538606403009,282.5235404896422 76.1770244821092,282.5235404896422" fill="none" stroke="hsl(0, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,2.1000000000000005 -12.12,2.1" data-type="line" data-label="" points="108.94538606403009,286.2900188323917 76.1770244821092,286.29001883239175" fill="none" stroke="hsl(0, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,1.9000000000000001 -12.12,1.9" data-type="line" data-label="" points="108.94538606403009,290.05649717514126 76.1770244821092,290.05649717514126" fill="none" stroke="hsl(0, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,1.7 -12.12,1.7" data-type="line" data-label="" points="108.94538606403009,293.82297551789077 76.1770244821092,293.82297551789077" fill="none" stroke="hsl(0, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-8.5,-1.6199999999999997 -10.5,-1.1" data-type="line" data-label="" points="144.35028248587568,356.34651600753295 106.6854990583804,346.5536723163842" fill="none" stroke="hsl(272, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,3.9 -12.5,-1.3" data-type="line" data-label="" points="108.94538606403009,252.39171374764595 69.02071563088509,350.32015065913373" fill="none" stroke="hsl(304, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,3.7 -12.5,-1.7000000000000002" data-type="line" data-label="" points="108.94538606403009,256.15819209039546 69.02071563088509,357.8531073446328" fill="none" stroke="hsl(304, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,3.5 -12.5,-2.1" data-type="line" data-label="" points="108.94538606403009,259.924670433145 69.02071563088509,365.3860640301318" fill="none" stroke="hsl(304, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,3.3 -12.5,-2.5" data-type="line" data-label="" points="108.94538606403009,263.69114877589453 69.02071563088509,372.9190207156309" fill="none" stroke="hsl(304, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,3.1 -10.5,-2.9" data-type="line" data-label="" points="108.94538606403009,267.4576271186441 106.6854990583804,380.45197740112997" fill="none" stroke="hsl(64, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,2.9000000000000004 -10.5,-2.5" data-type="line" data-label="" points="108.94538606403009,271.2241054613936 106.6854990583804,372.9190207156309" fill="none" stroke="hsl(64, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,2.7 -10.5,-2.0999999999999996" data-type="line" data-label="" points="108.94538606403009,274.9905838041431 106.6854990583804,365.3860640301318" fill="none" stroke="hsl(64, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,1.7 -10.5,-1.7" data-type="line" data-label="" points="108.94538606403009,293.82297551789077 106.6854990583804,357.8531073446328" fill="none" stroke="hsl(56, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.75,1.0999999999999974 -1.75,0.8999999999999977" data-type="line" data-label="" points="271.4689265536723,305.1224105461394 271.4689265536723,308.88888888888897" fill="none" stroke="hsl(152, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-4.64,-2 -1.75,0.8999999999999977" data-type="line" data-label="" points="217.04331450094162,363.5028248587571 271.4689265536723,308.88888888888897" fill="none" stroke="hsl(104, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5,-3.2199999999999998 -1.75,1.0999999999999974" data-type="line" data-label="" points="210.26365348399244,386.4783427495292 271.4689265536723,305.1224105461394" fill="none" stroke="hsl(232, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5,-4.62 -1.75,1.0999999999999974" data-type="line" data-label="" points="210.26365348399244,412.8436911487759 271.4689265536723,305.1224105461394" fill="none" stroke="hsl(312, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.75,-4.5 5.5,-1.6199999999999997" data-type="line" data-label="" points="271.4689265536723,410.5838041431262 408.00376647834275,356.34651600753295" fill="none" stroke="hsl(184, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="1.75,-0.49999999999999734 4.5,0.38" data-type="line" data-label="" points="337.38229755178907,335.2542372881356 389.1713747645951,318.6817325800377" fill="none" stroke="hsl(184, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="1.75,-4.099999999999999 3.8,2.3800000000000003" data-type="line" data-label="" points="337.38229755178907,403.0508474576271 375.98870056497174,281.0169491525424" fill="none" stroke="hsl(184, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="4.6,4.08 1.75,-4.299999999999999" data-type="line" data-label="" points="391.0546139359699,249.00188323917138 337.38229755178907,406.81732580037664" fill="none" stroke="hsl(296, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="1.75,-4.499999999999998 4.9,5" data-type="line" data-label="" points="337.38229755178907,410.58380414312614 396.7043314500942,231.67608286252354" fill="none" stroke="hsl(256, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.75,2.699999999999999 -6.15,6.3" data-type="line" data-label="" points="271.4689265536723,274.99058380414317 188.60640301318264,207.19397363465163" fill="none" stroke="hsl(8, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.75,2.4999999999999987 0.7,6.5" data-type="line" data-label="" points="271.4689265536723,278.7570621468927 317.60828625235405,203.42749529190206" fill="none" stroke="hsl(104, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="1.3,6.5 -3.8499999999999996,6.1000000000000005" data-type="line" data-label="" points="328.90772128060263,203.42749529190206 231.92090395480227,210.96045197740114" fill="none" stroke="hsl(72, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-4,8.18 -6.15,6.3" data-type="line" data-label="" points="229.0960451977401,171.78907721280603 188.60640301318264,207.19397363465163" fill="none" stroke="hsl(208, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.8369701987210297e-17,8.18 -3.8499999999999996,6.1000000000000005" data-type="line" data-label="" points="304.4256120527307,171.78907721280603 231.92090395480227,210.96045197740114" fill="none" stroke="hsl(304, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="10.1875,-5.7 8.95,-0.8" data-type="line" data-label="" points="496.2806026365348,433.18267419962336 472.97551789077215,340.90395480225993" fill="none" stroke="hsl(320, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="10.1875,-5.9 8.95,-0.8" data-type="line" data-label="" points="496.2806026365348,436.94915254237293 472.97551789077215,340.90395480225993" fill="none" stroke="hsl(72, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="10.1875,-6.3 8.95,-1.2" data-type="line" data-label="" points="496.2806026365348,444.48210922787194 472.97551789077215,348.43691148775895" fill="none" stroke="hsl(320, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="10.1875,-6.1 8.95,-1.2" data-type="line" data-label="" points="496.2806026365348,440.71563088512244 472.97551789077215,348.43691148775895" fill="none" stroke="hsl(320, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="10.1875,-6.5 8.2,-3.5" data-type="line" data-label="" points="496.2806026365348,448.2485875706215 458.85122410546137,391.75141242937855" fill="none" stroke="hsl(320, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="10.1875,-6.7 11.7,-3.5" data-type="line" data-label="" points="496.2806026365348,452.015065913371 524.7645951035781,391.75141242937855" fill="none" stroke="hsl(72, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-12.12,4.1 -10.38,4.1" data-type="line" data-label="" points="76.1770244821092,248.62523540489644 108.94538606403009,248.62523540489644" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.12,4.1 -12.5,-1.1" data-type="line" data-label="" points="76.1770244821092,248.62523540489644 69.02071563088509,346.5536723163842" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.12,4.1 -12.5,-2.9" data-type="line" data-label="" points="76.1770244821092,248.62523540489644 69.02071563088509,380.45197740112997" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.12,4.1 -10.5,-1.3" data-type="line" data-label="" points="76.1770244821092,248.62523540489644 106.6854990583804,350.32015065913373" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.12,4.1 -8.5,-2.3800000000000003" data-type="line" data-label="" points="76.1770244821092,248.62523540489644 144.35028248587568,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-10.38,4.1 -12.5,-1.1" data-type="line" data-label="" points="108.94538606403009,248.62523540489644 69.02071563088509,346.5536723163842" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-10.38,4.1 -12.5,-2.9" data-type="line" data-label="" points="108.94538606403009,248.62523540489644 69.02071563088509,380.45197740112997" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-10.38,4.1 -10.5,-1.3" data-type="line" data-label="" points="108.94538606403009,248.62523540489644 106.6854990583804,350.32015065913373" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-10.38,4.1 -8.5,-2.3800000000000003" data-type="line" data-label="" points="108.94538606403009,248.62523540489644 144.35028248587568,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -1.75,1.2999999999999976" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 271.4689265536723,301.3559322033899" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -1.75,-0.1000000000000032" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 271.4689265536723,327.7212806026366" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -1.75,-4.699999999999999" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 271.4689265536723,414.3502824858757" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 1.75,-0.29999999999999716" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 337.38229755178907,331.487758945386" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 1.75,4.699999999999999" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 337.38229755178907,237.32580037664786" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -4.5,-6.88" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 219.67984934086627,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -2.7,-6.88" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 253.57815442561204,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -0.8999999999999999,-6.88" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 287.4764595103578,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 0.9000000000000004,-6.88" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 321.37476459510356,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 2.7,-6.88" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 355.27306967984936,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 4.5,-6.88" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -5,-3.9800000000000004" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -5,-5.38" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 5.5,-2.3800000000000003" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 4.5,-0.38" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 3.8,1.6199999999999997" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 4.6,3.3200000000000003" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 6.1,5" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -6.15,6.1000000000000005" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -3.8499999999999996,6.3" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -4,7.42" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 -1.75,-0.1000000000000032" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 271.4689265536723,327.7212806026366" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 -1.75,-4.699999999999999" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 271.4689265536723,414.3502824858757" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 1.75,-0.29999999999999716" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 337.38229755178907,331.487758945386" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 1.75,4.699999999999999" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 337.38229755178907,237.32580037664786" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 -4.5,-6.88" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 219.67984934086627,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 -2.7,-6.88" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 253.57815442561204,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 -0.8999999999999999,-6.88" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 287.4764595103578,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 0.9000000000000004,-6.88" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 321.37476459510356,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 2.7,-6.88" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 355.27306967984936,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 4.5,-6.88" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 -5,-3.9800000000000004" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 -5,-5.38" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 5.5,-2.3800000000000003" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 4.5,-0.38" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 3.8,1.6199999999999997" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 4.6,3.3200000000000003" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 6.1,5" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 -6.15,6.1000000000000005" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 -3.8499999999999996,6.3" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 -4,7.42" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 -1.75,-4.699999999999999" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 271.4689265536723,414.3502824858757" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 1.75,-0.29999999999999716" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 337.38229755178907,331.487758945386" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 1.75,4.699999999999999" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 337.38229755178907,237.32580037664786" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 -4.5,-6.88" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 219.67984934086627,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 -2.7,-6.88" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 253.57815442561204,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 -0.8999999999999999,-6.88" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 287.4764595103578,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 0.9000000000000004,-6.88" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 321.37476459510356,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 2.7,-6.88" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 355.27306967984936,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 4.5,-6.88" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 -5,-3.9800000000000004" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 -5,-5.38" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 5.5,-2.3800000000000003" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 4.5,-0.38" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 3.8,1.6199999999999997" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 4.6,3.3200000000000003" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 6.1,5" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 -6.15,6.1000000000000005" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 -3.8499999999999996,6.3" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 -4,7.42" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 1.75,-0.29999999999999716" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 337.38229755178907,331.487758945386" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 1.75,4.699999999999999" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 337.38229755178907,237.32580037664786" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 -4.5,-6.88" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 219.67984934086627,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 -2.7,-6.88" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 253.57815442561204,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 -0.8999999999999999,-6.88" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 287.4764595103578,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 0.9000000000000004,-6.88" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 321.37476459510356,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 2.7,-6.88" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 355.27306967984936,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 4.5,-6.88" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 -5,-3.9800000000000004" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 -5,-5.38" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 5.5,-2.3800000000000003" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 4.5,-0.38" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 3.8,1.6199999999999997" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 4.6,3.3200000000000003" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 6.1,5" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 -6.15,6.1000000000000005" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 -3.8499999999999996,6.3" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 -4,7.42" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 1.75,4.699999999999999" data-type="line" data-label="" points="337.38229755178907,331.487758945386 337.38229755178907,237.32580037664786" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 -4.5,-6.88" data-type="line" data-label="" points="337.38229755178907,331.487758945386 219.67984934086627,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 -2.7,-6.88" data-type="line" data-label="" points="337.38229755178907,331.487758945386 253.57815442561204,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 -0.8999999999999999,-6.88" data-type="line" data-label="" points="337.38229755178907,331.487758945386 287.4764595103578,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 0.9000000000000004,-6.88" data-type="line" data-label="" points="337.38229755178907,331.487758945386 321.37476459510356,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 2.7,-6.88" data-type="line" data-label="" points="337.38229755178907,331.487758945386 355.27306967984936,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 4.5,-6.88" data-type="line" data-label="" points="337.38229755178907,331.487758945386 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 -5,-3.9800000000000004" data-type="line" data-label="" points="337.38229755178907,331.487758945386 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 -5,-5.38" data-type="line" data-label="" points="337.38229755178907,331.487758945386 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 5.5,-2.3800000000000003" data-type="line" data-label="" points="337.38229755178907,331.487758945386 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 4.5,-0.38" data-type="line" data-label="" points="337.38229755178907,331.487758945386 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 3.8,1.6199999999999997" data-type="line" data-label="" points="337.38229755178907,331.487758945386 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 4.6,3.3200000000000003" data-type="line" data-label="" points="337.38229755178907,331.487758945386 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 6.1,5" data-type="line" data-label="" points="337.38229755178907,331.487758945386 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 -6.15,6.1000000000000005" data-type="line" data-label="" points="337.38229755178907,331.487758945386 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 -3.8499999999999996,6.3" data-type="line" data-label="" points="337.38229755178907,331.487758945386 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 -4,7.42" data-type="line" data-label="" points="337.38229755178907,331.487758945386 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="337.38229755178907,331.487758945386 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 -4.5,-6.88" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 219.67984934086627,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 -2.7,-6.88" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 253.57815442561204,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 -0.8999999999999999,-6.88" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 287.4764595103578,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 0.9000000000000004,-6.88" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 321.37476459510356,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 2.7,-6.88" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 355.27306967984936,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 4.5,-6.88" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 -5,-3.9800000000000004" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 -5,-5.38" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 5.5,-2.3800000000000003" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 4.5,-0.38" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 3.8,1.6199999999999997" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 4.6,3.3200000000000003" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 6.1,5" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 -6.15,6.1000000000000005" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 -3.8499999999999996,6.3" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 -4,7.42" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.5,-1.1 -12.5,-2.9" data-type="line" data-label="" points="69.02071563088509,346.5536723163842 69.02071563088509,380.45197740112997" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.5,-1.1 -10.5,-1.3" data-type="line" data-label="" points="69.02071563088509,346.5536723163842 106.6854990583804,350.32015065913373" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.5,-1.1 -8.5,-2.3800000000000003" data-type="line" data-label="" points="69.02071563088509,346.5536723163842 144.35028248587568,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.5,-2.9 -10.5,-1.3" data-type="line" data-label="" points="69.02071563088509,380.45197740112997 106.6854990583804,350.32015065913373" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.5,-2.9 -8.5,-2.3800000000000003" data-type="line" data-label="" points="69.02071563088509,380.45197740112997 144.35028248587568,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-10.5,-1.3 -8.5,-2.3800000000000003" data-type="line" data-label="" points="106.6854990583804,350.32015065913373 144.35028248587568,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 -2.7,-6.88" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 253.57815442561204,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 -0.8999999999999999,-6.88" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 287.4764595103578,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 0.9000000000000004,-6.88" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 321.37476459510356,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 2.7,-6.88" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 355.27306967984936,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 4.5,-6.88" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 -5,-3.9800000000000004" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 -5,-5.38" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 5.5,-2.3800000000000003" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 4.5,-0.38" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 3.8,1.6199999999999997" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 4.6,3.3200000000000003" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 6.1,5" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 -6.15,6.1000000000000005" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 -3.8499999999999996,6.3" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 -4,7.42" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 -0.8999999999999999,-6.88" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 287.4764595103578,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 0.9000000000000004,-6.88" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 321.37476459510356,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 2.7,-6.88" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 355.27306967984936,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 4.5,-6.88" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 -5,-3.9800000000000004" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 -5,-5.38" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 5.5,-2.3800000000000003" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 4.5,-0.38" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 3.8,1.6199999999999997" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 4.6,3.3200000000000003" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 6.1,5" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 -6.15,6.1000000000000005" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 -3.8499999999999996,6.3" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 -4,7.42" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 0.9000000000000004,-6.88" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 321.37476459510356,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 2.7,-6.88" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 355.27306967984936,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 4.5,-6.88" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 -5,-3.9800000000000004" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 -5,-5.38" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 5.5,-2.3800000000000003" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 4.5,-0.38" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 3.8,1.6199999999999997" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 4.6,3.3200000000000003" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 6.1,5" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 -6.15,6.1000000000000005" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 -3.8499999999999996,6.3" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 -4,7.42" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 2.7,-6.88" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 355.27306967984936,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 4.5,-6.88" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 -5,-3.9800000000000004" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 -5,-5.38" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 5.5,-2.3800000000000003" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 4.5,-0.38" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 3.8,1.6199999999999997" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 4.6,3.3200000000000003" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 6.1,5" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 -6.15,6.1000000000000005" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 -3.8499999999999996,6.3" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 -4,7.42" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 4.5,-6.88" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 -5,-3.9800000000000004" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 -5,-5.38" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 5.5,-2.3800000000000003" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 4.5,-0.38" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 3.8,1.6199999999999997" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 4.6,3.3200000000000003" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 6.1,5" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 -6.15,6.1000000000000005" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 -3.8499999999999996,6.3" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 -4,7.42" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 -5,-3.9800000000000004" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 -5,-5.38" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 5.5,-2.3800000000000003" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 4.5,-0.38" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 3.8,1.6199999999999997" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 4.6,3.3200000000000003" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 6.1,5" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 -6.15,6.1000000000000005" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 -3.8499999999999996,6.3" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 -4,7.42" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-3.9800000000000004 -5,-5.38" data-type="line" data-label="" points="210.26365348399244,400.7909604519774 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-3.9800000000000004 5.5,-2.3800000000000003" data-type="line" data-label="" points="210.26365348399244,400.7909604519774 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-3.9800000000000004 4.5,-0.38" data-type="line" data-label="" points="210.26365348399244,400.7909604519774 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-3.9800000000000004 3.8,1.6199999999999997" data-type="line" data-label="" points="210.26365348399244,400.7909604519774 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-3.9800000000000004 4.6,3.3200000000000003" data-type="line" data-label="" points="210.26365348399244,400.7909604519774 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-3.9800000000000004 6.1,5" data-type="line" data-label="" points="210.26365348399244,400.7909604519774 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-3.9800000000000004 -6.15,6.1000000000000005" data-type="line" data-label="" points="210.26365348399244,400.7909604519774 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-3.9800000000000004 -3.8499999999999996,6.3" data-type="line" data-label="" points="210.26365348399244,400.7909604519774 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-3.9800000000000004 -4,7.42" data-type="line" data-label="" points="210.26365348399244,400.7909604519774 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-3.9800000000000004 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="210.26365348399244,400.7909604519774 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-5.38 5.5,-2.3800000000000003" data-type="line" data-label="" points="210.26365348399244,427.15630885122414 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-5.38 4.5,-0.38" data-type="line" data-label="" points="210.26365348399244,427.15630885122414 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-5.38 3.8,1.6199999999999997" data-type="line" data-label="" points="210.26365348399244,427.15630885122414 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-5.38 4.6,3.3200000000000003" data-type="line" data-label="" points="210.26365348399244,427.15630885122414 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-5.38 6.1,5" data-type="line" data-label="" points="210.26365348399244,427.15630885122414 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-5.38 -6.15,6.1000000000000005" data-type="line" data-label="" points="210.26365348399244,427.15630885122414 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-5.38 -3.8499999999999996,6.3" data-type="line" data-label="" points="210.26365348399244,427.15630885122414 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-5.38 -4,7.42" data-type="line" data-label="" points="210.26365348399244,427.15630885122414 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-5.38 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="210.26365348399244,427.15630885122414 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="5.5,-2.3800000000000003 4.5,-0.38" data-type="line" data-label="" points="408.00376647834275,370.6591337099812 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="5.5,-2.3800000000000003 3.8,1.6199999999999997" data-type="line" data-label="" points="408.00376647834275,370.6591337099812 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="5.5,-2.3800000000000003 4.6,3.3200000000000003" data-type="line" data-label="" points="408.00376647834275,370.6591337099812 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="5.5,-2.3800000000000003 6.1,5" data-type="line" data-label="" points="408.00376647834275,370.6591337099812 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="5.5,-2.3800000000000003 -6.15,6.1000000000000005" data-type="line" data-label="" points="408.00376647834275,370.6591337099812 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="5.5,-2.3800000000000003 -3.8499999999999996,6.3" data-type="line" data-label="" points="408.00376647834275,370.6591337099812 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="5.5,-2.3800000000000003 -4,7.42" data-type="line" data-label="" points="408.00376647834275,370.6591337099812 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="5.5,-2.3800000000000003 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="408.00376647834275,370.6591337099812 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-0.38 3.8,1.6199999999999997" data-type="line" data-label="" points="389.1713747645951,332.99435028248587 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-0.38 4.6,3.3200000000000003" data-type="line" data-label="" points="389.1713747645951,332.99435028248587 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-0.38 6.1,5" data-type="line" data-label="" points="389.1713747645951,332.99435028248587 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-0.38 -6.15,6.1000000000000005" data-type="line" data-label="" points="389.1713747645951,332.99435028248587 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-0.38 -3.8499999999999996,6.3" data-type="line" data-label="" points="389.1713747645951,332.99435028248587 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-0.38 -4,7.42" data-type="line" data-label="" points="389.1713747645951,332.99435028248587 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-0.38 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="389.1713747645951,332.99435028248587 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.8,1.6199999999999997 4.6,3.3200000000000003" data-type="line" data-label="" points="375.98870056497174,295.3295668549906 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.8,1.6199999999999997 6.1,5" data-type="line" data-label="" points="375.98870056497174,295.3295668549906 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.8,1.6199999999999997 -6.15,6.1000000000000005" data-type="line" data-label="" points="375.98870056497174,295.3295668549906 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.8,1.6199999999999997 -3.8499999999999996,6.3" data-type="line" data-label="" points="375.98870056497174,295.3295668549906 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.8,1.6199999999999997 -4,7.42" data-type="line" data-label="" points="375.98870056497174,295.3295668549906 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.8,1.6199999999999997 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="375.98870056497174,295.3295668549906 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.6,3.3200000000000003 6.1,5" data-type="line" data-label="" points="391.0546139359699,263.3145009416196 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.6,3.3200000000000003 -6.15,6.1000000000000005" data-type="line" data-label="" points="391.0546139359699,263.3145009416196 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.6,3.3200000000000003 -3.8499999999999996,6.3" data-type="line" data-label="" points="391.0546139359699,263.3145009416196 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.6,3.3200000000000003 -4,7.42" data-type="line" data-label="" points="391.0546139359699,263.3145009416196 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.6,3.3200000000000003 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="391.0546139359699,263.3145009416196 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.1,5 -6.15,6.1000000000000005" data-type="line" data-label="" points="419.30320150659134,231.67608286252354 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.1,5 -3.8499999999999996,6.3" data-type="line" data-label="" points="419.30320150659134,231.67608286252354 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.1,5 -4,7.42" data-type="line" data-label="" points="419.30320150659134,231.67608286252354 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.1,5 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="419.30320150659134,231.67608286252354 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-6.15,6.1000000000000005 -3.8499999999999996,6.3" data-type="line" data-label="" points="188.60640301318264,210.96045197740114 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-6.15,6.1000000000000005 -4,7.42" data-type="line" data-label="" points="188.60640301318264,210.96045197740114 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-6.15,6.1000000000000005 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="188.60640301318264,210.96045197740114 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.8499999999999996,6.3 -4,7.42" data-type="line" data-label="" points="231.92090395480227,207.19397363465163 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.8499999999999996,6.3 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="231.92090395480227,207.19397363465163 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4,7.42 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="229.0960451977401,186.10169491525426 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.95,-1 10.1875,-4.9" data-type="line" data-label="" points="472.97551789077215,344.67043314500944 496.2806026365348,418.1167608286253" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.95,-1 10.1875,-5.1" data-type="line" data-label="" points="472.97551789077215,344.67043314500944 496.2806026365348,421.8832391713748" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.95,-1 8.8,-3.5" data-type="line" data-label="" points="472.97551789077215,344.67043314500944 470.15065913370995,391.75141242937855" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.95,-1 12.3,-3.5" data-type="line" data-label="" points="472.97551789077215,344.67043314500944 536.0640301318267,391.75141242937855" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.95,-1 13,-6" data-type="line" data-label="" points="472.97551789077215,344.67043314500944 549.2467043314501,438.83239171374765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.95,-1 11.5,-9.379999999999999" data-type="line" data-label="" points="472.97551789077215,344.67043314500944 520.9981167608287,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.95,-1 14.5,-9.379999999999999" data-type="line" data-label="" points="472.97551789077215,344.67043314500944 577.4952919020716,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.04,7.5 8.97,6.45" data-type="line" data-label="" points="531.1676082862523,184.59510357815444 473.3521657250471,204.36911487758945" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.04,7.5 11,3.8200000000000003" data-type="line" data-label="" points="531.1676082862523,184.59510357815444 511.5819209039548,253.89830508474577" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.04,7.5 10.2375,9.4" data-type="line" data-label="" points="531.1676082862523,184.59510357815444 497.22222222222223,148.8135593220339" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.97,6.45 11,3.8200000000000003" data-type="line" data-label="" points="473.3521657250471,204.36911487758945 511.5819209039548,253.89830508474577" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.97,6.45 10.2375,9.4" data-type="line" data-label="" points="473.3521657250471,204.36911487758945 497.22222222222223,148.8135593220339" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="11,3.8200000000000003 10.2375,9.4" data-type="line" data-label="" points="511.5819209039548,253.89830508474577 497.22222222222223,148.8135593220339" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-4.9 10.1875,-5.1" data-type="line" data-label="" points="496.2806026365348,418.1167608286253 496.2806026365348,421.8832391713748" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-4.9 8.8,-3.5" data-type="line" data-label="" points="496.2806026365348,418.1167608286253 470.15065913370995,391.75141242937855" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-4.9 12.3,-3.5" data-type="line" data-label="" points="496.2806026365348,418.1167608286253 536.0640301318267,391.75141242937855" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-4.9 13,-6" data-type="line" data-label="" points="496.2806026365348,418.1167608286253 549.2467043314501,438.83239171374765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-4.9 11.5,-9.379999999999999" data-type="line" data-label="" points="496.2806026365348,418.1167608286253 520.9981167608287,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-4.9 14.5,-9.379999999999999" data-type="line" data-label="" points="496.2806026365348,418.1167608286253 577.4952919020716,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.1 8.8,-3.5" data-type="line" data-label="" points="496.2806026365348,421.8832391713748 470.15065913370995,391.75141242937855" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.1 12.3,-3.5" data-type="line" data-label="" points="496.2806026365348,421.8832391713748 536.0640301318267,391.75141242937855" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.1 13,-6" data-type="line" data-label="" points="496.2806026365348,421.8832391713748 549.2467043314501,438.83239171374765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.1 11.5,-9.379999999999999" data-type="line" data-label="" points="496.2806026365348,421.8832391713748 520.9981167608287,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.1 14.5,-9.379999999999999" data-type="line" data-label="" points="496.2806026365348,421.8832391713748 577.4952919020716,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.8,-3.5 12.3,-3.5" data-type="line" data-label="" points="470.15065913370995,391.75141242937855 536.0640301318267,391.75141242937855" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.8,-3.5 13,-6" data-type="line" data-label="" points="470.15065913370995,391.75141242937855 549.2467043314501,438.83239171374765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.8,-3.5 11.5,-9.379999999999999" data-type="line" data-label="" points="470.15065913370995,391.75141242937855 520.9981167608287,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.8,-3.5 14.5,-9.379999999999999" data-type="line" data-label="" points="470.15065913370995,391.75141242937855 577.4952919020716,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.3,-3.5 13,-6" data-type="line" data-label="" points="536.0640301318267,391.75141242937855 549.2467043314501,438.83239171374765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.3,-3.5 11.5,-9.379999999999999" data-type="line" data-label="" points="536.0640301318267,391.75141242937855 520.9981167608287,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.3,-3.5 14.5,-9.379999999999999" data-type="line" data-label="" points="536.0640301318267,391.75141242937855 577.4952919020716,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="13,-6 11.5,-9.379999999999999" data-type="line" data-label="" points="549.2467043314501,438.83239171374765 520.9981167608287,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="13,-6 14.5,-9.379999999999999" data-type="line" data-label="" points="549.2467043314501,438.83239171374765 577.4952919020716,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="11.5,-9.379999999999999 14.5,-9.379999999999999" data-type="line" data-label="" points="520.9981167608287,502.4858757062147 577.4952919020716,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 -1.75,2.8999999999999986" data-type="line" data-label="" points="271.4689265536723,252.391713747646 271.4689265536723,271.2241054613936" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 -1.75,-0.3000000000000034" data-type="line" data-label="" points="271.4689265536723,252.391713747646 271.4689265536723,331.48775894538613" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 -1.75,-4.899999999999999" data-type="line" data-label="" points="271.4689265536723,252.391713747646 271.4689265536723,418.1167608286252" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 1.75,-4.299999999999999" data-type="line" data-label="" points="271.4689265536723,252.391713747646 337.38229755178907,406.81732580037664" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 1.75,-0.09999999999999698" data-type="line" data-label="" points="271.4689265536723,252.391713747646 337.38229755178907,327.7212806026365" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 1.75,4.899999999999999" data-type="line" data-label="" points="271.4689265536723,252.391713747646 337.38229755178907,233.55932203389835" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 -4.5,-6.12" data-type="line" data-label="" points="271.4689265536723,252.391713747646 219.67984934086627,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 -2.7,-6.12" data-type="line" data-label="" points="271.4689265536723,252.391713747646 253.57815442561204,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 -0.8999999999999999,-6.12" data-type="line" data-label="" points="271.4689265536723,252.391713747646 287.4764595103578,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 0.9000000000000004,-6.12" data-type="line" data-label="" points="271.4689265536723,252.391713747646 321.37476459510356,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 2.7,-6.12" data-type="line" data-label="" points="271.4689265536723,252.391713747646 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 4.5,-6.12" data-type="line" data-label="" points="271.4689265536723,252.391713747646 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 -5.36,-2" data-type="line" data-label="" points="271.4689265536723,252.391713747646 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 4.6,4.08" data-type="line" data-label="" points="271.4689265536723,252.391713747646 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 -1.75,-0.3000000000000034" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 271.4689265536723,331.48775894538613" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 -1.75,-4.899999999999999" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 271.4689265536723,418.1167608286252" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 1.75,-4.299999999999999" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 337.38229755178907,406.81732580037664" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 1.75,-0.09999999999999698" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 337.38229755178907,327.7212806026365" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 1.75,4.899999999999999" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 337.38229755178907,233.55932203389835" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 -4.5,-6.12" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 219.67984934086627,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 -2.7,-6.12" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 253.57815442561204,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 -0.8999999999999999,-6.12" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 287.4764595103578,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 0.9000000000000004,-6.12" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 321.37476459510356,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 2.7,-6.12" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 4.5,-6.12" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 -5.36,-2" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 4.6,4.08" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 -1.75,-4.899999999999999" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 271.4689265536723,418.1167608286252" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 1.75,-4.299999999999999" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 337.38229755178907,406.81732580037664" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 1.75,-0.09999999999999698" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 337.38229755178907,327.7212806026365" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 1.75,4.899999999999999" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 337.38229755178907,233.55932203389835" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 -4.5,-6.12" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 219.67984934086627,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 -2.7,-6.12" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 253.57815442561204,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 -0.8999999999999999,-6.12" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 287.4764595103578,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 0.9000000000000004,-6.12" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 321.37476459510356,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 2.7,-6.12" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 4.5,-6.12" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 -5.36,-2" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 4.6,4.08" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 1.75,-4.299999999999999" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 337.38229755178907,406.81732580037664" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 1.75,-0.09999999999999698" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 337.38229755178907,327.7212806026365" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 1.75,4.899999999999999" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 337.38229755178907,233.55932203389835" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 -4.5,-6.12" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 219.67984934086627,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 -2.7,-6.12" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 253.57815442561204,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 -0.8999999999999999,-6.12" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 287.4764595103578,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 0.9000000000000004,-6.12" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 321.37476459510356,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 2.7,-6.12" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 4.5,-6.12" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 -5.36,-2" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 4.6,4.08" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-4.299999999999999 1.75,-0.09999999999999698" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 337.38229755178907,327.7212806026365" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-4.299999999999999 1.75,4.899999999999999" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 337.38229755178907,233.55932203389835" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-4.299999999999999 -4.5,-6.12" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 219.67984934086627,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-4.299999999999999 -2.7,-6.12" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 253.57815442561204,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-4.299999999999999 -0.8999999999999999,-6.12" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 287.4764595103578,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-4.299999999999999 0.9000000000000004,-6.12" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 321.37476459510356,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-4.299999999999999 2.7,-6.12" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-4.299999999999999 4.5,-6.12" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-4.299999999999999 -5.36,-2" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-4.299999999999999 4.6,4.08" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.09999999999999698 1.75,4.899999999999999" data-type="line" data-label="" points="337.38229755178907,327.7212806026365 337.38229755178907,233.55932203389835" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.09999999999999698 -4.5,-6.12" data-type="line" data-label="" points="337.38229755178907,327.7212806026365 219.67984934086627,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.09999999999999698 -2.7,-6.12" data-type="line" data-label="" points="337.38229755178907,327.7212806026365 253.57815442561204,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.09999999999999698 -0.8999999999999999,-6.12" data-type="line" data-label="" points="337.38229755178907,327.7212806026365 287.4764595103578,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.09999999999999698 0.9000000000000004,-6.12" data-type="line" data-label="" points="337.38229755178907,327.7212806026365 321.37476459510356,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.09999999999999698 2.7,-6.12" data-type="line" data-label="" points="337.38229755178907,327.7212806026365 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.09999999999999698 4.5,-6.12" data-type="line" data-label="" points="337.38229755178907,327.7212806026365 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.09999999999999698 -5.36,-2" data-type="line" data-label="" points="337.38229755178907,327.7212806026365 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.09999999999999698 4.6,4.08" data-type="line" data-label="" points="337.38229755178907,327.7212806026365 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.899999999999999 -4.5,-6.12" data-type="line" data-label="" points="337.38229755178907,233.55932203389835 219.67984934086627,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.899999999999999 -2.7,-6.12" data-type="line" data-label="" points="337.38229755178907,233.55932203389835 253.57815442561204,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.899999999999999 -0.8999999999999999,-6.12" data-type="line" data-label="" points="337.38229755178907,233.55932203389835 287.4764595103578,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.899999999999999 0.9000000000000004,-6.12" data-type="line" data-label="" points="337.38229755178907,233.55932203389835 321.37476459510356,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.899999999999999 2.7,-6.12" data-type="line" data-label="" points="337.38229755178907,233.55932203389835 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.899999999999999 4.5,-6.12" data-type="line" data-label="" points="337.38229755178907,233.55932203389835 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.899999999999999 -5.36,-2" data-type="line" data-label="" points="337.38229755178907,233.55932203389835 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.899999999999999 4.6,4.08" data-type="line" data-label="" points="337.38229755178907,233.55932203389835 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-10.5,-1.1 -8.5,-1.6199999999999997" data-type="line" data-label="" points="106.6854990583804,346.5536723163842 144.35028248587568,356.34651600753295" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.12 -2.7,-6.12" data-type="line" data-label="" points="219.67984934086627,441.09227871939737 253.57815442561204,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.12 -0.8999999999999999,-6.12" data-type="line" data-label="" points="219.67984934086627,441.09227871939737 287.4764595103578,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.12 0.9000000000000004,-6.12" data-type="line" data-label="" points="219.67984934086627,441.09227871939737 321.37476459510356,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.12 2.7,-6.12" data-type="line" data-label="" points="219.67984934086627,441.09227871939737 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.12 4.5,-6.12" data-type="line" data-label="" points="219.67984934086627,441.09227871939737 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.12 -5.36,-2" data-type="line" data-label="" points="219.67984934086627,441.09227871939737 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.12 4.6,4.08" data-type="line" data-label="" points="219.67984934086627,441.09227871939737 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.12 -0.8999999999999999,-6.12" data-type="line" data-label="" points="253.57815442561204,441.09227871939737 287.4764595103578,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.12 0.9000000000000004,-6.12" data-type="line" data-label="" points="253.57815442561204,441.09227871939737 321.37476459510356,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.12 2.7,-6.12" data-type="line" data-label="" points="253.57815442561204,441.09227871939737 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.12 4.5,-6.12" data-type="line" data-label="" points="253.57815442561204,441.09227871939737 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.12 -5.36,-2" data-type="line" data-label="" points="253.57815442561204,441.09227871939737 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.12 4.6,4.08" data-type="line" data-label="" points="253.57815442561204,441.09227871939737 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.12 0.9000000000000004,-6.12" data-type="line" data-label="" points="287.4764595103578,441.09227871939737 321.37476459510356,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.12 2.7,-6.12" data-type="line" data-label="" points="287.4764595103578,441.09227871939737 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.12 4.5,-6.12" data-type="line" data-label="" points="287.4764595103578,441.09227871939737 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.12 -5.36,-2" data-type="line" data-label="" points="287.4764595103578,441.09227871939737 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.12 4.6,4.08" data-type="line" data-label="" points="287.4764595103578,441.09227871939737 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.12 2.7,-6.12" data-type="line" data-label="" points="321.37476459510356,441.09227871939737 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.12 4.5,-6.12" data-type="line" data-label="" points="321.37476459510356,441.09227871939737 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.12 -5.36,-2" data-type="line" data-label="" points="321.37476459510356,441.09227871939737 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.12 4.6,4.08" data-type="line" data-label="" points="321.37476459510356,441.09227871939737 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.12 4.5,-6.12" data-type="line" data-label="" points="355.27306967984936,441.09227871939737 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.12 -5.36,-2" data-type="line" data-label="" points="355.27306967984936,441.09227871939737 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.12 4.6,4.08" data-type="line" data-label="" points="355.27306967984936,441.09227871939737 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.12 -5.36,-2" data-type="line" data-label="" points="389.1713747645951,441.09227871939737 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.12 4.6,4.08" data-type="line" data-label="" points="389.1713747645951,441.09227871939737 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5.36,-2 4.6,4.08" data-type="line" data-label="" points="203.4839924670433,363.5028248587571 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="14.47,7.45 10.46,6.5" data-type="line" data-label="" points="576.9303201506591,185.5367231638418 501.4124293785311,203.42749529190206" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="14.47,7.45 10.2375,9.8" data-type="line" data-label="" points="576.9303201506591,185.5367231638418 497.22222222222223,141.28060263653484" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.46,6.5 10.2375,9.8" data-type="line" data-label="" points="501.4124293785311,203.42749529190206 497.22222222222223,141.28060263653484" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="15,-5.9 14.5,-8.620000000000001" data-type="line" data-label="" points="586.9114877589454,436.94915254237293 577.4952919020716,488.17325800376653" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.05,-1 10.1875,-5.3" data-type="line" data-label="" points="531.3559322033898,344.67043314500944 496.2806026365348,425.6497175141243" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.05,-1 10.1875,-5.5" data-type="line" data-label="" points="531.3559322033898,344.67043314500944 496.2806026365348,429.41619585687386" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.05,-1 13,-5.8" data-type="line" data-label="" points="531.3559322033898,344.67043314500944 549.2467043314501,435.06591337099815" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.05,-1 13,-6.2" data-type="line" data-label="" points="531.3559322033898,344.67043314500944 549.2467043314501,442.5988700564972" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.05,-1 11.5,-8.620000000000001" data-type="line" data-label="" points="531.3559322033898,344.67043314500944 520.9981167608287,488.17325800376653" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.3 10.1875,-5.5" data-type="line" data-label="" points="496.2806026365348,425.6497175141243 496.2806026365348,429.41619585687386" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.3 13,-5.8" data-type="line" data-label="" points="496.2806026365348,425.6497175141243 549.2467043314501,435.06591337099815" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.3 13,-6.2" data-type="line" data-label="" points="496.2806026365348,425.6497175141243 549.2467043314501,442.5988700564972" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.3 11.5,-8.620000000000001" data-type="line" data-label="" points="496.2806026365348,425.6497175141243 520.9981167608287,488.17325800376653" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.5 13,-5.8" data-type="line" data-label="" points="496.2806026365348,429.41619585687386 549.2467043314501,435.06591337099815" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.5 13,-6.2" data-type="line" data-label="" points="496.2806026365348,429.41619585687386 549.2467043314501,442.5988700564972" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.5 11.5,-8.620000000000001" data-type="line" data-label="" points="496.2806026365348,429.41619585687386 520.9981167608287,488.17325800376653" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="13,-5.8 13,-6.2" data-type="line" data-label="" points="549.2467043314501,435.06591337099815 549.2467043314501,442.5988700564972" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="13,-5.8 11.5,-8.620000000000001" data-type="line" data-label="" points="549.2467043314501,435.06591337099815 520.9981167608287,488.17325800376653" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="13,-6.2 11.5,-8.620000000000001" data-type="line" data-label="" points="549.2467043314501,442.5988700564972 520.9981167608287,488.17325800376653" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-10.38,4.3 -12.12,4.3" data-type="line" data-label="" points="108.94538606403009,244.8587570621469 76.1770244821092,244.8587570621469" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-10.38,4.1 -12.12,4.1" data-type="line" data-label="" points="108.94538606403009,248.62523540489644 76.1770244821092,248.62523540489644" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="10.1875,-5.1 10.3875,-5.1 10.3875,-4.9 10.1875,-4.9" data-type="line" data-label="" points="496.2806026365348,421.8832391713748 500.0470809792844,421.8832391713748 500.0470809792844,418.1167608286253 496.2806026365348,418.1167608286253" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.75,-0.1000000000000032 -2.05,-0.1000000000000032 -2.05,1.2999999999999976 -1.75,1.2999999999999976" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 265.819209039548,327.7212806026366 265.819209039548,301.3559322033899 271.4689265536723,301.3559322033899" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.12,3.8999999999999995 -10.38,3.9" data-type="line" data-label="" points="76.1770244821092,252.39171374764595 108.94538606403009,252.39171374764595" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.12,3.6999999999999997 -10.38,3.7" data-type="line" data-label="" points="76.1770244821092,256.1581920903955 108.94538606403009,256.15819209039546" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.12,3.5 -10.38,3.5" data-type="line" data-label="" points="76.1770244821092,259.924670433145 108.94538606403009,259.924670433145" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.12,3.3 -10.38,3.3" data-type="line" data-label="" points="76.1770244821092,263.69114877589453 108.94538606403009,263.69114877589453" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.12,3.0999999999999996 -10.38,3.1" data-type="line" data-label="" points="76.1770244821092,267.4576271186441 108.94538606403009,267.4576271186441" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.12,2.9 -10.38,2.9000000000000004" data-type="line" data-label="" points="76.1770244821092,271.2241054613936 108.94538606403009,271.2241054613936" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.12,2.7 -10.38,2.7" data-type="line" data-label="" points="76.1770244821092,274.9905838041431 108.94538606403009,274.9905838041431" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-10.38,2.5 -12.12,2.5" data-type="line" data-label="" points="108.94538606403009,278.7570621468927 76.1770244821092,278.7570621468927" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-10.38,2.3000000000000003 -12.12,2.3" data-type="line" data-label="" points="108.94538606403009,282.5235404896422 76.1770244821092,282.5235404896422" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-10.38,2.1000000000000005 -12.12,2.1" data-type="line" data-label="" points="108.94538606403009,286.2900188323917 76.1770244821092,286.29001883239175" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-10.38,1.9000000000000001 -12.12,1.9" data-type="line" data-label="" points="108.94538606403009,290.05649717514126 76.1770244821092,290.05649717514126" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-10.38,1.7 -12.12,1.7" data-type="line" data-label="" points="108.94538606403009,293.82297551789077 76.1770244821092,293.82297551789077" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-2.7,-6.12 -2.7,-5.92 -4.5,-5.92 -4.5,-6.12" data-type="line" data-label="" points="253.57815442561204,441.09227871939737 253.57815442561204,437.32580037664786 219.67984934086627,437.32580037664786 219.67984934086627,441.09227871939737" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-0.9000000000000004,-6.12 -0.9000000000000004,-5.92 -2.7,-5.92" data-type="line" data-label="" points="287.4764595103578,441.09227871939737 287.4764595103578,437.32580037664786 253.57815442561204,437.32580037664786" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="0.8999999999999999,-6.12 0.8999999999999999,-5.92 -0.9000000000000004,-5.92" data-type="line" data-label="" points="321.37476459510356,441.09227871939737 321.37476459510356,437.32580037664786 287.4764595103578,437.32580037664786" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="2.7,-6.12 2.7,-5.92 0.8999999999999999,-5.92" data-type="line" data-label="" points="355.27306967984936,441.09227871939737 355.27306967984936,437.32580037664786 321.37476459510356,437.32580037664786" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.5,-6.12 4.5,-5.92 2.7,-5.92" data-type="line" data-label="" points="389.1713747645951,441.09227871939737 389.1713747645951,437.32580037664786 355.27306967984936,437.32580037664786" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.75,-4.899999999999999 -1.95,-4.899999999999999 -1.95,-5.92 -0.8999999999999999,-5.92 -0.8999999999999999,-6.12" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 267.7024482109228,418.1167608286252 267.7024482109228,437.32580037664786 287.4764595103578,437.32580037664786 287.4764595103578,441.09227871939737" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.75,2.8999999999999986 -1.8499999999999999,2.8999999999999986 -1.8499999999999999,3.8999999999999986 -1.75,3.8999999999999986" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 269.5856873822975,271.2241054613936 269.5856873822975,252.391713747646 271.4689265536723,252.391713747646" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5,-3.2199999999999998 -5,-3.0199999999999996 -4.4399999999999995,-3.0199999999999996 -4.4399999999999995,-2 -4.64,-2" data-type="line" data-label="" points="210.26365348399244,386.4783427495292 210.26365348399244,382.7118644067797 220.80979284369113,382.7118644067797 220.80979284369113,363.5028248587571 217.04331450094162,363.5028248587571" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5,-4.62 -5,-4.42 -5.65,-4.42 -5.65,-3.0199999999999996 -5,-3.0199999999999996" data-type="line" data-label="" points="210.26365348399244,412.8436911487759 210.26365348399244,409.0772128060264 198.02259887005647,409.0772128060264 198.02259887005647,382.7118644067797 210.26365348399244,382.7118644067797" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.75,0.8999999999999977 -1.8499999999999999,0.8999999999999977 -1.8499999999999999,1.0999999999999974 -1.75,1.0999999999999974" data-type="line" data-label="" points="271.4689265536723,308.88888888888897 269.5856873822975,308.88888888888897 269.5856873822975,305.1224105461394 271.4689265536723,305.1224105461394" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="10.1875,-6.1 11.292499999999999,-6.1 11.292499999999999,-6.3 10.1875,-6.3" data-type="line" data-label="" points="496.2806026365348,440.71563088512244 517.090395480226,440.71563088512244 517.090395480226,444.48210922787194 496.2806026365348,444.48210922787194" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-8.5,-1.6199999999999997 -8.5,-1.1 -10.5,-1.1" data-type="line" data-label="" points="144.35028248587568,356.34651600753295 144.35028248587568,346.5536723163842 106.6854990583804,346.5536723163842" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.75,-0.3000000000000034 -5.5600000000000005,-0.3000000000000034 -5.5600000000000005,-2 -5.36,-2" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 199.71751412429376,331.48775894538613 199.71751412429376,363.5028248587571 203.4839924670433,363.5028248587571" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="14.47,7.45 14.670000000000002,7.45 14.670000000000002,6.975 10.260000000000002,6.975 10.260000000000002,6.5 10.46,6.5" data-type="line" data-label="" points="576.9303201506591,185.5367231638418 580.6967984934088,185.5367231638418 580.6967984934088,194.48210922787194 497.64595103578154,194.48210922787194 497.64595103578154,203.42749529190206 501.4124293785311,203.42749529190206" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="15,-5.900000000000002 15.399999999999999,-5.900000000000002 15.399999999999999,-7.260000000000002 14.5,-7.260000000000002 14.5,-8.620000000000001" data-type="line" data-label="" points="586.9114877589454,436.94915254237293 594.4444444444443,436.94915254237293 594.4444444444443,462.56120527306973 577.4952919020716,462.56120527306973 577.4952919020716,488.17325800376653" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.75,-0.49999999999999734 3.125,-0.49999999999999734 3.125,0.5800000000000001 4.5,0.5800000000000001 4.5,0.38" data-type="line" data-label="" points="337.38229755178907,335.2542372881356 363.27683615819205,335.2542372881356 363.27683615819205,314.91525423728814 389.1713747645951,314.91525423728814 389.1713747645951,318.6817325800377" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.2999999999999998,6.5 1.5,6.5 1.5,8.379999999999999 -1.8369701987210297e-17,8.379999999999999 -1.8369701987210297e-17,8.18" data-type="line" data-label="" points="328.90772128060263,203.42749529190206 332.67419962335214,203.42749529190206 332.67419962335214,168.02259887005653 304.4256120527307,168.02259887005653 304.4256120527307,171.78907721280603" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="11.54,6.5 11.739999999999998,6.5 11.739999999999998,5.540000000000001 11,5.540000000000001 11,4.58" data-type="line" data-label="" points="521.7514124293785,203.42749529190206 525.517890772128,203.42749529190206 525.517890772128,221.5065913370998 511.5819209039548,221.5065913370998 511.5819209039548,239.58568738229758" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.5,-2.9 -13.800999999999998,-2.9000000000000004 -13.800999999999998,-1.0999999999999996 -12.5,-1.1" data-type="line" data-label="" points="69.02071563088509,380.45197740112997 44.51977401129943,380.45197740112997 44.51977401129943,346.55367231638417 69.02071563088509,346.5536723163842" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.75,1.2999999999999976 -4.011,1.2999999999999976 -4.011,3.0999999999999988 -1.75,3.0999999999999988" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 228.88888888888886,301.3559322033899 228.88888888888886,267.4576271186441 271.4689265536723,267.4576271186441" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="10.1875,-5.9 10.2875,-5.9 10.2875,-5.7 10.1875,-5.7" data-type="line" data-label="" points="496.2806026365348,436.94915254237293 498.1638418079096,436.94915254237293 498.1638418079096,433.18267419962336 496.2806026365348,433.18267419962336" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="10.1875,-5.5 10.2875,-5.5 10.2875,-5.3 10.1875,-5.3" data-type="line" data-label="" points="496.2806026365348,429.41619585687386 498.1638418079096,429.41619585687386 498.1638418079096,425.6497175141243 496.2806026365348,425.6497175141243" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="13,-6.2 12.8,-6.2 12.8,-5.8 13,-5.8" data-type="line" data-label="" points="549.2467043314501,442.5988700564972 545.4802259887006,442.5988700564972 545.4802259887006,435.06591337099815 549.2467043314501,435.06591337099815" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.75,4.699999999999999 3.2710000000000004,4.699999999999999 3.2710000000000004,-0.29999999999999716 1.75,-0.29999999999999716" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 366.0263653483992,237.32580037664786 366.0263653483992,331.487758945386 337.38229755178907,331.487758945386" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-6.15,6.1000000000000005 -8.291,6.1000000000000005 -8.291,6.94 -3.6500000000000004,6.94 -3.6500000000000004,6.3 -3.8499999999999996,6.3" data-type="line" data-label="" points="188.60640301318264,210.96045197740114 148.28625235404894,210.96045197740114 148.28625235404894,195.14124293785312 235.68738229755178,195.14124293785312 235.68738229755178,207.19397363465163 231.92090395480227,207.19397363465163" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.6,4.08 4.6,4.800000000000001 1.75,4.800000000000001 1.75,4.899999999999999" data-type="line" data-label="" points="391.0546139359699,249.00188323917138 391.0546139359699,235.44256120527308 337.38229755178907,235.44256120527308 337.38229755178907,233.55932203389835" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.75,1.2999999999999976 -2.34,1.2999999999999976" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 260.3578154425612,301.3559322033899" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.75,-4.699999999999999 -2.291,-4.699999999999999 -2.291,-4.7509999999999994" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 261.2806026365348,414.3502824858757 261.2806026365348,415.31073446327684" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="3.2710000000000004,2.200000000000001 2.9810000000000008,2.200000000000001 2.9810000000000008,2.199000000000001" data-type="line" data-label="" points="366.0263653483992,284.4067796610169 360.56497175141243,284.4067796610169 360.56497175141243,284.4256120527307" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-10.5,-1.3 -7.509000000000002,-1.3 -7.509000000000002,-1.351" data-type="line" data-label="" points="106.6854990583804,350.32015065913373 163.01318267419956,350.32015065913373 163.01318267419956,351.28060263653487" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.1,5 6.341,5 6.341,4.649" data-type="line" data-label="" points="419.30320150659134,231.67608286252354 423.84180790960454,231.67608286252354 423.84180790960454,238.28625235404897" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="8.95,-1 7.709,-1 7.709,-1.301" data-type="line" data-label="" points="472.97551789077215,344.67043314500944 449.6045197740113,344.67043314500944 449.6045197740113,350.33898305084745" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="8.97,6.45 9.211,6.45 9.211,6.099" data-type="line" data-label="" points="473.3521657250471,204.36911487758945 477.89077212806023,204.36911487758945 477.89077212806023,210.97928436911488" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="10.2375,9.4 11.5785,9.4 11.5785,9.099" data-type="line" data-label="" points="497.22222222222223,148.8135593220339 522.4764595103578,148.8135593220339 522.4764595103578,154.48210922787194" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="8.8,-3.5 9.041,-3.5 9.041,-3.851" data-type="line" data-label="" points="470.15065913370995,391.75141242937855 474.68926553672316,391.75141242937855 474.68926553672316,398.361581920904" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12.3,-3.5 12.541,-3.5 12.541,-3.851" data-type="line" data-label="" points="536.0640301318267,391.75141242937855 540.6026365348399,391.75141242937855 540.6026365348399,398.361581920904" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12.8,-5.8 12.45,-5.8" data-type="line" data-label="" points="545.4802259887006,435.06591337099815 538.8888888888889,435.06591337099815" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="13,-6 12.759,-6 12.759,-6.301" data-type="line" data-label="" points="549.2467043314501,438.83239171374765 544.7080979284369,438.83239171374765 544.7080979284369,444.5009416195857" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.75,-4.299999999999999 3.8010000000000006,-4.299999999999999 3.8010000000000006,-3.9989999999999988" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 376.0075329566855,406.81732580037664 376.0075329566855,401.14877589453863" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.8499999999999999,3.8999999999999986 -2.1999999999999997,3.8999999999999986 -2.1999999999999997,3.9009999999999985" data-type="line" data-label="" points="269.5856873822975,252.391713747646 262.99435028248587,252.391713747646 262.99435028248587,252.37288135593224" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="10.2375,9.8 10.5385,9.8 10.5385,10.001" data-type="line" data-label="" points="497.22222222222223,141.28060263653484 502.8907721280603,141.28060263653484 502.8907721280603,137.49529190207159" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12.05,-1 13.301000000000002,-1 13.301000000000002,-0.6990000000000001" data-type="line" data-label="" points="531.3559322033898,344.67043314500944 554.9152542372882,344.67043314500944 554.9152542372882,339.0018832391714" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-6.15,6.3 -6.3500000000000005,6.3 -6.3500000000000005,8.379999999999999 -4,8.379999999999999 -4,8.18" data-type="line" data-label="" points="188.60640301318264,207.19397363465163 184.8399246704331,207.19397363465163 184.8399246704331,168.02259887005653 229.0960451977401,168.02259887005653 229.0960451977401,171.78907721280603" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-6.15,6.3 -6.3500000000000005,6.3 -6.3500000000000005,8.379999999999999 -4,8.379999999999999 -4,8.18" data-type="line" data-label="recovered from net labels: schematic_port_178 -&gt; schematic_port_184" points="188.60640301318264,207.19397363465163 184.8399246704331,207.19397363465163 184.8399246704331,168.02259887005653 229.0960451977401,168.02259887005653 229.0960451977401,171.78907721280603" fill="none" stroke="green" stroke-width="1px"/></g><g><rect data-type="rect" data-label="schematic_component_0" data-x="-13" data-y="3" x="43.03201506591334" y="241.09227871939734" width="33.14500941619585" height="56.49717514124296" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_1" data-x="-9.5" data-y="3" x="108.94538606403007" y="241.09227871939734" width="33.145009416195904" height="56.49717514124296" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_2" data-x="0" data-y="0" x="271.4689265536723" y="229.7928436911488" width="65.91337099811676" height="192.090395480226" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_3" data-x="-11.5" data-y="-2" x="69.02071563088509" y="342.78719397363466" width="37.66478342749531" height="41.43126177024482" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_4" data-x="-8.3675" data-y="-2" x="135.87570621468927" y="356.34651600753295" width="21.939736346516014" height="14.312617702448222" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_5" data-x="-4.2475000000000005" data-y="-6.5" x="211.20527306967983" y="441.0922787193974" width="26.459510357815446" height="14.312617702448222" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_6" data-x="-2.4475000000000002" data-y="-6.5" x="245.10357815442558" y="441.0922787193974" width="26.459510357815475" height="14.312617702448222" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_7" data-x="-0.6475" data-y="-6.5" x="279.0018832391713" y="441.0922787193974" width="26.459510357815418" height="14.312617702448222" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_8" data-x="1.1525000000000003" data-y="-6.5" x="312.9001883239171" y="441.0922787193974" width="26.459510357815475" height="14.312617702448222" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_9" data-x="2.9525" data-y="-6.5" x="346.7984934086629" y="441.0922787193974" width="26.459510357815418" height="14.312617702448222" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_10" data-x="4.9325" data-y="-6.5" x="380.69679849340866" y="441.0922787193974" width="33.239171374764624" height="14.312617702448222" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_11" data-x="-5" data-y="-2" x="203.48399246704327" y="357.09981167608294" width="13.559322033898326" height="12.806026365348373" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_12" data-x="-4.5075" data-y="-3.6" x="201.78907721280598" y="386.47834274952925" width="35.49905838041431" height="14.312617702448222" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_13" data-x="-4.6274999999999995" data-y="-5" x="201.78907721280603" y="412.84369114877586" width="30.97928436911485" height="14.312617702448222" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_14" data-x="5.7524999999999995" data-y="-2" x="399.52919020715626" y="356.34651600753295" width="26.459510357815475" height="14.312617702448222" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_15" data-x="4.7524999999999995" data-y="0" x="380.69679849340866" y="318.6817325800377" width="26.459510357815418" height="14.312617702448165" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_16" data-x="4.0525" data-y="2" x="367.5141242937853" y="281.01694915254234" width="26.459510357815475" height="14.312617702448222" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_17" data-x="4.7325" data-y="3.7" x="382.5800376647834" y="249.00188323917135" width="21.939736346515986" height="14.312617702448222" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_18" data-x="5.5" data-y="5" x="396.7043314500942" y="225.27306967984936" width="22.598870056497162" height="12.806026365348373" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_19" data-x="-5" data-y="6.2" x="188.60640301318261" y="203.42749529190206" width="43.31450094161963" height="11.299435028248581" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_20" data-x="1" data-y="6.5" x="317.60828625235405" y="197.02448210922785" width="11.299435028248581" height="12.806026365348401" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_21" data-x="-3.6875" data-y="7.8" x="220.62146892655363" y="171.78907721280603" width="28.71939736346519" height="14.312617702448222" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_22" data-x="0.37250000000000005" data-y="7.8" x="295.9510357815443" y="171.78907721280603" width="30.97928436911485" height="14.312617702448222" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_23" data-x="10.5" data-y="-1" x="472.97551789077215" y="337.13747645951037" width="58.38041431261763" height="15.065913370998146" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_24" data-x="14" data-y="7.5" x="559.2278719397364" y="177.8256996233522" width="17.70244821092274" height="13.538807909604486" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_25" data-x="11.5" data-y="7.5" x="510.82862523540496" y="178.19209039548025" width="20.33898305084739" height="12.806026365348401" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_26" data-x="8.5" data-y="6.5" x="455.6497175141243" y="196.6580913370998" width="17.702448210922796" height="13.538807909604515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_27" data-x="11" data-y="6.5" x="501.4124293785311" y="197.02448210922785" width="20.338983050847446" height="12.806026365348401" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_28" data-x="11.1925" data-y="4.2" x="503.10734463276845" y="239.58568738229758" width="24.199623352165702" height="14.312617702448193" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_29" data-x="9.5" data-y="9.5" x="469.44444444444446" y="137.5141242937853" width="27.77777777777777" height="18.832391713747654" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_30" data-x="9" data-y="-6" x="451.5536723163842" y="414.3502824858757" width="44.72693032015064" height="48.96421845574389" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_31" data-x="8.5" data-y="-3.5" x="458.85122410546137" y="385.34839924670433" width="11.299435028248581" height="12.80602636534843" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_32" data-x="12" data-y="-3.5" x="524.7645951035781" y="385.34839924670433" width="11.299435028248581" height="12.80602636534843" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_33" data-x="14" data-y="-6" x="549.24670433145" y="433.18267419962336" width="37.66478342749531" height="11.299435028248581" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_34" data-x="11.8125" data-y="-9" x="512.5235404896421" y="488.17325800376653" width="28.71939736346519" height="14.312617702448165" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_35" data-x="14.8725" data-y="-9" x="569.0207156308852" y="488.17325800376653" width="30.979284369114794" height="14.312617702448165" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="J_DISPLAY" data-x="-12.940000000000001" data-y="4.615" x="49.43502824858747" y="236.57250470809794" width="22.598870056497248" height="4.708097928436928" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="J_HOST" data-x="-9.620000000000001" data-y="4.615" x="115.34839924670426" y="236.57250470809794" width="15.819209039548099" height="4.708097928436928" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="STM32F723VET6" data-x="-0.5700000000000001" data-y="-5.229999999999999" x="279.0018832391714" y="422.63653483992465" width="29.37853107344631" height="3.3898305084745743" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="U_MCU" data-x="-1.0500000000000003" data-y="5.214999999999998" x="277.8719397363465" y="225.2730696798494" width="13.559322033898297" height="4.708097928436899" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="SN74LVC244APWR" data-x="-11.26" data-y="-3.2299999999999995" x="76.55367231638417" y="384.9717514124294" width="31.638418079096027" height="3.3898305084745743" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="U_BUF" data-x="-11.8" data-y="-0.7850000000000001" x="75.4237288135593" y="338.2674199623352" width="13.559322033898269" height="4.708097928436928" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="ABM8W_12_0000MHZ_8_B1U_T3" data-x="-4.25" data-y="5.7700000000000005" x="196.13935969868174" y="215.48022598870057" width="56.497175141242934" height="3.3898305084745743" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="Y1" data-x="-5.63" data-y="6.615" x="195.00941619585686" y="198.90772128060263" width="6.779661016949149" height="4.708097928436928" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="USBLC6_2SC6" data-x="10.01" data-y="-1.5299999999999998" x="480.50847457627117" y="352.9566854990584" width="24.85875706214688" height="3.3898305084745743" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="U_ESD" data-x="9.649999999999999" data-y="-0.485" x="479.3785310734463" y="332.61770244821093" width="13.559322033898297" height="4.708097928436928" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="J_SWD" data-x="9.462499999999999" data-y="10.115" x="475.8474576271186" y="132.99435028248587" width="13.559322033898297" height="4.708097928436928" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="TYPE-C-31-M-12" data-x="9.0525" data-y="-7.43" x="459.08662900188324" y="464.0677966101695" width="31.638418079096027" height="3.3898305084745743" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="J_USB" data-x="8.5125" data-y="-4.585000000000001" x="457.9566854990584" y="409.8305084745763" width="13.559322033898297" height="4.708097928436928" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="AP2112K_3_3TRG1" data-x="14.3" data-y="-6.43" x="556.7796610169493" y="445.23540489642187" width="33.89830508474574" height="3.3898305084745743" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="U_LDO" data-x="13.7" data-y="-5.585000000000001" x="555.6497175141243" y="428.662900188324" width="13.559322033898297" height="4.708097928436871" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: .J_HOST &gt; .pin1 to .J_DISPLAY &gt; .pin1
3
+ <rect width="100%" height="100%" fill="white"/><g><polyline data-points="-10.38,4.3 -12.12,4.3" data-type="line" data-label="" points="108.94538606403009,244.8587570621469 76.1770244821092,244.8587570621469" fill="none" stroke="hsl(232, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,4.1 -12.12,4.1" data-type="line" data-label="" points="108.94538606403009,248.62523540489644 76.1770244821092,248.62523540489644" fill="none" stroke="hsl(232, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,3.9 -12.12,3.8999999999999995" data-type="line" data-label="" points="108.94538606403009,252.39171374764595 76.1770244821092,252.39171374764595" fill="none" stroke="hsl(232, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,3.7 -12.12,3.6999999999999997" data-type="line" data-label="" points="108.94538606403009,256.15819209039546 76.1770244821092,256.1581920903955" fill="none" stroke="hsl(232, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,3.5 -12.12,3.5" data-type="line" data-label="" points="108.94538606403009,259.924670433145 76.1770244821092,259.924670433145" fill="none" stroke="hsl(232, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,3.3 -12.12,3.3" data-type="line" data-label="" points="108.94538606403009,263.69114877589453 76.1770244821092,263.69114877589453" fill="none" stroke="hsl(232, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,3.1 -12.12,3.0999999999999996" data-type="line" data-label="" points="108.94538606403009,267.4576271186441 76.1770244821092,267.4576271186441" fill="none" stroke="hsl(232, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,2.9000000000000004 -12.12,2.9" data-type="line" data-label="" points="108.94538606403009,271.2241054613936 76.1770244821092,271.2241054613936" fill="none" stroke="hsl(232, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,2.7 -12.12,2.7" data-type="line" data-label="" points="108.94538606403009,274.9905838041431 76.1770244821092,274.9905838041431" fill="none" stroke="hsl(232, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,2.5 -12.12,2.5" data-type="line" data-label="" points="108.94538606403009,278.7570621468927 76.1770244821092,278.7570621468927" fill="none" stroke="hsl(0, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,2.3000000000000003 -12.12,2.3" data-type="line" data-label="" points="108.94538606403009,282.5235404896422 76.1770244821092,282.5235404896422" fill="none" stroke="hsl(0, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,2.1000000000000005 -12.12,2.1" data-type="line" data-label="" points="108.94538606403009,286.2900188323917 76.1770244821092,286.29001883239175" fill="none" stroke="hsl(0, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,1.9000000000000001 -12.12,1.9" data-type="line" data-label="" points="108.94538606403009,290.05649717514126 76.1770244821092,290.05649717514126" fill="none" stroke="hsl(0, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,1.7 -12.12,1.7" data-type="line" data-label="" points="108.94538606403009,293.82297551789077 76.1770244821092,293.82297551789077" fill="none" stroke="hsl(0, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-8.5,-1.6199999999999997 -10.5,-1.1" data-type="line" data-label="" points="144.35028248587568,356.34651600753295 106.6854990583804,346.5536723163842" fill="none" stroke="hsl(272, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,3.9 -12.5,-1.3" data-type="line" data-label="" points="108.94538606403009,252.39171374764595 69.02071563088509,350.32015065913373" fill="none" stroke="hsl(304, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,3.7 -12.5,-1.7000000000000002" data-type="line" data-label="" points="108.94538606403009,256.15819209039546 69.02071563088509,357.8531073446328" fill="none" stroke="hsl(304, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,3.5 -12.5,-2.1" data-type="line" data-label="" points="108.94538606403009,259.924670433145 69.02071563088509,365.3860640301318" fill="none" stroke="hsl(304, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,3.3 -12.5,-2.5" data-type="line" data-label="" points="108.94538606403009,263.69114877589453 69.02071563088509,372.9190207156309" fill="none" stroke="hsl(304, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,3.1 -10.5,-2.9" data-type="line" data-label="" points="108.94538606403009,267.4576271186441 106.6854990583804,380.45197740112997" fill="none" stroke="hsl(64, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,2.9000000000000004 -10.5,-2.5" data-type="line" data-label="" points="108.94538606403009,271.2241054613936 106.6854990583804,372.9190207156309" fill="none" stroke="hsl(64, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,2.7 -10.5,-2.0999999999999996" data-type="line" data-label="" points="108.94538606403009,274.9905838041431 106.6854990583804,365.3860640301318" fill="none" stroke="hsl(64, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-10.38,1.7 -10.5,-1.7" data-type="line" data-label="" points="108.94538606403009,293.82297551789077 106.6854990583804,357.8531073446328" fill="none" stroke="hsl(56, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.75,1.0999999999999974 -1.75,0.8999999999999977" data-type="line" data-label="" points="271.4689265536723,305.1224105461394 271.4689265536723,308.88888888888897" fill="none" stroke="hsl(152, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-4.64,-2 -1.75,0.8999999999999977" data-type="line" data-label="" points="217.04331450094162,363.5028248587571 271.4689265536723,308.88888888888897" fill="none" stroke="hsl(104, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5,-3.2199999999999998 -1.75,1.0999999999999974" data-type="line" data-label="" points="210.26365348399244,386.4783427495292 271.4689265536723,305.1224105461394" fill="none" stroke="hsl(232, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-5,-4.62 -1.75,1.0999999999999974" data-type="line" data-label="" points="210.26365348399244,412.8436911487759 271.4689265536723,305.1224105461394" fill="none" stroke="hsl(312, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.75,-4.5 5.5,-1.6199999999999997" data-type="line" data-label="" points="271.4689265536723,410.5838041431262 408.00376647834275,356.34651600753295" fill="none" stroke="hsl(184, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="1.75,-0.49999999999999734 4.5,0.38" data-type="line" data-label="" points="337.38229755178907,335.2542372881356 389.1713747645951,318.6817325800377" fill="none" stroke="hsl(184, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="1.75,-4.099999999999999 3.8,2.3800000000000003" data-type="line" data-label="" points="337.38229755178907,403.0508474576271 375.98870056497174,281.0169491525424" fill="none" stroke="hsl(184, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="4.6,4.08 1.75,-4.299999999999999" data-type="line" data-label="" points="391.0546139359699,249.00188323917138 337.38229755178907,406.81732580037664" fill="none" stroke="hsl(296, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="1.75,-4.499999999999998 4.9,5" data-type="line" data-label="" points="337.38229755178907,410.58380414312614 396.7043314500942,231.67608286252354" fill="none" stroke="hsl(256, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.75,2.699999999999999 -6.15,6.3" data-type="line" data-label="" points="271.4689265536723,274.99058380414317 188.60640301318264,207.19397363465163" fill="none" stroke="hsl(8, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.75,2.4999999999999987 0.7,6.5" data-type="line" data-label="" points="271.4689265536723,278.7570621468927 317.60828625235405,203.42749529190206" fill="none" stroke="hsl(104, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="1.3,6.5 -3.8499999999999996,6.1000000000000005" data-type="line" data-label="" points="328.90772128060263,203.42749529190206 231.92090395480227,210.96045197740114" fill="none" stroke="hsl(72, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-4,8.18 -6.15,6.3" data-type="line" data-label="" points="229.0960451977401,171.78907721280603 188.60640301318264,207.19397363465163" fill="none" stroke="hsl(208, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.8369701987210297e-17,8.18 -3.8499999999999996,6.1000000000000005" data-type="line" data-label="" points="304.4256120527307,171.78907721280603 231.92090395480227,210.96045197740114" fill="none" stroke="hsl(304, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="10.1875,-5.7 8.95,-0.8" data-type="line" data-label="" points="496.2806026365348,433.18267419962336 472.97551789077215,340.90395480225993" fill="none" stroke="hsl(320, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="10.1875,-5.9 8.95,-0.8" data-type="line" data-label="" points="496.2806026365348,436.94915254237293 472.97551789077215,340.90395480225993" fill="none" stroke="hsl(72, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="10.1875,-6.3 8.95,-1.2" data-type="line" data-label="" points="496.2806026365348,444.48210922787194 472.97551789077215,348.43691148775895" fill="none" stroke="hsl(320, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="10.1875,-6.1 8.95,-1.2" data-type="line" data-label="" points="496.2806026365348,440.71563088512244 472.97551789077215,348.43691148775895" fill="none" stroke="hsl(320, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="10.1875,-6.5 8.2,-3.5" data-type="line" data-label="" points="496.2806026365348,448.2485875706215 458.85122410546137,391.75141242937855" fill="none" stroke="hsl(320, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="10.1875,-6.7 11.7,-3.5" data-type="line" data-label="" points="496.2806026365348,452.015065913371 524.7645951035781,391.75141242937855" fill="none" stroke="hsl(72, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-12.12,4.1 -10.38,4.1" data-type="line" data-label="" points="76.1770244821092,248.62523540489644 108.94538606403009,248.62523540489644" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.12,4.1 -12.5,-1.1" data-type="line" data-label="" points="76.1770244821092,248.62523540489644 69.02071563088509,346.5536723163842" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.12,4.1 -12.5,-2.9" data-type="line" data-label="" points="76.1770244821092,248.62523540489644 69.02071563088509,380.45197740112997" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.12,4.1 -10.5,-1.3" data-type="line" data-label="" points="76.1770244821092,248.62523540489644 106.6854990583804,350.32015065913373" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.12,4.1 -8.5,-2.3800000000000003" data-type="line" data-label="" points="76.1770244821092,248.62523540489644 144.35028248587568,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-10.38,4.1 -12.5,-1.1" data-type="line" data-label="" points="108.94538606403009,248.62523540489644 69.02071563088509,346.5536723163842" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-10.38,4.1 -12.5,-2.9" data-type="line" data-label="" points="108.94538606403009,248.62523540489644 69.02071563088509,380.45197740112997" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-10.38,4.1 -10.5,-1.3" data-type="line" data-label="" points="108.94538606403009,248.62523540489644 106.6854990583804,350.32015065913373" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-10.38,4.1 -8.5,-2.3800000000000003" data-type="line" data-label="" points="108.94538606403009,248.62523540489644 144.35028248587568,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -1.75,1.2999999999999976" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 271.4689265536723,301.3559322033899" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -1.75,-0.1000000000000032" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 271.4689265536723,327.7212806026366" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -1.75,-4.699999999999999" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 271.4689265536723,414.3502824858757" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 1.75,-0.29999999999999716" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 337.38229755178907,331.487758945386" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 1.75,4.699999999999999" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 337.38229755178907,237.32580037664786" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -4.5,-6.88" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 219.67984934086627,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -2.7,-6.88" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 253.57815442561204,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -0.8999999999999999,-6.88" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 287.4764595103578,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 0.9000000000000004,-6.88" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 321.37476459510356,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 2.7,-6.88" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 355.27306967984936,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 4.5,-6.88" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -5,-3.9800000000000004" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -5,-5.38" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 5.5,-2.3800000000000003" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 4.5,-0.38" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 3.8,1.6199999999999997" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 4.6,3.3200000000000003" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 6.1,5" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -6.15,6.1000000000000005" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -3.8499999999999996,6.3" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 -4,7.42" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.0999999999999988 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="271.4689265536723,267.4576271186441 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 -1.75,-0.1000000000000032" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 271.4689265536723,327.7212806026366" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 -1.75,-4.699999999999999" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 271.4689265536723,414.3502824858757" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 1.75,-0.29999999999999716" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 337.38229755178907,331.487758945386" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 1.75,4.699999999999999" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 337.38229755178907,237.32580037664786" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 -4.5,-6.88" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 219.67984934086627,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 -2.7,-6.88" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 253.57815442561204,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 -0.8999999999999999,-6.88" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 287.4764595103578,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 0.9000000000000004,-6.88" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 321.37476459510356,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 2.7,-6.88" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 355.27306967984936,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 4.5,-6.88" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 -5,-3.9800000000000004" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 -5,-5.38" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 5.5,-2.3800000000000003" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 4.5,-0.38" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 3.8,1.6199999999999997" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 4.6,3.3200000000000003" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 6.1,5" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 -6.15,6.1000000000000005" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 -3.8499999999999996,6.3" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 -4,7.42" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,1.2999999999999976 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 -1.75,-4.699999999999999" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 271.4689265536723,414.3502824858757" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 1.75,-0.29999999999999716" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 337.38229755178907,331.487758945386" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 1.75,4.699999999999999" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 337.38229755178907,237.32580037664786" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 -4.5,-6.88" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 219.67984934086627,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 -2.7,-6.88" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 253.57815442561204,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 -0.8999999999999999,-6.88" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 287.4764595103578,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 0.9000000000000004,-6.88" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 321.37476459510356,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 2.7,-6.88" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 355.27306967984936,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 4.5,-6.88" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 -5,-3.9800000000000004" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 -5,-5.38" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 5.5,-2.3800000000000003" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 4.5,-0.38" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 3.8,1.6199999999999997" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 4.6,3.3200000000000003" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 6.1,5" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 -6.15,6.1000000000000005" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 -3.8499999999999996,6.3" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 -4,7.42" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.1000000000000032 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 1.75,-0.29999999999999716" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 337.38229755178907,331.487758945386" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 1.75,4.699999999999999" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 337.38229755178907,237.32580037664786" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 -4.5,-6.88" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 219.67984934086627,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 -2.7,-6.88" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 253.57815442561204,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 -0.8999999999999999,-6.88" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 287.4764595103578,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 0.9000000000000004,-6.88" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 321.37476459510356,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 2.7,-6.88" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 355.27306967984936,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 4.5,-6.88" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 -5,-3.9800000000000004" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 -5,-5.38" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 5.5,-2.3800000000000003" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 4.5,-0.38" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 3.8,1.6199999999999997" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 4.6,3.3200000000000003" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 6.1,5" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 -6.15,6.1000000000000005" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 -3.8499999999999996,6.3" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 -4,7.42" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.699999999999999 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 1.75,4.699999999999999" data-type="line" data-label="" points="337.38229755178907,331.487758945386 337.38229755178907,237.32580037664786" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 -4.5,-6.88" data-type="line" data-label="" points="337.38229755178907,331.487758945386 219.67984934086627,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 -2.7,-6.88" data-type="line" data-label="" points="337.38229755178907,331.487758945386 253.57815442561204,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 -0.8999999999999999,-6.88" data-type="line" data-label="" points="337.38229755178907,331.487758945386 287.4764595103578,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 0.9000000000000004,-6.88" data-type="line" data-label="" points="337.38229755178907,331.487758945386 321.37476459510356,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 2.7,-6.88" data-type="line" data-label="" points="337.38229755178907,331.487758945386 355.27306967984936,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 4.5,-6.88" data-type="line" data-label="" points="337.38229755178907,331.487758945386 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 -5,-3.9800000000000004" data-type="line" data-label="" points="337.38229755178907,331.487758945386 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 -5,-5.38" data-type="line" data-label="" points="337.38229755178907,331.487758945386 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 5.5,-2.3800000000000003" data-type="line" data-label="" points="337.38229755178907,331.487758945386 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 4.5,-0.38" data-type="line" data-label="" points="337.38229755178907,331.487758945386 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 3.8,1.6199999999999997" data-type="line" data-label="" points="337.38229755178907,331.487758945386 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 4.6,3.3200000000000003" data-type="line" data-label="" points="337.38229755178907,331.487758945386 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 6.1,5" data-type="line" data-label="" points="337.38229755178907,331.487758945386 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 -6.15,6.1000000000000005" data-type="line" data-label="" points="337.38229755178907,331.487758945386 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 -3.8499999999999996,6.3" data-type="line" data-label="" points="337.38229755178907,331.487758945386 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 -4,7.42" data-type="line" data-label="" points="337.38229755178907,331.487758945386 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.29999999999999716 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="337.38229755178907,331.487758945386 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 -4.5,-6.88" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 219.67984934086627,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 -2.7,-6.88" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 253.57815442561204,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 -0.8999999999999999,-6.88" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 287.4764595103578,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 0.9000000000000004,-6.88" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 321.37476459510356,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 2.7,-6.88" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 355.27306967984936,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 4.5,-6.88" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 -5,-3.9800000000000004" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 -5,-5.38" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 5.5,-2.3800000000000003" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 4.5,-0.38" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 3.8,1.6199999999999997" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 4.6,3.3200000000000003" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 6.1,5" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 -6.15,6.1000000000000005" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 -3.8499999999999996,6.3" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 -4,7.42" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.699999999999999 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.5,-1.1 -12.5,-2.9" data-type="line" data-label="" points="69.02071563088509,346.5536723163842 69.02071563088509,380.45197740112997" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.5,-1.1 -10.5,-1.3" data-type="line" data-label="" points="69.02071563088509,346.5536723163842 106.6854990583804,350.32015065913373" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.5,-1.1 -8.5,-2.3800000000000003" data-type="line" data-label="" points="69.02071563088509,346.5536723163842 144.35028248587568,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.5,-2.9 -10.5,-1.3" data-type="line" data-label="" points="69.02071563088509,380.45197740112997 106.6854990583804,350.32015065913373" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-12.5,-2.9 -8.5,-2.3800000000000003" data-type="line" data-label="" points="69.02071563088509,380.45197740112997 144.35028248587568,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-10.5,-1.3 -8.5,-2.3800000000000003" data-type="line" data-label="" points="106.6854990583804,350.32015065913373 144.35028248587568,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 -2.7,-6.88" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 253.57815442561204,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 -0.8999999999999999,-6.88" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 287.4764595103578,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 0.9000000000000004,-6.88" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 321.37476459510356,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 2.7,-6.88" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 355.27306967984936,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 4.5,-6.88" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 -5,-3.9800000000000004" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 -5,-5.38" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 5.5,-2.3800000000000003" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 4.5,-0.38" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 3.8,1.6199999999999997" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 4.6,3.3200000000000003" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 6.1,5" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 -6.15,6.1000000000000005" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 -3.8499999999999996,6.3" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 -4,7.42" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.88 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="219.67984934086627,455.4048964218456 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 -0.8999999999999999,-6.88" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 287.4764595103578,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 0.9000000000000004,-6.88" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 321.37476459510356,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 2.7,-6.88" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 355.27306967984936,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 4.5,-6.88" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 -5,-3.9800000000000004" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 -5,-5.38" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 5.5,-2.3800000000000003" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 4.5,-0.38" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 3.8,1.6199999999999997" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 4.6,3.3200000000000003" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 6.1,5" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 -6.15,6.1000000000000005" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 -3.8499999999999996,6.3" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 -4,7.42" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.88 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="253.57815442561204,455.4048964218456 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 0.9000000000000004,-6.88" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 321.37476459510356,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 2.7,-6.88" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 355.27306967984936,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 4.5,-6.88" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 -5,-3.9800000000000004" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 -5,-5.38" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 5.5,-2.3800000000000003" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 4.5,-0.38" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 3.8,1.6199999999999997" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 4.6,3.3200000000000003" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 6.1,5" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 -6.15,6.1000000000000005" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 -3.8499999999999996,6.3" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 -4,7.42" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.88 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="287.4764595103578,455.4048964218456 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 2.7,-6.88" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 355.27306967984936,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 4.5,-6.88" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 -5,-3.9800000000000004" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 -5,-5.38" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 5.5,-2.3800000000000003" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 4.5,-0.38" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 3.8,1.6199999999999997" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 4.6,3.3200000000000003" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 6.1,5" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 -6.15,6.1000000000000005" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 -3.8499999999999996,6.3" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 -4,7.42" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.88 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="321.37476459510356,455.4048964218456 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 4.5,-6.88" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 389.1713747645951,455.4048964218456" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 -5,-3.9800000000000004" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 -5,-5.38" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 5.5,-2.3800000000000003" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 4.5,-0.38" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 3.8,1.6199999999999997" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 4.6,3.3200000000000003" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 6.1,5" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 -6.15,6.1000000000000005" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 -3.8499999999999996,6.3" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 -4,7.42" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.88 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="355.27306967984936,455.4048964218456 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 -5,-3.9800000000000004" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 210.26365348399244,400.7909604519774" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 -5,-5.38" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 5.5,-2.3800000000000003" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 4.5,-0.38" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 3.8,1.6199999999999997" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 4.6,3.3200000000000003" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 6.1,5" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 -6.15,6.1000000000000005" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 -3.8499999999999996,6.3" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 -4,7.42" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.88 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="389.1713747645951,455.4048964218456 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-3.9800000000000004 -5,-5.38" data-type="line" data-label="" points="210.26365348399244,400.7909604519774 210.26365348399244,427.15630885122414" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-3.9800000000000004 5.5,-2.3800000000000003" data-type="line" data-label="" points="210.26365348399244,400.7909604519774 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-3.9800000000000004 4.5,-0.38" data-type="line" data-label="" points="210.26365348399244,400.7909604519774 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-3.9800000000000004 3.8,1.6199999999999997" data-type="line" data-label="" points="210.26365348399244,400.7909604519774 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-3.9800000000000004 4.6,3.3200000000000003" data-type="line" data-label="" points="210.26365348399244,400.7909604519774 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-3.9800000000000004 6.1,5" data-type="line" data-label="" points="210.26365348399244,400.7909604519774 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-3.9800000000000004 -6.15,6.1000000000000005" data-type="line" data-label="" points="210.26365348399244,400.7909604519774 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-3.9800000000000004 -3.8499999999999996,6.3" data-type="line" data-label="" points="210.26365348399244,400.7909604519774 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-3.9800000000000004 -4,7.42" data-type="line" data-label="" points="210.26365348399244,400.7909604519774 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-3.9800000000000004 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="210.26365348399244,400.7909604519774 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-5.38 5.5,-2.3800000000000003" data-type="line" data-label="" points="210.26365348399244,427.15630885122414 408.00376647834275,370.6591337099812" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-5.38 4.5,-0.38" data-type="line" data-label="" points="210.26365348399244,427.15630885122414 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-5.38 3.8,1.6199999999999997" data-type="line" data-label="" points="210.26365348399244,427.15630885122414 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-5.38 4.6,3.3200000000000003" data-type="line" data-label="" points="210.26365348399244,427.15630885122414 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-5.38 6.1,5" data-type="line" data-label="" points="210.26365348399244,427.15630885122414 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-5.38 -6.15,6.1000000000000005" data-type="line" data-label="" points="210.26365348399244,427.15630885122414 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-5.38 -3.8499999999999996,6.3" data-type="line" data-label="" points="210.26365348399244,427.15630885122414 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-5.38 -4,7.42" data-type="line" data-label="" points="210.26365348399244,427.15630885122414 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5,-5.38 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="210.26365348399244,427.15630885122414 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="5.5,-2.3800000000000003 4.5,-0.38" data-type="line" data-label="" points="408.00376647834275,370.6591337099812 389.1713747645951,332.99435028248587" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="5.5,-2.3800000000000003 3.8,1.6199999999999997" data-type="line" data-label="" points="408.00376647834275,370.6591337099812 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="5.5,-2.3800000000000003 4.6,3.3200000000000003" data-type="line" data-label="" points="408.00376647834275,370.6591337099812 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="5.5,-2.3800000000000003 6.1,5" data-type="line" data-label="" points="408.00376647834275,370.6591337099812 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="5.5,-2.3800000000000003 -6.15,6.1000000000000005" data-type="line" data-label="" points="408.00376647834275,370.6591337099812 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="5.5,-2.3800000000000003 -3.8499999999999996,6.3" data-type="line" data-label="" points="408.00376647834275,370.6591337099812 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="5.5,-2.3800000000000003 -4,7.42" data-type="line" data-label="" points="408.00376647834275,370.6591337099812 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="5.5,-2.3800000000000003 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="408.00376647834275,370.6591337099812 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-0.38 3.8,1.6199999999999997" data-type="line" data-label="" points="389.1713747645951,332.99435028248587 375.98870056497174,295.3295668549906" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-0.38 4.6,3.3200000000000003" data-type="line" data-label="" points="389.1713747645951,332.99435028248587 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-0.38 6.1,5" data-type="line" data-label="" points="389.1713747645951,332.99435028248587 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-0.38 -6.15,6.1000000000000005" data-type="line" data-label="" points="389.1713747645951,332.99435028248587 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-0.38 -3.8499999999999996,6.3" data-type="line" data-label="" points="389.1713747645951,332.99435028248587 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-0.38 -4,7.42" data-type="line" data-label="" points="389.1713747645951,332.99435028248587 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-0.38 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="389.1713747645951,332.99435028248587 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.8,1.6199999999999997 4.6,3.3200000000000003" data-type="line" data-label="" points="375.98870056497174,295.3295668549906 391.0546139359699,263.3145009416196" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.8,1.6199999999999997 6.1,5" data-type="line" data-label="" points="375.98870056497174,295.3295668549906 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.8,1.6199999999999997 -6.15,6.1000000000000005" data-type="line" data-label="" points="375.98870056497174,295.3295668549906 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.8,1.6199999999999997 -3.8499999999999996,6.3" data-type="line" data-label="" points="375.98870056497174,295.3295668549906 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.8,1.6199999999999997 -4,7.42" data-type="line" data-label="" points="375.98870056497174,295.3295668549906 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="3.8,1.6199999999999997 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="375.98870056497174,295.3295668549906 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.6,3.3200000000000003 6.1,5" data-type="line" data-label="" points="391.0546139359699,263.3145009416196 419.30320150659134,231.67608286252354" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.6,3.3200000000000003 -6.15,6.1000000000000005" data-type="line" data-label="" points="391.0546139359699,263.3145009416196 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.6,3.3200000000000003 -3.8499999999999996,6.3" data-type="line" data-label="" points="391.0546139359699,263.3145009416196 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.6,3.3200000000000003 -4,7.42" data-type="line" data-label="" points="391.0546139359699,263.3145009416196 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.6,3.3200000000000003 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="391.0546139359699,263.3145009416196 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.1,5 -6.15,6.1000000000000005" data-type="line" data-label="" points="419.30320150659134,231.67608286252354 188.60640301318264,210.96045197740114" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.1,5 -3.8499999999999996,6.3" data-type="line" data-label="" points="419.30320150659134,231.67608286252354 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.1,5 -4,7.42" data-type="line" data-label="" points="419.30320150659134,231.67608286252354 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="6.1,5 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="419.30320150659134,231.67608286252354 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-6.15,6.1000000000000005 -3.8499999999999996,6.3" data-type="line" data-label="" points="188.60640301318264,210.96045197740114 231.92090395480227,207.19397363465163" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-6.15,6.1000000000000005 -4,7.42" data-type="line" data-label="" points="188.60640301318264,210.96045197740114 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-6.15,6.1000000000000005 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="188.60640301318264,210.96045197740114 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.8499999999999996,6.3 -4,7.42" data-type="line" data-label="" points="231.92090395480227,207.19397363465163 229.0960451977401,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.8499999999999996,6.3 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="231.92090395480227,207.19397363465163 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4,7.42 1.8369701987210297e-17,7.42" data-type="line" data-label="" points="229.0960451977401,186.10169491525426 304.4256120527307,186.10169491525426" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.95,-1 10.1875,-4.9" data-type="line" data-label="" points="472.97551789077215,344.67043314500944 496.2806026365348,418.1167608286253" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.95,-1 10.1875,-5.1" data-type="line" data-label="" points="472.97551789077215,344.67043314500944 496.2806026365348,421.8832391713748" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.95,-1 8.8,-3.5" data-type="line" data-label="" points="472.97551789077215,344.67043314500944 470.15065913370995,391.75141242937855" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.95,-1 12.3,-3.5" data-type="line" data-label="" points="472.97551789077215,344.67043314500944 536.0640301318267,391.75141242937855" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.95,-1 13,-6" data-type="line" data-label="" points="472.97551789077215,344.67043314500944 549.2467043314501,438.83239171374765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.95,-1 11.5,-9.379999999999999" data-type="line" data-label="" points="472.97551789077215,344.67043314500944 520.9981167608287,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.95,-1 14.5,-9.379999999999999" data-type="line" data-label="" points="472.97551789077215,344.67043314500944 577.4952919020716,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.04,7.5 8.97,6.45" data-type="line" data-label="" points="531.1676082862523,184.59510357815444 473.3521657250471,204.36911487758945" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.04,7.5 11,3.8200000000000003" data-type="line" data-label="" points="531.1676082862523,184.59510357815444 511.5819209039548,253.89830508474577" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.04,7.5 10.2375,9.4" data-type="line" data-label="" points="531.1676082862523,184.59510357815444 497.22222222222223,148.8135593220339" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.97,6.45 11,3.8200000000000003" data-type="line" data-label="" points="473.3521657250471,204.36911487758945 511.5819209039548,253.89830508474577" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.97,6.45 10.2375,9.4" data-type="line" data-label="" points="473.3521657250471,204.36911487758945 497.22222222222223,148.8135593220339" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="11,3.8200000000000003 10.2375,9.4" data-type="line" data-label="" points="511.5819209039548,253.89830508474577 497.22222222222223,148.8135593220339" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-4.9 10.1875,-5.1" data-type="line" data-label="" points="496.2806026365348,418.1167608286253 496.2806026365348,421.8832391713748" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-4.9 8.8,-3.5" data-type="line" data-label="" points="496.2806026365348,418.1167608286253 470.15065913370995,391.75141242937855" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-4.9 12.3,-3.5" data-type="line" data-label="" points="496.2806026365348,418.1167608286253 536.0640301318267,391.75141242937855" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-4.9 13,-6" data-type="line" data-label="" points="496.2806026365348,418.1167608286253 549.2467043314501,438.83239171374765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-4.9 11.5,-9.379999999999999" data-type="line" data-label="" points="496.2806026365348,418.1167608286253 520.9981167608287,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-4.9 14.5,-9.379999999999999" data-type="line" data-label="" points="496.2806026365348,418.1167608286253 577.4952919020716,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.1 8.8,-3.5" data-type="line" data-label="" points="496.2806026365348,421.8832391713748 470.15065913370995,391.75141242937855" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.1 12.3,-3.5" data-type="line" data-label="" points="496.2806026365348,421.8832391713748 536.0640301318267,391.75141242937855" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.1 13,-6" data-type="line" data-label="" points="496.2806026365348,421.8832391713748 549.2467043314501,438.83239171374765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.1 11.5,-9.379999999999999" data-type="line" data-label="" points="496.2806026365348,421.8832391713748 520.9981167608287,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.1 14.5,-9.379999999999999" data-type="line" data-label="" points="496.2806026365348,421.8832391713748 577.4952919020716,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.8,-3.5 12.3,-3.5" data-type="line" data-label="" points="470.15065913370995,391.75141242937855 536.0640301318267,391.75141242937855" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.8,-3.5 13,-6" data-type="line" data-label="" points="470.15065913370995,391.75141242937855 549.2467043314501,438.83239171374765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.8,-3.5 11.5,-9.379999999999999" data-type="line" data-label="" points="470.15065913370995,391.75141242937855 520.9981167608287,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="8.8,-3.5 14.5,-9.379999999999999" data-type="line" data-label="" points="470.15065913370995,391.75141242937855 577.4952919020716,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.3,-3.5 13,-6" data-type="line" data-label="" points="536.0640301318267,391.75141242937855 549.2467043314501,438.83239171374765" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.3,-3.5 11.5,-9.379999999999999" data-type="line" data-label="" points="536.0640301318267,391.75141242937855 520.9981167608287,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.3,-3.5 14.5,-9.379999999999999" data-type="line" data-label="" points="536.0640301318267,391.75141242937855 577.4952919020716,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="13,-6 11.5,-9.379999999999999" data-type="line" data-label="" points="549.2467043314501,438.83239171374765 520.9981167608287,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="13,-6 14.5,-9.379999999999999" data-type="line" data-label="" points="549.2467043314501,438.83239171374765 577.4952919020716,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="11.5,-9.379999999999999 14.5,-9.379999999999999" data-type="line" data-label="" points="520.9981167608287,502.4858757062147 577.4952919020716,502.4858757062147" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 -1.75,2.8999999999999986" data-type="line" data-label="" points="271.4689265536723,252.391713747646 271.4689265536723,271.2241054613936" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 -1.75,-0.3000000000000034" data-type="line" data-label="" points="271.4689265536723,252.391713747646 271.4689265536723,331.48775894538613" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 -1.75,-4.899999999999999" data-type="line" data-label="" points="271.4689265536723,252.391713747646 271.4689265536723,418.1167608286252" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 1.75,-4.299999999999999" data-type="line" data-label="" points="271.4689265536723,252.391713747646 337.38229755178907,406.81732580037664" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 1.75,-0.09999999999999698" data-type="line" data-label="" points="271.4689265536723,252.391713747646 337.38229755178907,327.7212806026365" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 1.75,4.899999999999999" data-type="line" data-label="" points="271.4689265536723,252.391713747646 337.38229755178907,233.55932203389835" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 -4.5,-6.12" data-type="line" data-label="" points="271.4689265536723,252.391713747646 219.67984934086627,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 -2.7,-6.12" data-type="line" data-label="" points="271.4689265536723,252.391713747646 253.57815442561204,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 -0.8999999999999999,-6.12" data-type="line" data-label="" points="271.4689265536723,252.391713747646 287.4764595103578,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 0.9000000000000004,-6.12" data-type="line" data-label="" points="271.4689265536723,252.391713747646 321.37476459510356,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 2.7,-6.12" data-type="line" data-label="" points="271.4689265536723,252.391713747646 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 4.5,-6.12" data-type="line" data-label="" points="271.4689265536723,252.391713747646 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 -5.36,-2" data-type="line" data-label="" points="271.4689265536723,252.391713747646 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,3.8999999999999986 4.6,4.08" data-type="line" data-label="" points="271.4689265536723,252.391713747646 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 -1.75,-0.3000000000000034" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 271.4689265536723,331.48775894538613" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 -1.75,-4.899999999999999" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 271.4689265536723,418.1167608286252" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 1.75,-4.299999999999999" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 337.38229755178907,406.81732580037664" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 1.75,-0.09999999999999698" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 337.38229755178907,327.7212806026365" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 1.75,4.899999999999999" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 337.38229755178907,233.55932203389835" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 -4.5,-6.12" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 219.67984934086627,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 -2.7,-6.12" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 253.57815442561204,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 -0.8999999999999999,-6.12" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 287.4764595103578,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 0.9000000000000004,-6.12" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 321.37476459510356,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 2.7,-6.12" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 4.5,-6.12" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 -5.36,-2" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,2.8999999999999986 4.6,4.08" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 -1.75,-4.899999999999999" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 271.4689265536723,418.1167608286252" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 1.75,-4.299999999999999" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 337.38229755178907,406.81732580037664" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 1.75,-0.09999999999999698" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 337.38229755178907,327.7212806026365" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 1.75,4.899999999999999" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 337.38229755178907,233.55932203389835" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 -4.5,-6.12" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 219.67984934086627,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 -2.7,-6.12" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 253.57815442561204,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 -0.8999999999999999,-6.12" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 287.4764595103578,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 0.9000000000000004,-6.12" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 321.37476459510356,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 2.7,-6.12" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 4.5,-6.12" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 -5.36,-2" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-0.3000000000000034 4.6,4.08" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 1.75,-4.299999999999999" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 337.38229755178907,406.81732580037664" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 1.75,-0.09999999999999698" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 337.38229755178907,327.7212806026365" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 1.75,4.899999999999999" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 337.38229755178907,233.55932203389835" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 -4.5,-6.12" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 219.67984934086627,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 -2.7,-6.12" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 253.57815442561204,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 -0.8999999999999999,-6.12" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 287.4764595103578,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 0.9000000000000004,-6.12" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 321.37476459510356,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 2.7,-6.12" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 4.5,-6.12" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 -5.36,-2" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.75,-4.899999999999999 4.6,4.08" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-4.299999999999999 1.75,-0.09999999999999698" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 337.38229755178907,327.7212806026365" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-4.299999999999999 1.75,4.899999999999999" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 337.38229755178907,233.55932203389835" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-4.299999999999999 -4.5,-6.12" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 219.67984934086627,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-4.299999999999999 -2.7,-6.12" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 253.57815442561204,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-4.299999999999999 -0.8999999999999999,-6.12" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 287.4764595103578,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-4.299999999999999 0.9000000000000004,-6.12" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 321.37476459510356,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-4.299999999999999 2.7,-6.12" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-4.299999999999999 4.5,-6.12" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-4.299999999999999 -5.36,-2" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-4.299999999999999 4.6,4.08" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.09999999999999698 1.75,4.899999999999999" data-type="line" data-label="" points="337.38229755178907,327.7212806026365 337.38229755178907,233.55932203389835" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.09999999999999698 -4.5,-6.12" data-type="line" data-label="" points="337.38229755178907,327.7212806026365 219.67984934086627,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.09999999999999698 -2.7,-6.12" data-type="line" data-label="" points="337.38229755178907,327.7212806026365 253.57815442561204,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.09999999999999698 -0.8999999999999999,-6.12" data-type="line" data-label="" points="337.38229755178907,327.7212806026365 287.4764595103578,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.09999999999999698 0.9000000000000004,-6.12" data-type="line" data-label="" points="337.38229755178907,327.7212806026365 321.37476459510356,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.09999999999999698 2.7,-6.12" data-type="line" data-label="" points="337.38229755178907,327.7212806026365 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.09999999999999698 4.5,-6.12" data-type="line" data-label="" points="337.38229755178907,327.7212806026365 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.09999999999999698 -5.36,-2" data-type="line" data-label="" points="337.38229755178907,327.7212806026365 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,-0.09999999999999698 4.6,4.08" data-type="line" data-label="" points="337.38229755178907,327.7212806026365 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.899999999999999 -4.5,-6.12" data-type="line" data-label="" points="337.38229755178907,233.55932203389835 219.67984934086627,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.899999999999999 -2.7,-6.12" data-type="line" data-label="" points="337.38229755178907,233.55932203389835 253.57815442561204,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.899999999999999 -0.8999999999999999,-6.12" data-type="line" data-label="" points="337.38229755178907,233.55932203389835 287.4764595103578,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.899999999999999 0.9000000000000004,-6.12" data-type="line" data-label="" points="337.38229755178907,233.55932203389835 321.37476459510356,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.899999999999999 2.7,-6.12" data-type="line" data-label="" points="337.38229755178907,233.55932203389835 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.899999999999999 4.5,-6.12" data-type="line" data-label="" points="337.38229755178907,233.55932203389835 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.899999999999999 -5.36,-2" data-type="line" data-label="" points="337.38229755178907,233.55932203389835 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.75,4.899999999999999 4.6,4.08" data-type="line" data-label="" points="337.38229755178907,233.55932203389835 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-10.5,-1.1 -8.5,-1.6199999999999997" data-type="line" data-label="" points="106.6854990583804,346.5536723163842 144.35028248587568,356.34651600753295" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.12 -2.7,-6.12" data-type="line" data-label="" points="219.67984934086627,441.09227871939737 253.57815442561204,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.12 -0.8999999999999999,-6.12" data-type="line" data-label="" points="219.67984934086627,441.09227871939737 287.4764595103578,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.12 0.9000000000000004,-6.12" data-type="line" data-label="" points="219.67984934086627,441.09227871939737 321.37476459510356,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.12 2.7,-6.12" data-type="line" data-label="" points="219.67984934086627,441.09227871939737 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.12 4.5,-6.12" data-type="line" data-label="" points="219.67984934086627,441.09227871939737 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.12 -5.36,-2" data-type="line" data-label="" points="219.67984934086627,441.09227871939737 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.5,-6.12 4.6,4.08" data-type="line" data-label="" points="219.67984934086627,441.09227871939737 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.12 -0.8999999999999999,-6.12" data-type="line" data-label="" points="253.57815442561204,441.09227871939737 287.4764595103578,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.12 0.9000000000000004,-6.12" data-type="line" data-label="" points="253.57815442561204,441.09227871939737 321.37476459510356,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.12 2.7,-6.12" data-type="line" data-label="" points="253.57815442561204,441.09227871939737 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.12 4.5,-6.12" data-type="line" data-label="" points="253.57815442561204,441.09227871939737 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.12 -5.36,-2" data-type="line" data-label="" points="253.57815442561204,441.09227871939737 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.7,-6.12 4.6,4.08" data-type="line" data-label="" points="253.57815442561204,441.09227871939737 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.12 0.9000000000000004,-6.12" data-type="line" data-label="" points="287.4764595103578,441.09227871939737 321.37476459510356,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.12 2.7,-6.12" data-type="line" data-label="" points="287.4764595103578,441.09227871939737 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.12 4.5,-6.12" data-type="line" data-label="" points="287.4764595103578,441.09227871939737 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.12 -5.36,-2" data-type="line" data-label="" points="287.4764595103578,441.09227871939737 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.8999999999999999,-6.12 4.6,4.08" data-type="line" data-label="" points="287.4764595103578,441.09227871939737 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.12 2.7,-6.12" data-type="line" data-label="" points="321.37476459510356,441.09227871939737 355.27306967984936,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.12 4.5,-6.12" data-type="line" data-label="" points="321.37476459510356,441.09227871939737 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.12 -5.36,-2" data-type="line" data-label="" points="321.37476459510356,441.09227871939737 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.9000000000000004,-6.12 4.6,4.08" data-type="line" data-label="" points="321.37476459510356,441.09227871939737 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.12 4.5,-6.12" data-type="line" data-label="" points="355.27306967984936,441.09227871939737 389.1713747645951,441.09227871939737" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.12 -5.36,-2" data-type="line" data-label="" points="355.27306967984936,441.09227871939737 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.7,-6.12 4.6,4.08" data-type="line" data-label="" points="355.27306967984936,441.09227871939737 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.12 -5.36,-2" data-type="line" data-label="" points="389.1713747645951,441.09227871939737 203.4839924670433,363.5028248587571" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="4.5,-6.12 4.6,4.08" data-type="line" data-label="" points="389.1713747645951,441.09227871939737 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-5.36,-2 4.6,4.08" data-type="line" data-label="" points="203.4839924670433,363.5028248587571 391.0546139359699,249.00188323917138" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="14.47,7.45 10.46,6.5" data-type="line" data-label="" points="576.9303201506591,185.5367231638418 501.4124293785311,203.42749529190206" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="14.47,7.45 10.2375,9.8" data-type="line" data-label="" points="576.9303201506591,185.5367231638418 497.22222222222223,141.28060263653484" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.46,6.5 10.2375,9.8" data-type="line" data-label="" points="501.4124293785311,203.42749529190206 497.22222222222223,141.28060263653484" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="15,-5.9 14.5,-8.620000000000001" data-type="line" data-label="" points="586.9114877589454,436.94915254237293 577.4952919020716,488.17325800376653" fill="none" stroke="hsl(154, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.05,-1 10.1875,-5.3" data-type="line" data-label="" points="531.3559322033898,344.67043314500944 496.2806026365348,425.6497175141243" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.05,-1 10.1875,-5.5" data-type="line" data-label="" points="531.3559322033898,344.67043314500944 496.2806026365348,429.41619585687386" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.05,-1 13,-5.8" data-type="line" data-label="" points="531.3559322033898,344.67043314500944 549.2467043314501,435.06591337099815" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.05,-1 13,-6.2" data-type="line" data-label="" points="531.3559322033898,344.67043314500944 549.2467043314501,442.5988700564972" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="12.05,-1 11.5,-8.620000000000001" data-type="line" data-label="" points="531.3559322033898,344.67043314500944 520.9981167608287,488.17325800376653" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.3 10.1875,-5.5" data-type="line" data-label="" points="496.2806026365348,425.6497175141243 496.2806026365348,429.41619585687386" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.3 13,-5.8" data-type="line" data-label="" points="496.2806026365348,425.6497175141243 549.2467043314501,435.06591337099815" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.3 13,-6.2" data-type="line" data-label="" points="496.2806026365348,425.6497175141243 549.2467043314501,442.5988700564972" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.3 11.5,-8.620000000000001" data-type="line" data-label="" points="496.2806026365348,425.6497175141243 520.9981167608287,488.17325800376653" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.5 13,-5.8" data-type="line" data-label="" points="496.2806026365348,429.41619585687386 549.2467043314501,435.06591337099815" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.5 13,-6.2" data-type="line" data-label="" points="496.2806026365348,429.41619585687386 549.2467043314501,442.5988700564972" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="10.1875,-5.5 11.5,-8.620000000000001" data-type="line" data-label="" points="496.2806026365348,429.41619585687386 520.9981167608287,488.17325800376653" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="13,-5.8 13,-6.2" data-type="line" data-label="" points="549.2467043314501,435.06591337099815 549.2467043314501,442.5988700564972" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="13,-5.8 11.5,-8.620000000000001" data-type="line" data-label="" points="549.2467043314501,435.06591337099815 520.9981167608287,488.17325800376653" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="13,-6.2 11.5,-8.620000000000001" data-type="line" data-label="" points="549.2467043314501,442.5988700564972 520.9981167608287,488.17325800376653" fill="none" stroke="hsl(170, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-10.38,4.3 -12.12,4.3" data-type="line" data-label="" points="108.94538606403009,244.8587570621469 76.1770244821092,244.8587570621469" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-10.38,4.1 -12.12,4.1" data-type="line" data-label="" points="108.94538606403009,248.62523540489644 76.1770244821092,248.62523540489644" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="10.1875,-5.1 10.3875,-5.1 10.3875,-4.9 10.1875,-4.9" data-type="line" data-label="" points="496.2806026365348,421.8832391713748 500.0470809792844,421.8832391713748 500.0470809792844,418.1167608286253 496.2806026365348,418.1167608286253" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.75,-0.1000000000000032 -2.05,-0.1000000000000032 -2.05,1.2999999999999976" data-type="line" data-label="" points="271.4689265536723,327.7212806026366 265.819209039548,327.7212806026366 265.819209039548,301.3559322033899" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.12,3.8999999999999995 -10.38,3.9" data-type="line" data-label="" points="76.1770244821092,252.39171374764595 108.94538606403009,252.39171374764595" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.12,3.6999999999999997 -10.38,3.7" data-type="line" data-label="" points="76.1770244821092,256.1581920903955 108.94538606403009,256.15819209039546" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.12,3.5 -10.38,3.5" data-type="line" data-label="" points="76.1770244821092,259.924670433145 108.94538606403009,259.924670433145" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.12,3.3 -10.38,3.3" data-type="line" data-label="" points="76.1770244821092,263.69114877589453 108.94538606403009,263.69114877589453" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.12,3.0999999999999996 -10.38,3.1" data-type="line" data-label="" points="76.1770244821092,267.4576271186441 108.94538606403009,267.4576271186441" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.12,2.9 -10.38,2.9000000000000004" data-type="line" data-label="" points="76.1770244821092,271.2241054613936 108.94538606403009,271.2241054613936" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.12,2.7 -10.38,2.7" data-type="line" data-label="" points="76.1770244821092,274.9905838041431 108.94538606403009,274.9905838041431" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-10.38,2.5 -12.12,2.5" data-type="line" data-label="" points="108.94538606403009,278.7570621468927 76.1770244821092,278.7570621468927" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-10.38,2.3000000000000003 -12.12,2.3" data-type="line" data-label="" points="108.94538606403009,282.5235404896422 76.1770244821092,282.5235404896422" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-10.38,2.1000000000000005 -12.12,2.1" data-type="line" data-label="" points="108.94538606403009,286.2900188323917 76.1770244821092,286.29001883239175" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-10.38,1.9000000000000001 -12.12,1.9" data-type="line" data-label="" points="108.94538606403009,290.05649717514126 76.1770244821092,290.05649717514126" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-10.38,1.7 -12.12,1.7" data-type="line" data-label="" points="108.94538606403009,293.82297551789077 76.1770244821092,293.82297551789077" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-2.7,-6.12 -2.7,-5.92 -4.5,-5.92 -4.5,-6.12" data-type="line" data-label="" points="253.57815442561204,441.09227871939737 253.57815442561204,437.32580037664786 219.67984934086627,437.32580037664786 219.67984934086627,441.09227871939737" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-0.9000000000000004,-6.12 -0.9000000000000004,-5.92 -2.7,-5.92" data-type="line" data-label="" points="287.4764595103578,441.09227871939737 287.4764595103578,437.32580037664786 253.57815442561204,437.32580037664786" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="0.8999999999999999,-6.12 0.8999999999999999,-5.92 -0.9000000000000004,-5.92" data-type="line" data-label="" points="321.37476459510356,441.09227871939737 321.37476459510356,437.32580037664786 287.4764595103578,437.32580037664786" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="2.7,-6.12 2.7,-5.92 0.8999999999999999,-5.92" data-type="line" data-label="" points="355.27306967984936,441.09227871939737 355.27306967984936,437.32580037664786 321.37476459510356,437.32580037664786" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.5,-6.12 4.5,-5.92 2.7,-5.92" data-type="line" data-label="" points="389.1713747645951,441.09227871939737 389.1713747645951,437.32580037664786 355.27306967984936,437.32580037664786" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.75,-4.899999999999999 -1.95,-4.899999999999999 -1.95,-5.92 -0.8999999999999999,-5.92 -0.8999999999999999,-6.12" data-type="line" data-label="" points="271.4689265536723,418.1167608286252 267.7024482109228,418.1167608286252 267.7024482109228,437.32580037664786 287.4764595103578,437.32580037664786 287.4764595103578,441.09227871939737" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.75,2.8999999999999986 -1.8499999999999999,2.8999999999999986 -1.8499999999999999,3.8999999999999986 -1.75,3.8999999999999986" data-type="line" data-label="" points="271.4689265536723,271.2241054613936 269.5856873822975,271.2241054613936 269.5856873822975,252.391713747646 271.4689265536723,252.391713747646" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5,-3.2199999999999998 -5,-3.0199999999999996 -4.4399999999999995,-3.0199999999999996 -4.4399999999999995,-2 -4.64,-2" data-type="line" data-label="" points="210.26365348399244,386.4783427495292 210.26365348399244,382.7118644067797 220.80979284369113,382.7118644067797 220.80979284369113,363.5028248587571 217.04331450094162,363.5028248587571" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-5,-4.62 -5,-4.42 -5.65,-4.42 -5.65,-3.0199999999999996 -5,-3.0199999999999996" data-type="line" data-label="" points="210.26365348399244,412.8436911487759 210.26365348399244,409.0772128060264 198.02259887005647,409.0772128060264 198.02259887005647,382.7118644067797 210.26365348399244,382.7118644067797" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.75,0.8999999999999977 -1.8499999999999999,0.8999999999999977 -1.8499999999999999,1.0999999999999974 -1.75,1.0999999999999974" data-type="line" data-label="" points="271.4689265536723,308.88888888888897 269.5856873822975,308.88888888888897 269.5856873822975,305.1224105461394 271.4689265536723,305.1224105461394" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="10.1875,-6.1 11.292499999999999,-6.1 11.292499999999999,-6.3 10.1875,-6.3" data-type="line" data-label="" points="496.2806026365348,440.71563088512244 517.090395480226,440.71563088512244 517.090395480226,444.48210922787194 496.2806026365348,444.48210922787194" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-8.5,-1.6199999999999997 -8.5,-1.1 -10.5,-1.1" data-type="line" data-label="" points="144.35028248587568,356.34651600753295 144.35028248587568,346.5536723163842 106.6854990583804,346.5536723163842" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.75,-0.3000000000000034 -5.5600000000000005,-0.3000000000000034 -5.5600000000000005,-2 -5.36,-2" data-type="line" data-label="" points="271.4689265536723,331.48775894538613 199.71751412429376,331.48775894538613 199.71751412429376,363.5028248587571 203.4839924670433,363.5028248587571" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="14.47,7.45 14.670000000000002,7.45 14.670000000000002,6.975 10.260000000000002,6.975 10.260000000000002,6.5 10.46,6.5" data-type="line" data-label="" points="576.9303201506591,185.5367231638418 580.6967984934088,185.5367231638418 580.6967984934088,194.48210922787194 497.64595103578154,194.48210922787194 497.64595103578154,203.42749529190206 501.4124293785311,203.42749529190206" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="15,-5.900000000000002 15.399999999999999,-5.900000000000002 15.399999999999999,-7.260000000000002 14.5,-7.260000000000002 14.5,-8.620000000000001" data-type="line" data-label="" points="586.9114877589454,436.94915254237293 594.4444444444443,436.94915254237293 594.4444444444443,462.56120527306973 577.4952919020716,462.56120527306973 577.4952919020716,488.17325800376653" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.75,-0.49999999999999734 3.125,-0.49999999999999734 3.125,0.5800000000000001 4.5,0.5800000000000001 4.5,0.38" data-type="line" data-label="" points="337.38229755178907,335.2542372881356 363.27683615819205,335.2542372881356 363.27683615819205,314.91525423728814 389.1713747645951,314.91525423728814 389.1713747645951,318.6817325800377" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.2999999999999998,6.5 1.5,6.5 1.5,8.379999999999999 -1.8369701987210297e-17,8.379999999999999 -1.8369701987210297e-17,8.18" data-type="line" data-label="" points="328.90772128060263,203.42749529190206 332.67419962335214,203.42749529190206 332.67419962335214,168.02259887005653 304.4256120527307,168.02259887005653 304.4256120527307,171.78907721280603" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="11.54,6.5 11.739999999999998,6.5 11.739999999999998,5.540000000000001 11,5.540000000000001 11,4.58" data-type="line" data-label="" points="521.7514124293785,203.42749529190206 525.517890772128,203.42749529190206 525.517890772128,221.5065913370998 511.5819209039548,221.5065913370998 511.5819209039548,239.58568738229758" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-12.5,-2.9 -13.800999999999998,-2.9000000000000004 -13.800999999999998,-1.0999999999999996 -12.5,-1.1" data-type="line" data-label="" points="69.02071563088509,380.45197740112997 44.51977401129943,380.45197740112997 44.51977401129943,346.55367231638417 69.02071563088509,346.5536723163842" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.75,1.2999999999999976 -4.011,1.2999999999999976 -4.011,3.0999999999999988 -1.75,3.0999999999999988" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 228.88888888888886,301.3559322033899 228.88888888888886,267.4576271186441 271.4689265536723,267.4576271186441" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="10.1875,-5.9 10.2875,-5.9 10.2875,-5.7 10.1875,-5.7" data-type="line" data-label="" points="496.2806026365348,436.94915254237293 498.1638418079096,436.94915254237293 498.1638418079096,433.18267419962336 496.2806026365348,433.18267419962336" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="10.1875,-5.5 10.2875,-5.5 10.2875,-5.3 10.1875,-5.3" data-type="line" data-label="" points="496.2806026365348,429.41619585687386 498.1638418079096,429.41619585687386 498.1638418079096,425.6497175141243 496.2806026365348,425.6497175141243" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="13,-6.2 12.8,-6.2 12.8,-5.8 13,-5.8" data-type="line" data-label="" points="549.2467043314501,442.5988700564972 545.4802259887006,442.5988700564972 545.4802259887006,435.06591337099815 549.2467043314501,435.06591337099815" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.75,4.699999999999999 3.2710000000000004,4.699999999999999 3.2710000000000004,-0.29999999999999716 1.75,-0.29999999999999716" data-type="line" data-label="" points="337.38229755178907,237.32580037664786 366.0263653483992,237.32580037664786 366.0263653483992,331.487758945386 337.38229755178907,331.487758945386" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-6.15,6.1000000000000005 -8.291,6.1000000000000005 -8.291,6.94 -3.6500000000000004,6.94 -3.6500000000000004,6.3 -3.8499999999999996,6.3" data-type="line" data-label="" points="188.60640301318264,210.96045197740114 148.28625235404894,210.96045197740114 148.28625235404894,195.14124293785312 235.68738229755178,195.14124293785312 235.68738229755178,207.19397363465163 231.92090395480227,207.19397363465163" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="4.6,4.08 4.6,4.800000000000001 1.75,4.800000000000001 1.75,4.899999999999999" data-type="line" data-label="" points="391.0546139359699,249.00188323917138 391.0546139359699,235.44256120527308 337.38229755178907,235.44256120527308 337.38229755178907,233.55932203389835" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.75,1.2999999999999976 -2.34,1.2999999999999976" data-type="line" data-label="" points="271.4689265536723,301.3559322033899 260.3578154425612,301.3559322033899" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.75,-4.699999999999999 -2.291,-4.699999999999999 -2.291,-4.7509999999999994" data-type="line" data-label="" points="271.4689265536723,414.3502824858757 261.2806026365348,414.3502824858757 261.2806026365348,415.31073446327684" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="3.2710000000000004,2.200000000000001 2.9810000000000008,2.200000000000001 2.9810000000000008,2.199000000000001" data-type="line" data-label="" points="366.0263653483992,284.4067796610169 360.56497175141243,284.4067796610169 360.56497175141243,284.4256120527307" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-10.5,-1.3 -7.509000000000002,-1.3 -7.509000000000002,-1.351" data-type="line" data-label="" points="106.6854990583804,350.32015065913373 163.01318267419956,350.32015065913373 163.01318267419956,351.28060263653487" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="6.1,5 6.341,5 6.341,4.649" data-type="line" data-label="" points="419.30320150659134,231.67608286252354 423.84180790960454,231.67608286252354 423.84180790960454,238.28625235404897" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="8.95,-1 7.709,-1 7.709,-1.301" data-type="line" data-label="" points="472.97551789077215,344.67043314500944 449.6045197740113,344.67043314500944 449.6045197740113,350.33898305084745" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="8.97,6.45 9.211,6.45 9.211,6.099" data-type="line" data-label="" points="473.3521657250471,204.36911487758945 477.89077212806023,204.36911487758945 477.89077212806023,210.97928436911488" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="10.2375,9.4 11.5785,9.4 11.5785,9.099" data-type="line" data-label="" points="497.22222222222223,148.8135593220339 522.4764595103578,148.8135593220339 522.4764595103578,154.48210922787194" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="8.8,-3.5 9.041,-3.5 9.041,-3.851" data-type="line" data-label="" points="470.15065913370995,391.75141242937855 474.68926553672316,391.75141242937855 474.68926553672316,398.361581920904" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12.3,-3.5 12.541,-3.5 12.541,-3.851" data-type="line" data-label="" points="536.0640301318267,391.75141242937855 540.6026365348399,391.75141242937855 540.6026365348399,398.361581920904" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12.8,-5.8 12.45,-5.8" data-type="line" data-label="" points="545.4802259887006,435.06591337099815 538.8888888888889,435.06591337099815" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="13,-6 12.759,-6 12.759,-6.301" data-type="line" data-label="" points="549.2467043314501,438.83239171374765 544.7080979284369,438.83239171374765 544.7080979284369,444.5009416195857" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.75,-4.299999999999999 3.8010000000000006,-4.299999999999999 3.8010000000000006,-3.9989999999999988" data-type="line" data-label="" points="337.38229755178907,406.81732580037664 376.0075329566855,406.81732580037664 376.0075329566855,401.14877589453863" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.8499999999999999,3.8999999999999986 -2.1999999999999997,3.8999999999999986 -2.1999999999999997,3.9009999999999985" data-type="line" data-label="" points="269.5856873822975,252.391713747646 262.99435028248587,252.391713747646 262.99435028248587,252.37288135593224" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="10.2375,9.8 10.5385,9.8 10.5385,10.001" data-type="line" data-label="" points="497.22222222222223,141.28060263653484 502.8907721280603,141.28060263653484 502.8907721280603,137.49529190207159" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12.05,-1 13.700000000000003,-1 13.700000000000003,-0.6990000000000001" data-type="line" data-label="" points="531.3559322033898,344.67043314500944 562.4293785310736,344.67043314500944 562.4293785310736,339.0018832391714" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-6.15,6.3 -6.3500000000000005,6.3 -6.3500000000000005,8.379999999999999 -4,8.379999999999999 -4,8.18" data-type="line" data-label="" points="188.60640301318264,207.19397363465163 184.8399246704331,207.19397363465163 184.8399246704331,168.02259887005653 229.0960451977401,168.02259887005653 229.0960451977401,171.78907721280603" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12.05,-0.8 13.450000000000001,-0.8" data-type="line" data-label="" points="531.3559322033898,340.90395480225993 557.7212806026366,340.90395480225993" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.75,-3.6999999999999984 3.15,-3.6999999999999984" data-type="line" data-label="" points="337.38229755178907,395.51789077212806 363.7476459510358,395.51789077212806" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="12.05,-1.2 13.450000000000001,-1.2" data-type="line" data-label="" points="531.3559322033898,348.43691148775895 557.7212806026366,348.43691148775895" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.75,-3.8999999999999986 3.15,-3.8999999999999986" data-type="line" data-label="" points="337.38229755178907,399.28436911487756 363.7476459510358,399.28436911487756" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-6.15,6.3 -6.3500000000000005,6.3 -6.3500000000000005,8.379999999999999 -4,8.379999999999999 -4,8.18" data-type="line" data-label="recovered from net labels: schematic_port_178 -&gt; schematic_port_184" points="188.60640301318264,207.19397363465163 184.8399246704331,207.19397363465163 184.8399246704331,168.02259887005653 229.0960451977401,168.02259887005653 229.0960451977401,171.78907721280603" fill="none" stroke="green" stroke-width="1px"/></g><g><rect data-type="rect" data-label="schematic_component_0" data-x="-13" data-y="3" x="43.03201506591334" y="241.09227871939734" width="33.14500941619585" height="56.49717514124296" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_1" data-x="-9.5" data-y="3" x="108.94538606403007" y="241.09227871939734" width="33.145009416195904" height="56.49717514124296" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_2" data-x="0" data-y="0" x="271.4689265536723" y="229.7928436911488" width="65.91337099811676" height="192.090395480226" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_3" data-x="-11.5" data-y="-2" x="69.02071563088509" y="342.78719397363466" width="37.66478342749531" height="41.43126177024482" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_4" data-x="-8.3675" data-y="-2" x="135.87570621468927" y="356.34651600753295" width="21.939736346516014" height="14.312617702448222" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_5" data-x="-4.2475000000000005" data-y="-6.5" x="211.20527306967983" y="441.0922787193974" width="26.459510357815446" height="14.312617702448222" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_6" data-x="-2.4475000000000002" data-y="-6.5" x="245.10357815442558" y="441.0922787193974" width="26.459510357815475" height="14.312617702448222" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_7" data-x="-0.6475" data-y="-6.5" x="279.0018832391713" y="441.0922787193974" width="26.459510357815418" height="14.312617702448222" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_8" data-x="1.1525000000000003" data-y="-6.5" x="312.9001883239171" y="441.0922787193974" width="26.459510357815475" height="14.312617702448222" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_9" data-x="2.9525" data-y="-6.5" x="346.7984934086629" y="441.0922787193974" width="26.459510357815418" height="14.312617702448222" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_10" data-x="4.9325" data-y="-6.5" x="380.69679849340866" y="441.0922787193974" width="33.239171374764624" height="14.312617702448222" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_11" data-x="-5" data-y="-2" x="203.48399246704327" y="357.09981167608294" width="13.559322033898326" height="12.806026365348373" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_12" data-x="-4.5075" data-y="-3.6" x="201.78907721280598" y="386.47834274952925" width="35.49905838041431" height="14.312617702448222" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_13" data-x="-4.6274999999999995" data-y="-5" x="201.78907721280603" y="412.84369114877586" width="30.97928436911485" height="14.312617702448222" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_14" data-x="5.7524999999999995" data-y="-2" x="399.52919020715626" y="356.34651600753295" width="26.459510357815475" height="14.312617702448222" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_15" data-x="4.7524999999999995" data-y="0" x="380.69679849340866" y="318.6817325800377" width="26.459510357815418" height="14.312617702448165" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_16" data-x="4.0525" data-y="2" x="367.5141242937853" y="281.01694915254234" width="26.459510357815475" height="14.312617702448222" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_17" data-x="4.7325" data-y="3.7" x="382.5800376647834" y="249.00188323917135" width="21.939736346515986" height="14.312617702448222" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_18" data-x="5.5" data-y="5" x="396.7043314500942" y="225.27306967984936" width="22.598870056497162" height="12.806026365348373" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_19" data-x="-5" data-y="6.2" x="188.60640301318261" y="203.42749529190206" width="43.31450094161963" height="11.299435028248581" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_20" data-x="1" data-y="6.5" x="317.60828625235405" y="197.02448210922785" width="11.299435028248581" height="12.806026365348401" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_21" data-x="-3.6875" data-y="7.8" x="220.62146892655363" y="171.78907721280603" width="28.71939736346519" height="14.312617702448222" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_22" data-x="0.37250000000000005" data-y="7.8" x="295.9510357815443" y="171.78907721280603" width="30.97928436911485" height="14.312617702448222" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_23" data-x="10.5" data-y="-1" x="472.97551789077215" y="337.13747645951037" width="58.38041431261763" height="15.065913370998146" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_24" data-x="14" data-y="7.5" x="559.2278719397364" y="177.8256996233522" width="17.70244821092274" height="13.538807909604486" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_25" data-x="11.5" data-y="7.5" x="510.82862523540496" y="178.19209039548025" width="20.33898305084739" height="12.806026365348401" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_26" data-x="8.5" data-y="6.5" x="455.6497175141243" y="196.6580913370998" width="17.702448210922796" height="13.538807909604515" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_27" data-x="11" data-y="6.5" x="501.4124293785311" y="197.02448210922785" width="20.338983050847446" height="12.806026365348401" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_28" data-x="11.1925" data-y="4.2" x="503.10734463276845" y="239.58568738229758" width="24.199623352165702" height="14.312617702448193" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_29" data-x="9.5" data-y="9.5" x="469.44444444444446" y="137.5141242937853" width="27.77777777777777" height="18.832391713747654" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_30" data-x="9" data-y="-6" x="451.5536723163842" y="414.3502824858757" width="44.72693032015064" height="48.96421845574389" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_31" data-x="8.5" data-y="-3.5" x="458.85122410546137" y="385.34839924670433" width="11.299435028248581" height="12.80602636534843" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_32" data-x="12" data-y="-3.5" x="524.7645951035781" y="385.34839924670433" width="11.299435028248581" height="12.80602636534843" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_33" data-x="14" data-y="-6" x="549.24670433145" y="433.18267419962336" width="37.66478342749531" height="11.299435028248581" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_34" data-x="11.8125" data-y="-9" x="512.5235404896421" y="488.17325800376653" width="28.71939736346519" height="14.312617702448165" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="schematic_component_35" data-x="14.8725" data-y="-9" x="569.0207156308852" y="488.17325800376653" width="30.979284369114794" height="14.312617702448165" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="J_DISPLAY" data-x="-12.940000000000001" data-y="4.615" x="49.43502824858747" y="236.57250470809794" width="22.598870056497248" height="4.708097928436928" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="J_HOST" data-x="-9.620000000000001" data-y="4.615" x="115.34839924670426" y="236.57250470809794" width="15.819209039548099" height="4.708097928436928" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="STM32F723VET6" data-x="-0.5700000000000001" data-y="-5.229999999999999" x="279.0018832391714" y="422.63653483992465" width="29.37853107344631" height="3.3898305084745743" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="U_MCU" data-x="-1.0500000000000003" data-y="5.214999999999998" x="277.8719397363465" y="225.2730696798494" width="13.559322033898297" height="4.708097928436899" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="SN74LVC244APWR" data-x="-11.26" data-y="-3.2299999999999995" x="76.55367231638417" y="384.9717514124294" width="31.638418079096027" height="3.3898305084745743" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="U_BUF" data-x="-11.8" data-y="-0.7850000000000001" x="75.4237288135593" y="338.2674199623352" width="13.559322033898269" height="4.708097928436928" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="ABM8W_12_0000MHZ_8_B1U_T3" data-x="-4.25" data-y="5.7700000000000005" x="196.13935969868174" y="215.48022598870057" width="56.497175141242934" height="3.3898305084745743" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="Y1" data-x="-5.63" data-y="6.615" x="195.00941619585686" y="198.90772128060263" width="6.779661016949149" height="4.708097928436928" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="USBLC6_2SC6" data-x="10.01" data-y="-1.5299999999999998" x="480.50847457627117" y="352.9566854990584" width="24.85875706214688" height="3.3898305084745743" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="U_ESD" data-x="9.649999999999999" data-y="-0.485" x="479.3785310734463" y="332.61770244821093" width="13.559322033898297" height="4.708097928436928" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="J_SWD" data-x="9.462499999999999" data-y="10.115" x="475.8474576271186" y="132.99435028248587" width="13.559322033898297" height="4.708097928436928" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="TYPE-C-31-M-12" data-x="9.0525" data-y="-7.43" x="459.08662900188324" y="464.0677966101695" width="31.638418079096027" height="3.3898305084745743" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="J_USB" data-x="8.5125" data-y="-4.585000000000001" x="457.9566854990584" y="409.8305084745763" width="13.559322033898297" height="4.708097928436928" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="AP2112K_3_3TRG1" data-x="14.3" data-y="-6.43" x="556.7796610169493" y="445.23540489642187" width="33.89830508474574" height="3.3898305084745743" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="U_LDO" data-x="13.7" data-y="-5.585000000000001" x="555.6497175141243" y="428.662900188324" width="13.559322033898297" height="4.708097928436871" fill="rgba(160, 0, 220, 0.14)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: .J_HOST &gt; .pin1 to .J_DISPLAY &gt; .pin1
4
4
  globalConnNetId: connectivity_net0" data-x="-11.25" data-y="4.5249999999999995" x="90.67796610169489" y="236.3841807909605" width="3.766478342749508" height="8.474576271186407" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: GND
5
5
  globalConnNetId: connectivity_net1" data-x="-4.011" data-y="1.0899999999999976" x="224.36911487758942" y="301.3559322033899" width="9.039548022598865" height="7.909604519774007" fill="#00000066" stroke="#000000" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: GND
6
6
  globalConnNetId: connectivity_net1" data-x="-2.291" data-y="-4.960999999999999" x="256.7608286252354" y="415.31073446327684" width="9.039548022598865" height="7.909604519774007" fill="#00000066" stroke="#000000" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: GND
@@ -78,11 +78,7 @@ globalConnNetId: connectivity_net24" data-x="5.5" data-y="-0.8389999999999996" x
78
78
  globalConnNetId: connectivity_net28" data-x="2.831" data-y="-4.499999999999998" x="337.40112994350284" y="408.7005649717514" width="40.67796610169489" height="3.766478342749508" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: .U_MCU &gt; .pin53 to .R_USB_REXT &gt; .pin1
79
79
  globalConnNetId: connectivity_net28" data-x="3.8190000000000004" data-y="5" x="356.0075329566855" y="229.7928436911488" width="40.67796610169489" height="3.766478342749508" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: .U_MCU &gt; .pin55 to .C_USB12 &gt; .pin1
80
80
  globalConnNetId: connectivity_net26" data-x="2.771" data-y="-4.099999999999999" x="337.40112994350284" y="401.1676082862524" width="38.418079096045176" height="3.766478342749508" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: .U_MCU &gt; .pin55 to .C_USB12 &gt; .pin1
81
- globalConnNetId: connectivity_net26" data-x="3.8" data-y="3.4010000000000002" x="374.10546139359695" y="242.58003766478345" width="3.766478342749565" height="38.418079096045176" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: USB_HS_DM
82
- globalConnNetId: connectivity_net35" data-x="12.651" data-y="-1.2" x="531.3747645951036" y="346.5536723163842" width="22.598870056497162" height="3.766478342749508" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: USB_HS_DM
83
- globalConnNetId: connectivity_net35" data-x="2.351" data-y="-3.8999999999999986" x="337.40112994350284" y="397.40112994350284" width="22.598870056497162" height="3.766478342749508" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: USB_HS_DP
84
- globalConnNetId: connectivity_net34" data-x="12.651" data-y="-0.8" x="531.3747645951036" y="339.0207156308852" width="22.598870056497162" height="3.766478342749508" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: USB_HS_DP
85
- globalConnNetId: connectivity_net34" data-x="2.351" data-y="-3.6999999999999984" x="337.40112994350284" y="393.6346516007533" width="22.598870056497162" height="3.766478342749565" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: .U_BUF &gt; .pin7 to .U_MCU &gt; .pin63
81
+ globalConnNetId: connectivity_net26" data-x="3.8" data-y="3.4010000000000002" x="374.10546139359695" y="242.58003766478345" width="3.766478342749565" height="38.418079096045176" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: .U_BUF &gt; .pin7 to .U_MCU &gt; .pin63
86
82
  globalConnNetId: connectivity_net20" data-x="-13.100999999999999" data-y="-2.3" x="46.4030131826742" y="367.26930320150666" width="22.598870056497134" height="3.766478342749508" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: .U_BUF &gt; .pin7 to .U_MCU &gt; .pin63
87
83
  globalConnNetId: connectivity_net20" data-x="2.351" data-y="-2.4999999999999987" x="337.40112994350284" y="371.0357815442561" width="22.598870056497162" height="3.766478342749565" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: .U_BUF &gt; .pin3 to .U_MCU &gt; .pin64
88
84
  globalConnNetId: connectivity_net22" data-x="-13.100999999999999" data-y="-1.5" x="46.4030131826742" y="352.2033898305085" width="22.598870056497134" height="3.766478342749508" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: .U_BUF &gt; .pin3 to .U_MCU &gt; .pin64
@@ -101,14 +97,22 @@ globalConnNetId: connectivity_net32" data-x="10.8875" data-y="-5.9" x="498.16384
101
97
  globalConnNetId: connectivity_net32" data-x="8.349" data-y="-0.8" x="450.3578154425612" y="339.0207156308852" width="22.598870056497162" height="3.766478342749508" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: .J_USB &gt; .pin9 to .U_ESD &gt; .pin3
102
98
  globalConnNetId: connectivity_net33" data-x="11.892499999999998" data-y="-6.1" x="517.090395480226" y="438.8323917137477" width="22.598870056497162" height="3.766478342749508" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: .J_USB &gt; .pin9 to .U_ESD &gt; .pin3
103
99
  globalConnNetId: connectivity_net33" data-x="8.349" data-y="-1.2" x="450.3578154425612" y="346.5536723163842" width="22.598870056497162" height="3.766478342749508" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: VBUS
104
- globalConnNetId: connectivity_net42" data-x="13.301000000000002" data-y="-0.4890000000000001" x="549.2655367231639" y="331.09227871939737" width="11.299435028248581" height="7.909604519774007" fill="#ef444466" stroke="#ef4444" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: VBUS
100
+ globalConnNetId: connectivity_net42" data-x="13.700000000000003" data-y="-0.4890000000000001" x="556.7796610169493" y="331.09227871939737" width="11.299435028248581" height="7.909604519774007" fill="#ef444466" stroke="#ef4444" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: VBUS
105
101
  globalConnNetId: connectivity_net42" data-x="10.4975" data-y="-5.5" x="498.16384180790953" y="423.76647834274956" width="7.909604519774064" height="11.299435028248581" fill="#ef444466" stroke="#ef4444" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: VBUS
106
102
  globalConnNetId: connectivity_net42" data-x="12.45" data-y="-5.59" x="533.2391713747645" y="427.15630885122414" width="11.299435028248695" height="7.909604519774007" fill="#ef444466" stroke="#ef4444" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: VBUS
107
103
  globalConnNetId: connectivity_net42" data-x="11.5" data-y="-8.409" x="515.3483992467043" y="480.2448210922787" width="11.299435028248695" height="7.909604519774064" fill="#ef444466" stroke="#ef4444" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: .J_USB &gt; .pin6 to .R_CC1 &gt; .pin1
108
104
  globalConnNetId: connectivity_net40" data-x="10.788499999999999" data-y="-6.5" x="496.2994350282486" y="446.3653483992467" width="22.598870056497162" height="3.766478342749508" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: .J_USB &gt; .pin6 to .R_CC1 &gt; .pin1
109
105
  globalConnNetId: connectivity_net40" data-x="7.598999999999999" data-y="-3.5" x="436.23352165725044" y="389.86817325800376" width="22.59887005649722" height="3.766478342749565" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: .J_USB &gt; .pin12 to .R_CC2 &gt; .pin1
110
106
  globalConnNetId: connectivity_net41" data-x="10.788499999999999" data-y="-6.7" x="496.2994350282486" y="450.1318267419963" width="22.598870056497162" height="3.7664783427494513" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="netId: .J_USB &gt; .pin12 to .R_CC2 &gt; .pin1
111
- globalConnNetId: connectivity_net41" data-x="11.099" data-y="-3.5" x="502.1468926553673" y="389.86817325800376" width="22.59887005649722" height="3.766478342749565" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><circle data-type="point" data-label="schematic_port_0
107
+ globalConnNetId: connectivity_net41" data-x="11.099" data-y="-3.5" x="502.1468926553673" y="389.86817325800376" width="22.59887005649722" height="3.766478342749565" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="INLINE netId: USB_HS_DP
108
+ axis: x
109
+ side: y+" data-x="12.75" data-y="-0.66" x="533.2391713747646" y="336.57250470809794" width="22.598870056497162" height="3.3898305084745743" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="INLINE netId: USB_HS_DP
110
+ axis: x
111
+ side: y+" data-x="2.45" data-y="-3.5599999999999983" x="339.26553672316385" y="391.1864406779661" width="22.598870056497162" height="3.3898305084745743" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="INLINE netId: USB_HS_DM
112
+ axis: x
113
+ side: y+" data-x="12.75" data-y="-1.1" x="533.2391713747646" y="344.85875706214694" width="22.598870056497162" height="3.3898305084745743" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><g><rect data-type="rect" data-label="INLINE netId: USB_HS_DM
114
+ axis: x
115
+ side: y+" data-x="2.45" data-y="-3.7999999999999985" x="339.26553672316385" y="395.7062146892656" width="22.598870056497162" height="3.3898305084745175" fill="hsl(80, 100%, 50%, 0.35)" stroke="black" stroke-width="0.053099999999999994"/></g><text data-type="text" data-label="USB_HS_DP" data-x="12.15" data-y="-0.66" x="533.2391713747646" y="338.2674199623352" fill="green" font-size="3.3898305084745766" font-family="sans-serif" text-anchor="start" dominant-baseline="central">USB_HS_DP</text><text data-type="text" data-label="USB_HS_DP" data-x="1.85" data-y="-3.5599999999999983" x="339.26553672316385" y="392.8813559322034" fill="green" font-size="3.3898305084745766" font-family="sans-serif" text-anchor="start" dominant-baseline="central">USB_HS_DP</text><text data-type="text" data-label="USB_HS_DM" data-x="12.15" data-y="-1.1" x="533.2391713747646" y="346.5536723163842" fill="green" font-size="3.3898305084745766" font-family="sans-serif" text-anchor="start" dominant-baseline="central">USB_HS_DM</text><text data-type="text" data-label="USB_HS_DM" data-x="1.85" data-y="-3.7999999999999985" x="339.26553672316385" y="397.40112994350284" fill="green" font-size="3.3898305084745766" font-family="sans-serif" text-anchor="start" dominant-baseline="central">USB_HS_DM</text><g><circle data-type="point" data-label="schematic_port_0
112
116
  x+" data-x="-12.12" data-y="4.3" cx="76.1770244821092" cy="244.8587570621469" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="schematic_port_1
113
117
  x+" data-x="-12.12" data-y="4.1" cx="76.1770244821092" cy="248.62523540489644" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="schematic_port_2
114
118
  x+" data-x="-12.12" data-y="3.8999999999999995" cx="76.1770244821092" cy="252.39171374764595" r="3" fill="hsl(248, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="schematic_port_3
@@ -420,10 +424,6 @@ orientation: x+" data-x="1.75" data-y="-4.499999999999998" cx="337.3822975517890
420
424
  orientation: x-" data-x="4.9" data-y="5" cx="396.7043314500942" cy="231.67608286252354" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
421
425
  orientation: x+" data-x="1.75" data-y="-4.099999999999999" cx="337.38229755178907" cy="403.0508474576271" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
422
426
  orientation: y+" data-x="3.8" data-y="2.3800000000000003" cx="375.98870056497174" cy="281.0169491525424" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
423
- orientation: x+" data-x="12.05" data-y="-1.2" cx="531.3559322033898" cy="348.43691148775895" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
424
- orientation: x+" data-x="1.75" data-y="-3.8999999999999986" cx="337.38229755178907" cy="399.28436911487756" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
425
- orientation: x+" data-x="12.05" data-y="-0.8" cx="531.3559322033898" cy="340.90395480225993" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
426
- orientation: x+" data-x="1.75" data-y="-3.6999999999999984" cx="337.38229755178907" cy="395.51789077212806" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
427
427
  orientation: x-" data-x="-12.5" data-y="-2.3" cx="69.02071563088509" cy="369.1525423728814" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
428
428
  orientation: x+" data-x="1.75" data-y="-2.4999999999999987" cx="337.38229755178907" cy="372.9190207156309" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
429
429
  orientation: x-" data-x="-12.5" data-y="-1.5" cx="69.02071563088509" cy="354.08662900188324" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
@@ -442,14 +442,18 @@ orientation: x+" data-x="10.2875" data-y="-5.9" cx="498.1638418079096" cy="436.9
442
442
  orientation: x-" data-x="8.95" data-y="-0.8" cx="472.97551789077215" cy="340.90395480225993" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
443
443
  orientation: x+" data-x="11.292499999999999" data-y="-6.1" cx="517.090395480226" cy="440.71563088512244" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
444
444
  orientation: x-" data-x="8.95" data-y="-1.2" cx="472.97551789077215" cy="348.43691148775895" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
445
- orientation: y+" data-x="13.301000000000002" data-y="-0.6990000000000001" cx="554.9152542372882" cy="339.0018832391714" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
445
+ orientation: y+" data-x="13.700000000000003" data-y="-0.6990000000000001" cx="562.4293785310736" cy="339.0018832391714" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
446
446
  orientation: x+" data-x="10.2875" data-y="-5.5" cx="498.1638418079096" cy="429.41619585687386" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
447
447
  orientation: y+" data-x="12.45" data-y="-5.8" cx="538.8888888888889" cy="435.06591337099815" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
448
448
  orientation: y+" data-x="11.5" data-y="-8.620000000000001" cx="520.9981167608287" cy="488.17325800376653" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
449
449
  orientation: x+" data-x="10.1875" data-y="-6.5" cx="496.2806026365348" cy="448.2485875706215" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
450
450
  orientation: x-" data-x="8.2" data-y="-3.5" cx="458.85122410546137" cy="391.75141242937855" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
451
451
  orientation: x+" data-x="10.1875" data-y="-6.7" cx="496.2806026365348" cy="452.015065913371" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
452
- orientation: x-" data-x="11.7" data-y="-3.5" cx="524.7645951035781" cy="391.75141242937855" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></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[
452
+ orientation: x-" data-x="11.7" data-y="-3.5" cx="524.7645951035781" cy="391.75141242937855" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="inline anchor
453
+ USB_HS_DP" data-x="12.75" data-y="-0.8" cx="544.5386064030132" cy="340.90395480225993" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
454
+ USB_HS_DP" data-x="2.45" data-y="-3.6999999999999984" cx="350.56497175141243" cy="395.51789077212806" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
455
+ USB_HS_DM" data-x="12.75" data-y="-1.2" cx="544.5386064030132" cy="348.43691148775895" r="3" fill="green"/></g><g><circle data-type="point" data-label="inline anchor
456
+ USB_HS_DM" data-x="2.45" data-y="-3.8999999999999986" cx="350.56497175141243" cy="399.28436911487756" 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[
453
457
  document.currentScript.parentElement.addEventListener('mousemove', (e) => {
454
458
  const svg = e.currentTarget;
455
459
  const rect = svg.getBoundingClientRect();
@@ -506,7 +510,7 @@ orientation: x-" data-x="11.7" data-y="-3.5" cx="524.7645951035781" cy="391.7514
506
510
  .port-label { fill: rgb(0, 100, 100); }
507
511
  .component-name { fill: rgb(0, 100, 100); }
508
512
 
509
- </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 173.9477304853679 249.27413946718002 L 108.209418083532 249.27413946718002" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 173.9477304853679 249.27413946718002 L 108.209418083532 249.27413946718002" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 173.9477304853679 256.83026732946 L 108.209418083532 256.83026732946" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 173.9477304853679 256.83026732946 L 108.209418083532 256.83026732946" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 951.0010295225875 604.41214899434 L 958.5571573848674 604.41214899434 L 958.5571573848674 596.85602113206 L 951.0010295225875 596.85602113206" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 951.0010295225875 604.41214899434 L 958.5571573848674 604.41214899434 L 958.5571573848674 596.85602113206 L 951.0010295225875 596.85602113206" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 499.99464774275 415.50895243734016 L 488.66045594932996 415.50895243734016 L 488.66045594932996 362.6160574013801 L 499.99464774275 362.6160574013801" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 499.99464774275 415.50895243734016 L 488.66045594932996 415.50895243734016 L 488.66045594932996 362.6160574013801 L 499.99464774275 362.6160574013801" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 108.209418083532 264.38639519174 L 173.9477304853679 264.38639519174" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 108.209418083532 264.38639519174 L 173.9477304853679 264.38639519174" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 108.209418083532 271.94252305402006 L 173.9477304853679 271.94252305402" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 108.209418083532 271.94252305402006 L 173.9477304853679 271.94252305402" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 108.209418083532 279.4986509163 L 173.9477304853679 279.4986509163" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 108.209418083532 279.4986509163 L 173.9477304853679 279.4986509163" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 108.209418083532 287.05477877858004 L 173.9477304853679 287.05477877858004" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 108.209418083532 287.05477877858004 L 173.9477304853679 287.05477877858004" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 108.209418083532 294.61090664086004 L 173.9477304853679 294.61090664086" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 108.209418083532 294.61090664086004 L 173.9477304853679 294.61090664086" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 108.209418083532 302.16703450314003 L 173.9477304853679 302.16703450314003" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 108.209418083532 302.16703450314003 L 173.9477304853679 302.16703450314003" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 108.209418083532 309.72316236542 L 173.9477304853679 309.72316236542" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 108.209418083532 309.72316236542 L 173.9477304853679 309.72316236542" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 173.9477304853679 317.2792902277 L 108.209418083532 317.2792902277" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 173.9477304853679 317.2792902277 L 108.209418083532 317.2792902277" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 173.9477304853679 324.83541808998 L 108.209418083532 324.83541808998" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 173.9477304853679 324.83541808998 L 108.209418083532 324.83541808998" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 173.9477304853679 332.39154595226 L 108.209418083532 332.39154595226" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 173.9477304853679 332.39154595226 L 108.209418083532 332.39154595226" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 173.9477304853679 339.94767381454 L 108.209418083532 339.94767381454" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 173.9477304853679 339.94767381454 L 108.209418083532 339.94767381454" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 173.9477304853679 347.50380167682 L 108.209418083532 347.50380167682" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 173.9477304853679 347.50380167682 L 108.209418083532 347.50380167682" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 464.10304039692 642.948401091968 L 464.10304039692 635.392273229688 L 396.09788963639994 635.392273229688 L 396.09788963639994 642.948401091968" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 464.10304039692 642.948401091968 L 464.10304039692 635.392273229688 L 396.09788963639994 635.392273229688 L 396.09788963639994 642.948401091968" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 532.1081911574399 642.948401091968 L 532.1081911574399 635.392273229688 L 464.10304039692 635.392273229688" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 532.1081911574399 642.948401091968 L 532.1081911574399 635.392273229688 L 464.10304039692 635.392273229688" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 600.11334191796 642.948401091968 L 600.11334191796 635.392273229688 L 532.1081911574399 635.392273229688" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 600.11334191796 642.948401091968 L 600.11334191796 635.392273229688 L 532.1081911574399 635.392273229688" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 668.11849267848 642.948401091968 L 668.11849267848 635.392273229688 L 600.11334191796 635.392273229688" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 668.11849267848 642.948401091968 L 668.11849267848 635.392273229688 L 600.11334191796 635.392273229688" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 736.123643439 642.948401091968 L 736.123643439 635.392273229688 L 668.11849267848 635.392273229688" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 736.123643439 642.948401091968 L 736.123643439 635.392273229688 L 668.11849267848 635.392273229688" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 499.99464774275 596.8560211320599 L 492.43851988047 596.8560211320599 L 492.43851988047 635.392273229688 L 532.1081911574399 635.392273229688 L 532.1081911574399 642.948401091968" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 499.99464774275 596.8560211320599 L 492.43851988047 596.8560211320599 L 492.43851988047 635.392273229688 L 532.1081911574399 635.392273229688 L 532.1081911574399 642.948401091968" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 499.99464774275 302.1670345031401 L 496.21658381161 302.1670345031401 L 496.21658381161 264.38639519174006 L 499.99464774275 264.38639519174006" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 499.99464774275 302.1670345031401 L 496.21658381161 302.1670345031401 L 496.21658381161 264.38639519174006 L 499.99464774275 264.38639519174006" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 377.2075699807 533.384547088908 L 377.2075699807 525.8284192266281 L 398.36472799508397 525.8284192266281 L 398.36472799508397 487.292167129 L 390.80860013280403 487.292167129" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 377.2075699807 533.384547088908 L 377.2075699807 525.8284192266281 L 398.36472799508397 525.8284192266281 L 398.36472799508397 487.292167129 L 390.80860013280403 487.292167129" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 377.2075699807 586.277442124868 L 377.2075699807 578.7213142625881 L 352.65015442828997 578.7213142625881 L 352.65015442828997 525.8284192266281 L 377.2075699807 525.8284192266281" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 377.2075699807 586.277442124868 L 377.2075699807 578.7213142625881 L 352.65015442828997 578.7213142625881 L 352.65015442828997 525.8284192266281 L 377.2075699807 525.8284192266281" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_25__stack1"><path d="M 499.99464774275 377.7283131259401 L 496.21658381161 377.7283131259401 L 496.21658381161 370.17218526366014 L 499.99464774275 370.17218526366014" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 499.99464774275 377.7283131259401 L 496.21658381161 377.7283131259401 L 496.21658381161 370.17218526366014 L 499.99464774275 370.17218526366014" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_26__stack1"><path d="M 951.0010295225875 642.19278830574 L 992.7486359616844 642.19278830574 L 992.7486359616844 649.7489161680201 L 951.0010295225875 649.7489161680201" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 951.0010295225875 642.19278830574 L 992.7486359616844 642.19278830574 L 992.7486359616844 649.7489161680201 L 951.0010295225875 649.7489161680201" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_27__stack1"><path d="M 244.97533239079996 472.935524190668 L 244.97533239079996 453.28959174874 L 169.41405376799997 453.28959174874" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 244.97533239079996 472.935524190668 L 244.97533239079996 453.28959174874 L 169.41405376799997 453.28959174874" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_28__stack1"><path d="M 499.99464774275 423.06508029962015 L 356.05041196631595 423.06508029962015 L 356.05041196631595 487.292167129 L 363.60653982859594 487.292167129" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 499.99464774275 423.06508029962015 L 356.05041196631595 423.06508029962015 L 356.05041196631595 487.292167129 L 363.60653982859594 487.292167129" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_29__stack1"><path d="M 1112.7966173736581 130.26512563627 L 1120.352745235938 130.26512563627 L 1120.352745235938 148.21092930918502 L 953.7401258726641 148.21092930918502 L 953.7401258726641 166.1567329821 L 961.296253734944 166.1567329821" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1112.7966173736581 130.26512563627 L 1120.352745235938 130.26512563627 L 1120.352745235938 148.21092930918502 L 953.7401258726641 148.21092930918502 L 953.7401258726641 166.1567329821 L 961.296253734944 166.1567329821" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_30__stack1"><path d="M 1132.8203562087 634.6366604434601 L 1147.93261193326 634.6366604434601 L 1147.93261193326 686.018329906964 L 1113.930036553 686.018329906964 L 1113.930036553 737.3999993704681" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1132.8203562087 634.6366604434601 L 1147.93261193326 634.6366604434601 L 1147.93261193326 686.018329906964 L 1113.930036553 686.018329906964 L 1113.930036553 737.3999993704681" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_31__stack1"><path d="M 632.22688533265 430.6212081618999 L 684.175264385825 430.6212081618999 L 684.175264385825 389.818117705588 L 736.123643439 389.818117705588 L 736.123643439 397.374245567868" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 632.22688533265 430.6212081618999 L 684.175264385825 430.6212081618999 L 684.175264385825 389.818117705588 L 736.123643439 389.818117705588 L 736.123643439 397.374245567868" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_32__stack1"><path d="M 615.22559764252 166.1567329821 L 622.7817255048 166.1567329821 L 622.7817255048 95.12913107666805 L 566.1107665377 95.12913107666805 L 566.1107665377 102.68525893894804" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 615.22559764252 166.1567329821 L 622.7817255048 166.1567329821 L 622.7817255048 95.12913107666805 L 566.1107665377 95.12913107666805 L 566.1107665377 102.68525893894804" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_33__stack1"><path d="M 1002.099344191256 166.1567329821 L 1009.655472053536 166.1567329821 L 1009.655472053536 202.42614672104398 L 981.6977989631 202.42614672104398 L 981.6977989631 238.695560459988" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1002.099344191256 166.1567329821 L 1009.655472053536 166.1567329821 L 1009.655472053536 202.42614672104398 L 981.6977989631 202.42614672104398 L 981.6977989631 238.695560459988" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_34__stack1"><path d="M 93.85277514519998 521.29474250926 L 44.70016340106861 521.29474250926 L 44.70016340106861 453.28959174874 L 93.85277514519998 453.28959174874" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 93.85277514519998 521.29474250926 L 44.70016340106861 521.29474250926 L 44.70016340106861 453.28959174874 L 93.85277514519998 453.28959174874" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_35__stack1"><path d="M 499.99464774275 362.6160574013801 L 414.5726222596746 362.6160574013801 L 414.5726222596746 294.6109066408601 L 499.99464774275 294.6109066408601" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 499.99464774275 362.6160574013801 L 414.5726222596746 362.6160574013801 L 414.5726222596746 294.6109066408601 L 499.99464774275 294.6109066408601" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_36__stack1"><path d="M 951.0010295225875 634.6366604434601 L 954.7790934537275 634.6366604434601 L 954.7790934537275 627.08053258118 L 951.0010295225875 627.08053258118" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 951.0010295225875 634.6366604434601 L 954.7790934537275 634.6366604434601 L 954.7790934537275 627.08053258118 L 951.0010295225875 627.08053258118" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_37__stack1"><path d="M 951.0010295225875 619.5244047189001 L 954.7790934537275 619.5244047189001 L 954.7790934537275 611.96827685662 L 951.0010295225875 611.96827685662" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 951.0010295225875 619.5244047189001 L 954.7790934537275 619.5244047189001 L 954.7790934537275 611.96827685662 L 951.0010295225875 611.96827685662" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_38__stack1"><path d="M 1057.2590775859 645.9708522368801 L 1049.70294972362 645.9708522368801 L 1049.70294972362 630.85859651232 L 1057.2590775859 630.85859651232" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1057.2590775859 645.9708522368801 L 1049.70294972362 645.9708522368801 L 1049.70294972362 630.85859651232 L 1057.2590775859 630.85859651232" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_39__stack1"><path d="M 632.22688533265 234.16188374262003 L 689.6912377252894 234.16188374262003 L 689.6912377252894 423.0650802996199 L 632.22688533265 423.0650802996199" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 632.22688533265 234.16188374262003 L 689.6912377252894 234.16188374262003 L 689.6912377252894 423.0650802996199 L 632.22688533265 423.0650802996199" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_40__stack1"><path d="M 333.75983477258995 181.26898870666 L 252.87148600688255 181.26898870666 L 252.87148600688255 149.533251685084 L 428.21143305108995 149.533251685084 L 428.21143305108995 173.71286084438 L 420.65530518880996 173.71286084438" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 333.75983477258995 181.26898870666 L 252.87148600688255 181.26898870666 L 252.87148600688255 149.533251685084 L 428.21143305108995 149.533251685084 L 428.21143305108995 173.71286084438 L 420.65530518880996 173.71286084438" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_41__stack1"><path d="M 739.90170737014 257.58588011568804 L 739.90170737014 230.38381981147998 L 632.22688533265 230.38381981147998 L 632.22688533265 226.60575588034007" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 739.90170737014 257.58588011568804 L 739.90170737014 230.38381981147998 L 632.22688533265 230.38381981147998 L 632.22688533265 226.60575588034007" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_42__stack1"><path d="M 499.99464774275 362.6160574013801 L 477.704070549024 362.6160574013801" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 499.99464774275 362.6160574013801 L 477.704070549024 362.6160574013801" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_43__stack1"><path d="M 499.99464774275 589.29989326978 L 479.5553218752826 589.29989326978 L 479.5553218752826 591.2267058746614" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 499.99464774275 589.29989326978 L 479.5553218752826 589.29989326978 L 479.5553218752826 591.2267058746614" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_44__stack1"><path d="M 689.6912377252894 328.61348202112 L 678.7348523249834 328.61348202112 L 678.7348523249834 328.65126266043137" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 689.6912377252894 328.61348202112 L 678.7348523249834 328.61348202112 L 678.7348523249834 328.65126266043137" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_45__stack1"><path d="M 169.41405376799997 460.84571961102 L 282.4159459483973 460.84571961102 L 282.4159459483973 462.77253221590144" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 169.41405376799997 460.84571961102 L 282.4159459483973 460.84571961102 L 282.4159459483973 462.77253221590144" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_46__stack1"><path d="M 796.57266633724 222.82769194920002 L 805.6778004112874 222.82769194920002 L 805.6778004112874 236.0886963475014" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 796.57266633724 222.82769194920002 L 805.6778004112874 222.82769194920002 L 805.6778004112874 236.0886963475014" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_47__stack1"><path d="M 904.24748837473 449.51152781760004 L 857.3617149892825 449.51152781760004 L 857.3617149892825 460.8835002503314" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 904.24748837473 449.51152781760004 L 857.3617149892825 449.51152781760004 L 857.3617149892825 460.8835002503314" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_48__stack1"><path d="M 905.0031011609581 168.04576494767 L 914.1082352350054 168.04576494767 L 914.1082352350054 181.3067693459714" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 905.0031011609581 168.04576494767 L 914.1082352350054 168.04576494767 L 914.1082352350054 181.3067693459714" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_49__stack1"><path d="M 952.8900614881575 56.592878979039995 L 1003.5538988047449 56.592878979039995 L 1003.5538988047449 67.9648514117714" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 952.8900614881575 56.592878979039995 L 1003.5538988047449 56.592878979039995 L 1003.5538988047449 67.9648514117714" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_50__stack1"><path d="M 898.58039247802 543.9631260961 L 907.6855265520674 543.9631260961 L 907.6855265520674 557.2241304944014" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 898.58039247802 543.9631260961 L 907.6855265520674 543.9631260961 L 907.6855265520674 557.2241304944014" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_51__stack1"><path d="M 1030.81263006792 543.9631260961 L 1039.9177641419674 543.9631260961 L 1039.9177641419674 557.2241304944014" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1030.81263006792 543.9631260961 L 1039.9177641419674 543.9631260961 L 1039.9177641419674 557.2241304944014" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_52__stack1"><path d="M 1049.70294972362 630.85859651232 L 1036.47972596463 630.85859651232" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1049.70294972362 630.85859651232 L 1036.47972596463 630.85859651232" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_53__stack1"><path d="M 1057.2590775859 638.4147243746 L 1048.1539435118525 638.4147243746 L 1048.1539435118525 649.7866968073314" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1057.2590775859 638.4147243746 L 1048.1539435118525 638.4147243746 L 1048.1539435118525 649.7866968073314" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_54__stack1"><path d="M 632.22688533265 574.18763754522 L 709.7149765603315 574.18763754522 L 709.7149765603315 562.8156651124885" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 632.22688533265 574.18763754522 L 709.7149765603315 574.18763754522 L 709.7149765603315 562.8156651124885" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_55__stack1"><path d="M 496.21658381161 264.38639519174006 L 482.99336005262 264.38639519174006 L 482.99336005262 264.34861455242867" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 496.21658381161 264.38639519174006 L 482.99336005262 264.38639519174006 L 482.99336005262 264.34861455242867" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_56__stack1"><path d="M 952.8900614881575 41.48062325447995 L 964.2620339208889 41.48062325447995 L 964.2620339208889 33.88671475288862" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 952.8900614881575 41.48062325447995 L 964.2620339208889 41.48062325447995 L 964.2620339208889 33.88671475288862" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_57__stack1"><path d="M 1021.36747024007 449.51152781760004 L 1068.6310500186314 449.51152781760004 L 1068.6310500186314 438.13955538486863" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1021.36747024007 449.51152781760004 L 1068.6310500186314 449.51152781760004 L 1068.6310500186314 438.13955538486863" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_58__stack1"><path d="M 333.75983477258995 173.71286084438 L 326.20370691030996 173.71286084438 L 326.20370691030996 95.12913107666805 L 414.9882092921 95.12913107666805 L 414.9882092921 102.68525893894804" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 333.75983477258995 173.71286084438 L 326.20370691030996 173.71286084438 L 326.20370691030996 95.12913107666805 L 414.9882092921 95.12913107666805 L 414.9882092921 102.68525893894804" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"><circle cx="499.99464774275" cy="362.6160574013801" r="1.133419179342" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_8__stack1"/><g class="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"><circle cx="464.10304039692" cy="635.392273229688" r="1.133419179342" 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_17__stack1"><circle cx="532.1081911574399" cy="642.948401091968" r="1.133419179342" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="532.1081911574399" cy="635.392273229688" r="1.133419179342" 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_18__stack1"><circle cx="600.11334191796" cy="635.392273229688" r="1.133419179342" 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_19__stack1"><circle cx="668.11849267848" cy="635.392273229688" r="1.133419179342" 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_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"><circle cx="496.21658381161" cy="264.38639519174006" r="1.133419179342" 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_23__stack1"><circle cx="377.2075699807" cy="525.8284192266281" r="1.133419179342" 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_24__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_25__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_26__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_27__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_28__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_29__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_30__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_31__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_32__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_33__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_34__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_35__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_36__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_37__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_38__stack1"><circle cx="1049.70294972362" cy="630.85859651232" r="1.133419179342" 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_39__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_40__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_41__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_42__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_43__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_44__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_45__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_46__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_47__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_48__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_49__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_50__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_51__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_52__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_53__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_54__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_55__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_56__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_57__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_58__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="56.82774862002793" y="241.7180116049" width="36.269413738944024" height="113.34191793420004" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="56.82774862002793" y="241.7180116049" width="36.269413738944024" height="113.34191793420004" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="249.27413946718002" x2="108.209418083532" y2="249.27413946718002" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_0__stack1"><rect x="107.453805297304" y="248.51852668095202" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="248.51852668095202" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="256.83026732946" x2="108.209418083532" y2="256.83026732946" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_1__stack1"><rect x="107.453805297304" y="256.074654543232" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="256.07465454323204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="264.38639519174" x2="108.209418083532" y2="264.38639519174" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_2__stack1"><rect x="107.453805297304" y="263.630782405512" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="263.63078240551204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="271.94252305402006" x2="108.209418083532" y2="271.94252305402006" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_3__stack1"><rect x="107.453805297304" y="271.18691026779203" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="271.18691026779203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="279.4986509163" x2="108.209418083532" y2="279.4986509163" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_4__stack1"><rect x="107.453805297304" y="278.74303813007197" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="278.743038130072" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="287.05477877858004" x2="108.209418083532" y2="287.05477877858004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_5__stack1"><rect x="107.453805297304" y="286.299165992352" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="286.299165992352" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="294.61090664086004" x2="108.209418083532" y2="294.61090664086004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_6__stack1"><rect x="107.453805297304" y="293.855293854632" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="293.855293854632" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="302.16703450314003" x2="108.209418083532" y2="302.16703450314003" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_7__stack1"><rect x="107.453805297304" y="301.411421716912" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="301.411421716912" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="309.72316236542" x2="108.209418083532" y2="309.72316236542" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_8__stack1"><rect x="107.453805297304" y="308.967549579192" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="308.967549579192" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="317.2792902277" x2="108.209418083532" y2="317.2792902277" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_9__stack1"><rect x="107.453805297304" y="316.523677441472" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="316.52367744147205" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="324.83541808998" x2="108.209418083532" y2="324.83541808998" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_10__stack1"><rect x="107.453805297304" y="324.079805303752" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="324.07980530375204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="332.39154595226" x2="108.209418083532" y2="332.39154595226" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_11__stack1"><rect x="107.453805297304" y="331.635933166032" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="331.63593316603203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="339.94767381454" x2="108.209418083532" y2="339.94767381454" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_12__stack1"><rect x="107.453805297304" y="339.19206102831197" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="339.192061028312" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="347.50380167682" x2="108.209418083532" y2="347.50380167682" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_13__stack1"><rect x="107.453805297304" y="346.74818889059196" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="346.748188890592" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_1__stack1"><rect class="component chip sch-component-body" x="189.05998620992796" y="241.7180116049" width="36.269413738944024" height="113.34191793420004" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="189.05998620992796" y="241.7180116049" width="36.269413738944024" height="113.34191793420004" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="249.27413946718002" x2="173.9477304853679" y2="249.27413946718002" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_0__stack1"><rect x="173.1921176991399" y="248.51852668095202" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="248.51852668095202" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="256.83026732946" x2="173.9477304853679" y2="256.83026732946" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_1__stack1"><rect x="173.1921176991399" y="256.074654543232" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="256.07465454323204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="264.38639519174" x2="173.9477304853679" y2="264.38639519174" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_2__stack1"><rect x="173.1921176991399" y="263.630782405512" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="263.63078240551204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="271.94252305402" x2="173.9477304853679" y2="271.94252305402" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_3__stack1"><rect x="173.1921176991399" y="271.186910267792" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="271.186910267792" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="279.4986509163" x2="173.9477304853679" y2="279.4986509163" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_4__stack1"><rect x="173.1921176991399" y="278.74303813007197" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="278.743038130072" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="287.05477877858004" x2="173.9477304853679" y2="287.05477877858004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_5__stack1"><rect x="173.1921176991399" y="286.299165992352" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="286.299165992352" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="294.61090664086" x2="173.9477304853679" y2="294.61090664086" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_6__stack1"><rect x="173.1921176991399" y="293.85529385463195" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="293.855293854632" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="302.16703450314003" x2="173.9477304853679" y2="302.16703450314003" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_7__stack1"><rect x="173.1921176991399" y="301.411421716912" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="301.411421716912" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="309.72316236542" x2="173.9477304853679" y2="309.72316236542" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_8__stack1"><rect x="173.1921176991399" y="308.967549579192" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="308.967549579192" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="317.2792902277" x2="173.9477304853679" y2="317.2792902277" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_9__stack1"><rect x="173.1921176991399" y="316.523677441472" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="316.52367744147205" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="324.83541808998" x2="173.9477304853679" y2="324.83541808998" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_10__stack1"><rect x="173.1921176991399" y="324.079805303752" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="324.079805303752" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="332.39154595226" x2="173.9477304853679" y2="332.39154595226" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_11__stack1"><rect x="173.1921176991399" y="331.635933166032" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="331.635933166032" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="339.94767381454" x2="173.9477304853679" y2="339.94767381454" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_12__stack1"><rect x="173.1921176991399" y="339.19206102831197" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="339.192061028312" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="347.50380167682" x2="173.9477304853679" y2="347.50380167682" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_13__stack1"><rect x="173.1921176991399" y="346.74818889059196" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="346.748188890592" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></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="515.10690346731" y="219.04962801806005" width="102.00772614078005" height="385.36252097627994" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="515.10690346731" y="219.04962801806005" width="102.00772614078005" height="385.36252097627994" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="226.60575588034007" x2="500.750260528978" y2="226.60575588034007" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="226.60575588034007" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="225.85014309411207" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="225.85014309411207" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="234.16188374262006" x2="500.750260528978" y2="234.16188374262006" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="234.16188374262006" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="233.40627095639206" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="233.4062709563921" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="241.71801160490008" x2="500.750260528978" y2="241.71801160490008" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_2__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="241.71801160490008" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="240.96239881867209" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="240.96239881867209" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="249.27413946718005" x2="500.750260528978" y2="249.27413946718005" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_3__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="249.27413946718005" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="248.51852668095205" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="248.51852668095208" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="256.83026732946007" x2="500.750260528978" y2="256.83026732946007" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_4__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="256.83026732946007" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="256.07465454323204" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="256.0746545432321" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="264.38639519174006" x2="499.99464774275" y2="264.38639519174006" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_5__stack1"><rect x="499.23903495652195" y="263.63078240551204" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="263.63078240551204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="271.94252305402006" x2="500.750260528978" y2="271.94252305402006" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_6__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="271.94252305402006" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="271.18691026779203" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="271.1869102677921" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="279.49865091630005" x2="500.750260528978" y2="279.49865091630005" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_7__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="279.49865091630005" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="278.743038130072" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="278.743038130072" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="287.05477877858004" x2="500.750260528978" y2="287.05477877858004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_8__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="287.05477877858004" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="286.299165992352" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="286.2991659923521" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="294.6109066408601" x2="499.99464774275" y2="294.6109066408601" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_9__stack1"><rect x="499.23903495652195" y="293.85529385463207" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="293.85529385463207" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="302.1670345031401" x2="499.99464774275" y2="302.1670345031401" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_10__stack1"><rect x="499.23903495652195" y="301.41142171691206" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="301.41142171691206" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="309.7231623654201" x2="500.750260528978" y2="309.7231623654201" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_11__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="309.7231623654201" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="308.96754957919205" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="308.96754957919205" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="317.2792902277001" x2="500.750260528978" y2="317.2792902277001" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_12__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="317.2792902277001" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="316.52367744147205" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="316.52367744147205" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="324.83541808998007" x2="500.750260528978" y2="324.83541808998007" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_13__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="324.83541808998007" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="324.07980530375204" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="324.0798053037521" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="332.39154595226006" x2="500.750260528978" y2="332.39154595226006" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_14__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="332.39154595226006" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="331.63593316603203" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="331.6359331660321" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="339.94767381454005" x2="500.750260528978" y2="339.94767381454005" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_15__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="339.94767381454005" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="339.192061028312" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="339.1920610283121" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="347.5038016768201" x2="500.750260528978" y2="347.5038016768201" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_16__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="347.5038016768201" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="346.7481888905921" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="346.7481888905921" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="355.0599295391001" x2="500.750260528978" y2="355.0599295391001" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_17__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="355.0599295391001" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="354.30431675287207" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="354.30431675287207" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="362.6160574013801" x2="499.99464774275" y2="362.6160574013801" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_18__stack1"><rect x="499.23903495652195" y="361.86044461515206" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="361.8604446151521" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="370.17218526366014" x2="499.99464774275" y2="370.17218526366014" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_19__stack1"><rect x="499.23903495652195" y="369.4165724774321" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="369.4165724774321" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="377.7283131259401" x2="499.99464774275" y2="377.7283131259401" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_20__stack1"><rect x="499.23903495652195" y="376.97270033971205" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="376.9727003397121" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="385.2844409882201" x2="500.750260528978" y2="385.2844409882201" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_21__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="385.2844409882201" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="384.5288282019921" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="384.5288282019921" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="392.8405688505001" x2="500.750260528978" y2="392.8405688505001" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_22__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="392.8405688505001" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="392.0849560642721" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="392.0849560642721" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="400.3966967127801" x2="500.750260528978" y2="400.3966967127801" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_23__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="400.3966967127801" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="399.6410839265521" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="399.64108392655214" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="407.9528245750601" x2="500.750260528978" y2="407.9528245750601" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_24__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="407.9528245750601" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="407.1972117888321" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="407.19721178883213" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="415.50895243734016" x2="499.99464774275" y2="415.50895243734016" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_25__stack1"><rect x="499.23903495652195" y="414.7533396511121" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="414.7533396511121" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="423.06508029962015" x2="499.99464774275" y2="423.06508029962015" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_26__stack1"><rect x="499.23903495652195" y="422.3094675133921" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="422.3094675133921" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="430.62120816190014" x2="500.750260528978" y2="430.62120816190014" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_27__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="430.62120816190014" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="429.8655953756721" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="429.86559537567217" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="438.17733602418014" x2="500.750260528978" y2="438.17733602418014" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_28__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="438.17733602418014" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="437.4217232379521" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="437.42172323795216" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="445.7334638864602" x2="500.750260528978" y2="445.7334638864602" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_29__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="445.7334638864602" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="444.97785110023216" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="444.97785110023216" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="453.2895917487402" x2="500.750260528978" y2="453.2895917487402" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_30__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="453.2895917487402" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="452.53397896251215" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="452.53397896251215" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="460.8457196110202" x2="500.750260528978" y2="460.8457196110202" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_31__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="460.8457196110202" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="460.09010682479214" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="460.0901068247922" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="468.40184747330017" x2="500.750260528978" y2="468.40184747330017" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_32__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="468.40184747330017" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="467.64623468707214" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="467.6462346870722" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="475.9579753355802" x2="500.750260528978" y2="475.9579753355802" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_33__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="475.9579753355802" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="475.2023625493522" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="475.2023625493522" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="483.5141031978602" x2="500.750260528978" y2="483.5141031978602" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_34__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="483.5141031978602" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="482.7584904116322" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="482.7584904116322" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="491.0702310601402" x2="500.750260528978" y2="491.0702310601402" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_35__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="491.0702310601402" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="490.3146182739122" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="490.3146182739122" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="498.6263589224202" x2="500.750260528978" y2="498.6263589224202" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_36__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="498.6263589224202" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="497.87074613619217" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="497.8707461361922" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="506.18248678470025" x2="500.750260528978" y2="506.18248678470025" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_37__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="506.18248678470025" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="505.4268739984722" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="505.4268739984722" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="513.7386146469802" x2="500.750260528978" y2="513.7386146469802" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_38__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="513.7386146469802" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="512.9830018607522" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="512.9830018607522" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="521.2947425092602" x2="500.750260528978" y2="521.2947425092602" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_39__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="521.2947425092602" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="520.5391297230323" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="520.5391297230323" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="528.8508703715402" x2="500.750260528978" y2="528.8508703715402" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_40__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="528.8508703715402" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="528.0952575853122" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="528.0952575853122" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="536.4069982338202" x2="500.750260528978" y2="536.4069982338202" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_41__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="536.4069982338202" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="535.6513854475922" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="535.6513854475921" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="543.9631260961002" x2="500.750260528978" y2="543.9631260961002" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_42__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="543.9631260961002" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="543.2075133098722" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="543.2075133098722" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="551.5192539583801" x2="500.750260528978" y2="551.5192539583801" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_43__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="551.5192539583801" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="550.7636411721521" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="550.7636411721521" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="559.0753818206601" x2="500.750260528978" y2="559.0753818206601" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_44__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="559.0753818206601" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="558.3197690344322" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="558.319769034432" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="566.6315096829401" x2="500.750260528978" y2="566.6315096829401" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_45__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="566.6315096829401" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="565.8758968967121" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="565.8758968967121" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="574.18763754522" x2="500.750260528978" y2="574.18763754522" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_46__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="574.18763754522" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="573.432024758992" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="573.432024758992" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="581.7437654075001" x2="500.750260528978" y2="581.7437654075001" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_47__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="581.7437654075001" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="580.9881526212721" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="580.9881526212721" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="589.29989326978" x2="499.99464774275" y2="589.29989326978" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_48__stack1"><rect x="499.23903495652195" y="588.544280483552" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="588.544280483552" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="596.8560211320599" x2="499.99464774275" y2="596.8560211320599" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_49__stack1"><rect x="499.23903495652195" y="596.100408345832" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="596.100408345832" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="596.8560211320599" x2="631.471272546422" y2="596.8560211320599" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_50__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="596.8560211320599" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="596.100408345832" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="596.100408345832" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="589.29989326978" x2="631.471272546422" y2="589.29989326978" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_51__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="589.29989326978" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="588.544280483552" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="588.544280483552" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="581.7437654075" x2="631.471272546422" y2="581.7437654075" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_52__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="581.7437654075" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="580.988152621272" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="580.988152621272" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="574.18763754522" x2="632.22688533265" y2="574.18763754522" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_53__stack1"><rect x="631.471272546422" y="573.432024758992" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="573.4320247589919" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="566.63150968294" x2="631.471272546422" y2="566.63150968294" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_54__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="566.63150968294" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="565.875896896712" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="565.875896896712" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="559.0753818206599" x2="631.471272546422" y2="559.0753818206599" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_55__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="559.0753818206599" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="558.3197690344319" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="558.3197690344319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="551.51925395838" x2="631.471272546422" y2="551.51925395838" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_56__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="551.51925395838" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="550.763641172152" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="550.7636411721519" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="543.9631260961" x2="631.471272546422" y2="543.9631260961" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_57__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="543.9631260961" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="543.2075133098721" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="543.207513309872" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="536.40699823382" x2="631.471272546422" y2="536.40699823382" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_58__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="536.40699823382" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="535.651385447592" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="535.651385447592" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="528.8508703715399" x2="631.471272546422" y2="528.8508703715399" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_59__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="528.8508703715399" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="528.095257585312" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="528.095257585312" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="521.29474250926" x2="631.471272546422" y2="521.29474250926" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_60__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="521.29474250926" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="520.539129723032" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="520.5391297230319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="513.73861464698" x2="631.471272546422" y2="513.73861464698" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_61__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="513.73861464698" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="512.983001860752" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="512.983001860752" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="506.18248678469996" x2="631.471272546422" y2="506.18248678469996" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_62__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="506.18248678469996" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="505.42687399847193" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="505.426873998472" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="498.62635892241997" x2="631.471272546422" y2="498.62635892241997" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_63__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="498.62635892241997" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="497.87074613619194" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="497.870746136192" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="491.07023106014" x2="631.471272546422" y2="491.07023106014" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_64__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="491.07023106014" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="490.31461827391195" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="490.31461827391195" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="483.51410319786" x2="631.471272546422" y2="483.51410319786" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_65__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="483.51410319786" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="482.75849041163195" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="482.75849041163195" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="475.95797533557993" x2="631.471272546422" y2="475.95797533557993" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_66__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="475.95797533557993" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="475.2023625493519" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="475.20236254935196" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="468.40184747329994" x2="631.471272546422" y2="468.40184747329994" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_67__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="468.40184747329994" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="467.6462346870719" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="467.6462346870719" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="460.84571961101994" x2="631.471272546422" y2="460.84571961101994" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_68__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="460.84571961101994" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="460.0901068247919" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="460.0901068247919" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="453.2895917487399" x2="631.471272546422" y2="453.2895917487399" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_69__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="453.2895917487399" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="452.53397896251187" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="452.5339789625119" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="445.73346388645996" x2="631.471272546422" y2="445.73346388645996" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_70__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="445.73346388645996" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="444.97785110023193" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="444.97785110023193" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="438.1773360241799" x2="631.471272546422" y2="438.1773360241799" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_71__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="438.1773360241799" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="437.4217232379519" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="437.42172323795194" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="430.6212081618999" x2="632.22688533265" y2="430.6212081618999" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_72__stack1"><rect x="631.471272546422" y="429.8655953756719" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="429.8655953756719" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="423.0650802996199" x2="632.22688533265" y2="423.0650802996199" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_73__stack1"><rect x="631.471272546422" y="422.3094675133919" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="422.3094675133919" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="415.50895243733993" x2="631.471272546422" y2="415.50895243733993" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_74__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="415.50895243733993" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="414.7533396511119" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="414.7533396511119" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="407.9528245750599" x2="631.471272546422" y2="407.9528245750599" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_75__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="407.9528245750599" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="407.19721178883185" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="407.1972117888319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="400.3966967127799" x2="631.471272546422" y2="400.3966967127799" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_76__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="400.3966967127799" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="399.64108392655186" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="399.6410839265519" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="392.8405688504999" x2="631.471272546422" y2="392.8405688504999" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_77__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="392.8405688504999" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="392.08495606427186" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="392.08495606427186" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="385.2844409882199" x2="631.471272546422" y2="385.2844409882199" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_78__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="385.2844409882199" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="384.52882820199187" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="384.52882820199187" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="377.72831312593985" x2="631.471272546422" y2="377.72831312593985" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_79__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="377.72831312593985" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="376.9727003397118" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="376.9727003397119" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="370.17218526365986" x2="631.471272546422" y2="370.17218526365986" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_80__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="370.17218526365986" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="369.4165724774318" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="369.4165724774319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="362.61605740137986" x2="631.471272546422" y2="362.61605740137986" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_81__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="362.61605740137986" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="361.86044461515183" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="361.86044461515183" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="355.05992953909987" x2="631.471272546422" y2="355.05992953909987" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_82__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="355.05992953909987" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="354.30431675287184" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="354.30431675287184" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="347.5038016768198" x2="631.471272546422" y2="347.5038016768198" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_83__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="347.5038016768198" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="346.7481888905918" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="346.74818889059185" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="339.9476738145398" x2="631.471272546422" y2="339.9476738145398" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_84__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="339.9476738145398" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="339.1920610283118" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="339.19206102831185" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="332.39154595225983" x2="631.471272546422" y2="332.39154595225983" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_85__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="332.39154595225983" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="331.6359331660318" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="331.6359331660318" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="324.83541808997984" x2="631.471272546422" y2="324.83541808997984" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_86__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="324.83541808997984" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="324.0798053037518" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="324.0798053037518" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="317.2792902276998" x2="631.471272546422" y2="317.2792902276998" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_87__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="317.2792902276998" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="316.52367744147176" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="316.5236774414718" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="309.7231623654198" x2="631.471272546422" y2="309.7231623654198" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_88__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="309.7231623654198" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="308.96754957919177" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="308.9675495791918" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="302.1670345031398" x2="631.471272546422" y2="302.1670345031398" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_89__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="302.1670345031398" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="301.4114217169118" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="301.41142171691183" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="294.6109066408598" x2="631.471272546422" y2="294.6109066408598" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_90__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="294.6109066408598" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="293.8552938546318" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="293.85529385463184" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="287.0547787785798" x2="631.471272546422" y2="287.0547787785798" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_91__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="287.0547787785798" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="286.2991659923518" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="286.29916599235185" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="279.4986509162999" x2="631.471272546422" y2="279.4986509162999" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_92__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="279.4986509162999" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="278.74303813007185" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="278.7430381300719" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="271.94252305401994" x2="631.471272546422" y2="271.94252305401994" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_93__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="271.94252305401994" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="271.1869102677919" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="271.1869102677919" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="264.3863951917399" x2="631.471272546422" y2="264.3863951917399" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_94__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="264.3863951917399" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="263.63078240551187" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="263.6307824055119" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="256.83026732945996" x2="631.471272546422" y2="256.83026732945996" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_95__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="256.83026732945996" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="256.07465454323193" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="256.074654543232" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="249.27413946718" x2="631.471272546422" y2="249.27413946718" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_96__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="249.27413946718" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="248.518526680952" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="248.518526680952" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="241.7180116049" x2="631.471272546422" y2="241.7180116049" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_97__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="241.7180116049" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="240.962398818672" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="240.96239881867203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="234.16188374262003" x2="632.22688533265" y2="234.16188374262003" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_98__stack1"><rect x="631.471272546422" y="233.40627095639204" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="233.40627095639206" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="226.60575588034007" x2="632.22688533265" y2="226.60575588034007" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_99__stack1"><rect x="631.471272546422" y="225.85014309411207" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="225.85014309411207" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_3__stack1"><rect class="component chip sch-component-body" x="108.96503086975997" y="445.73346388646" width="45.33676717367996" height="83.11740648508004" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="108.96503086975997" y="445.73346388646" width="45.33676717367996" height="83.11740648508004" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="108.96503086975997" y1="453.28959174874" x2="93.85277514519998" y2="453.28959174874" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_0__stack1"><rect x="93.09716235897199" y="452.533978962512" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="101.40890300747992" y="452.53397896251204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="108.96503086975997" y1="460.84571961102" x2="94.60838793142796" y2="460.84571961102" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="93.85277514519998" cy="460.84571961102" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="93.09716235897199" y="460.090106824792" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="101.40890300747992" y="460.09010682479203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="108.96503086975997" y1="468.4018474733" x2="94.60838793142796" y2="468.4018474733" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_2__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="93.85277514519998" cy="468.4018474733" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="93.09716235897199" y="467.64623468707197" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="101.40890300747992" y="467.646234687072" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="108.96503086975997" y1="475.95797533558004" x2="94.60838793142796" y2="475.95797533558004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_3__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="93.85277514519998" cy="475.95797533558004" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="93.09716235897199" y="475.202362549352" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="101.40890300747992" y="475.202362549352" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="108.96503086975997" y1="483.51410319786004" x2="94.60838793142796" y2="483.51410319786004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_4__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="93.85277514519998" cy="483.51410319786004" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="93.09716235897199" y="482.758490411632" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="101.40890300747992" y="482.758490411632" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="108.96503086975997" y1="491.07023106014003" x2="94.60838793142796" y2="491.07023106014003" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_5__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="93.85277514519998" cy="491.07023106014003" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="93.09716235897199" y="490.314618273912" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="101.40890300747992" y="490.314618273912" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="108.96503086975997" y1="498.62635892242" x2="94.60838793142796" y2="498.62635892242" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_6__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="93.85277514519998" cy="498.62635892242" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="93.09716235897199" y="497.870746136192" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="101.40890300747992" y="497.870746136192" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="108.96503086975997" y1="506.1824867847" x2="94.60838793142796" y2="506.1824867847" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_7__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="93.85277514519998" cy="506.1824867847" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="93.09716235897199" y="505.426873998472" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="101.40890300747992" y="505.42687399847205" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="108.96503086975997" y1="513.7386146469801" x2="94.60838793142796" y2="513.7386146469801" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_8__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="93.85277514519998" cy="513.7386146469801" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="93.09716235897199" y="512.9830018607521" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="101.40890300747992" y="512.983001860752" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="108.96503086975997" y1="521.29474250926" x2="93.85277514519998" y2="521.29474250926" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_9__stack1"><rect x="93.09716235897199" y="520.539129723032" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="101.40890300747992" y="520.539129723032" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="154.30179804343993" y1="521.29474250926" x2="168.658440981772" y2="521.29474250926" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_10__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="169.41405376799997" cy="521.29474250926" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="168.65844098177197" y="520.539129723032" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="161.85792590571998" y="520.539129723032" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="154.30179804343993" y1="513.7386146469801" x2="168.658440981772" y2="513.7386146469801" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_11__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="169.41405376799997" cy="513.7386146469801" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="168.65844098177197" y="512.9830018607521" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="161.85792590571998" y="512.983001860752" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="154.30179804343993" y1="506.1824867847" x2="168.658440981772" y2="506.1824867847" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_12__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="169.41405376799997" cy="506.1824867847" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="168.65844098177197" y="505.426873998472" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="161.85792590571998" y="505.42687399847205" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="154.30179804343993" y1="498.62635892242" x2="168.658440981772" y2="498.62635892242" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_13__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="169.41405376799997" cy="498.62635892242" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="168.65844098177197" y="497.870746136192" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="161.85792590571998" y="497.870746136192" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="154.30179804343993" y1="491.07023106014003" x2="168.658440981772" y2="491.07023106014003" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_14__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="169.41405376799997" cy="491.07023106014003" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="168.65844098177197" y="490.314618273912" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="161.85792590571998" y="490.314618273912" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="154.30179804343993" y1="483.51410319786004" x2="168.658440981772" y2="483.51410319786004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_15__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="169.41405376799997" cy="483.51410319786004" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="168.65844098177197" y="482.758490411632" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="161.85792590571998" y="482.758490411632" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="154.30179804343993" y1="475.95797533558004" x2="168.658440981772" y2="475.95797533558004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_16__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="169.41405376799997" cy="475.95797533558004" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="168.65844098177197" y="475.202362549352" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="161.85792590571998" y="475.202362549352" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="154.30179804343993" y1="468.4018474733" x2="168.658440981772" y2="468.4018474733" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_17__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="169.41405376799997" cy="468.4018474733" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="168.65844098177197" y="467.64623468707197" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="161.85792590571998" y="467.646234687072" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="154.30179804343993" y1="460.84571961102" x2="169.41405376799997" y2="460.84571961102" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_18__stack1"><rect x="168.65844098177197" y="460.090106824792" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="161.85792590571998" y="460.09010682479203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="154.30179804343993" y1="453.28959174874" x2="169.41405376799997" y2="453.28959174874" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_19__stack1"><rect x="168.65844098177197" y="452.533978962512" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="161.85792590571998" y="452.53397896251204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></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="227.97404470067" y="485.40313516343" width="44.01444479778098" height="3.778063931140025" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="227.97404470067" y="485.40313516343" width="44.01444479778098" height="3.778063931140025" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="244.97533239079996" y1="485.40313516343" x2="244.97533239079996" y2="472.935524190668" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_4_0__stack1"><rect x="244.21971960457196" y="472.17991140443996" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="244.219719604572" y="479.169329677049" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 244.219719604572 479.169329677049)"></text><line class="component-pin sch-component-pin sch-port-line" x1="244.97533239079996" y1="489.18119909457005" x2="244.97533239079996" y2="500.89319728110405" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_4_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="244.97533239079996" cy="501.648810067332" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="244.21971960457196" y="500.893197281104" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="244.219719604572" y="495.41500458095106" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 244.219719604572 495.41500458095106)"></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="379.09660194626997" y="655.41601206473" width="53.08179823251703" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="379.09660194626997" y="655.41601206473" width="53.08179823251703" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="396.09788963639994" y1="655.41601206473" x2="396.09788963639994" y2="642.948401091968" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_5_0__stack1"><rect x="395.3422768501719" y="642.19278830574" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="395.34227685017197" y="649.182206578349" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 395.34227685017197 649.182206578349)"></text><line class="component-pin sch-component-pin sch-port-line" x1="396.09788963639994" y1="659.19407599587" x2="396.09788963639994" y2="670.906074182404" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_5_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="396.09788963639994" cy="671.661686968632" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="395.3422768501719" y="670.906074182404" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="395.34227685017197" y="665.427881482251" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 395.34227685017197 665.427881482251)"></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="447.10175270678997" y="655.41601206473" width="53.08179823251703" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="447.10175270678997" y="655.41601206473" width="53.08179823251703" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="464.10304039692" y1="655.41601206473" x2="464.10304039692" y2="642.948401091968" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_6_0__stack1"><rect x="463.34742761069197" y="642.19278830574" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="463.34742761069197" y="649.182206578349" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 463.34742761069197 649.182206578349)"></text><line class="component-pin sch-component-pin sch-port-line" x1="464.10304039692" y1="659.19407599587" x2="464.10304039692" y2="670.906074182404" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_6_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="464.10304039692" cy="671.661686968632" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="463.34742761069197" y="670.906074182404" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="463.34742761069197" y="665.427881482251" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 463.34742761069197 665.427881482251)"></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="515.10690346731" y="655.41601206473" width="53.08179823251703" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="515.10690346731" y="655.41601206473" width="53.08179823251703" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="532.1081911574399" y1="655.41601206473" x2="532.1081911574399" y2="642.948401091968" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_7_0__stack1"><rect x="531.352578371212" y="642.19278830574" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="531.352578371212" y="649.182206578349" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 531.352578371212 649.182206578349)"></text><line class="component-pin sch-component-pin sch-port-line" x1="532.1081911574399" y1="659.19407599587" x2="532.1081911574399" y2="670.906074182404" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_7_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="532.1081911574399" cy="671.661686968632" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="531.352578371212" y="670.906074182404" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="531.352578371212" y="665.427881482251" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 531.352578371212 665.427881482251)"></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="583.11205422783" y="655.41601206473" width="53.08179823251703" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="583.11205422783" y="655.41601206473" width="53.08179823251703" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="600.11334191796" y1="655.41601206473" x2="600.11334191796" y2="642.948401091968" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_8_0__stack1"><rect x="599.3577291317321" y="642.19278830574" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="599.357729131732" y="649.182206578349" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 599.357729131732 649.182206578349)"></text><line class="component-pin sch-component-pin sch-port-line" x1="600.11334191796" y1="659.19407599587" x2="600.11334191796" y2="670.906074182404" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_8_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="600.11334191796" cy="671.661686968632" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="599.3577291317321" y="670.906074182404" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="599.357729131732" y="665.427881482251" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 599.357729131732 665.427881482251)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_9__stack1"><rect class="component chip sch-component-body" x="651.11720498835" y="655.41601206473" width="53.08179823251703" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="651.11720498835" y="655.41601206473" width="53.08179823251703" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="668.11849267848" y1="655.41601206473" x2="668.11849267848" y2="642.948401091968" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_9_0__stack1"><rect x="667.3628798922521" y="642.19278830574" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="667.362879892252" y="649.182206578349" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 667.362879892252 649.182206578349)"></text><line class="component-pin sch-component-pin sch-port-line" x1="668.11849267848" y1="659.19407599587" x2="668.11849267848" y2="670.906074182404" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_9_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="668.11849267848" cy="671.661686968632" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="667.3628798922521" y="670.906074182404" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="667.362879892252" y="665.427881482251" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 667.362879892252 665.427881482251)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_10__stack1"><rect class="component chip sch-component-body" x="719.12235574887" y="655.41601206473" width="66.68282838462108" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="719.12235574887" y="655.41601206473" width="66.68282838462108" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="736.123643439" y1="655.41601206473" x2="736.123643439" y2="642.948401091968" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_10_0__stack1"><rect x="735.3680306527721" y="642.19278830574" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="735.368030652772" y="649.182206578349" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 735.368030652772 649.182206578349)"></text><line class="component-pin sch-component-pin sch-port-line" x1="736.123643439" y1="659.19407599587" x2="736.123643439" y2="670.906074182404" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_10_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="736.123643439" cy="671.661686968632" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="735.3680306527721" y="670.906074182404" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="735.368030652772" y="665.427881482251" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 735.368030652772 665.427881482251)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_11__stack1"><rect class="component chip sch-component-body" x="375.31853801513" y="474.446749763124" width="3.778063931139968" height="25.690834731752034" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="375.31853801513" y="474.446749763124" width="3.778063931139968" height="25.690834731752034" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="375.31853801513" y1="487.292167129" x2="363.60653982859594" y2="487.292167129" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_11_0__stack1"><rect x="362.8509270423679" y="486.536554342772" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="369.462538921863" y="486.53655434277204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="379.09660194626997" y1="487.292167129" x2="390.80860013280403" y2="487.292167129" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_11_1__stack1"><rect x="390.052987346576" y="486.536554342772" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="384.95260103953694" y="486.53655434277204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_12__stack1"><rect class="component chip sch-component-body" x="360.20628229056996" y="545.85215806167" width="71.21650510198901" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="360.20628229056996" y="545.85215806167" width="71.21650510198901" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="377.2075699807" y1="545.85215806167" x2="377.2075699807" y2="533.384547088908" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_12_0__stack1"><rect x="376.45195719447196" y="532.62893430268" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.451957194472" y="539.618352575289" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 376.451957194472 539.618352575289)"></text><line class="component-pin sch-component-pin sch-port-line" x1="377.2075699807" y1="549.63022199281" x2="377.2075699807" y2="561.342220179344" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_12_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="377.2075699807" cy="562.097832965572" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="376.45195719447196" y="561.342220179344" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.451957194472" y="555.864027479191" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 376.451957194472 555.864027479191)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_13__stack1"><rect class="component chip sch-component-body" x="360.20628229057" y="598.74505309763" width="62.14915166725302" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="360.20628229057" y="598.74505309763" width="62.14915166725302" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="377.2075699807" y1="598.74505309763" x2="377.2075699807" y2="586.277442124868" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_13_0__stack1"><rect x="376.45195719447196" y="585.52182933864" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.451957194472" y="592.511247611249" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 376.451957194472 592.511247611249)"></text><line class="component-pin sch-component-pin sch-port-line" x1="377.2075699807" y1="602.52311702877" x2="377.2075699807" y2="614.2351152153041" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_13_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="377.2075699807" cy="614.990728001532" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="376.45195719447196" y="614.2351152153041" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.451957194472" y="608.756922515151" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 376.451957194472 608.756922515151)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_14__stack1"><rect class="component chip sch-component-body" x="756.90299506027" y="485.40313516343" width="53.08179823251703" height="3.778063931140025" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="756.90299506027" y="485.40313516343" width="53.08179823251703" height="3.778063931140025" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="773.9042827504" y1="485.40313516343" x2="773.9042827504" y2="473.691136976896" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_14_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="773.9042827504" cy="472.935524190668" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="773.148669964172" y="472.17991140443996" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="773.148669964172" y="479.169329677049" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 773.148669964172 479.169329677049)"></text><line class="component-pin sch-component-pin sch-port-line" x1="773.9042827504" y1="489.18119909457005" x2="773.9042827504" y2="500.89319728110405" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_14_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="773.9042827504" cy="501.648810067332" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="773.148669964172" y="500.893197281104" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="773.148669964172" y="495.41500458095106" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 773.148669964172 495.41500458095106)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_15__stack1"><rect class="component chip sch-component-body" x="719.12235574887" y="409.84185654063003" width="53.08179823251703" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="719.12235574887" y="409.84185654063003" width="53.08179823251703" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="736.123643439" y1="409.84185654063003" x2="736.123643439" y2="397.374245567868" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_15_0__stack1"><rect x="735.3680306527721" y="396.61863278164" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="735.368030652772" y="403.608051054249" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 735.368030652772 403.608051054249)"></text><line class="component-pin sch-component-pin sch-port-line" x1="736.123643439" y1="413.61992047177" x2="736.123643439" y2="425.331918658304" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_15_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="736.123643439" cy="426.08753144453203" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="735.3680306527721" y="425.331918658304" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="735.368030652772" y="419.853725958151" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 735.368030652772 419.853725958151)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_16__stack1"><rect class="component chip sch-component-body" x="692.67590823089" y="334.28057791783" width="53.08179823251703" height="3.778063931140025" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="692.67590823089" y="334.28057791783" width="53.08179823251703" height="3.778063931140025" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="709.67719592102" y1="334.28057791783" x2="709.67719592102" y2="322.568579731296" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_16_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="709.67719592102" cy="321.812966945068" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="708.9215831347921" y="321.05735415884" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="708.921583134792" y="328.04677243144897" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 708.921583134792 328.04677243144897)"></text><line class="component-pin sch-component-pin sch-port-line" x1="709.67719592102" y1="338.05864184897" x2="709.67719592102" y2="349.770640035504" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_16_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="709.67719592102" cy="350.52625282173204" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="708.9215831347921" y="349.770640035504" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="708.921583134792" y="344.292447335351" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 708.921583134792 344.292447335351)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_17__stack1"><rect class="component chip sch-component-body" x="722.90041968001" y="270.05349108845" width="44.014444797780925" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="722.90041968001" y="270.05349108845" width="44.014444797780925" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="739.90170737014" y1="270.05349108845" x2="739.90170737014" y2="257.58588011568804" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_17_0__stack1"><rect x="739.146094583912" y="256.83026732946" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="739.146094583912" y="263.819685602069" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 739.146094583912 263.819685602069)"></text><line class="component-pin sch-component-pin sch-port-line" x1="739.90170737014" y1="273.83155501959" x2="739.90170737014" y2="285.543553206124" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_17_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="739.90170737014" cy="286.299165992352" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="739.146094583912" y="285.543553206124" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="739.146094583912" y="280.065360505971" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 739.146094583912 280.065360505971)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_18__stack1"><rect class="component chip sch-component-body" x="766.34815488812" y="209.98227458332403" width="15.112255724559986" height="25.690834731751977" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="766.34815488812" y="209.98227458332403" width="15.112255724559986" height="25.690834731751977" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="766.34815488812" y1="222.82769194920002" x2="751.991511949788" y2="222.82769194920002" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_18_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="751.23589916356" cy="222.82769194920002" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="750.480286377332" y="222.07207916297202" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="758.7920270258401" y="222.07207916297202" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="781.46041061268" y1="222.82769194920002" x2="796.57266633724" y2="222.82769194920002" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_18_1__stack1"><rect x="795.817053551012" y="222.07207916297202" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="789.01653847496" y="222.07207916297202" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_19__stack1"><rect class="component chip sch-component-body" x="348.87209049715" y="166.1567329821" width="56.67095896709998" height="22.66838358683998" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="348.87209049715" y="166.1567329821" width="56.67095896709998" height="22.66838358683998" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="348.87209049715" y1="173.71286084438" x2="333.75983477258995" y2="173.71286084438" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_19_0__stack1"><rect x="333.0042219863619" y="172.957248058152" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="341.31596263486995" y="172.95724805815203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="348.87209049715" y1="181.26898870666" x2="333.75983477258995" y2="181.26898870666" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_19_1__stack1"><rect x="333.0042219863619" y="180.513375920432" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="341.31596263486995" y="180.513375920432" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="405.54304946425" y1="181.26898870666" x2="419.899692402582" y2="181.26898870666" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_19_2__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="420.65530518880996" cy="181.26898870666" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="419.89969240258193" y="180.513375920432" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="413.09917732653" y="180.513375920432" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="405.54304946425" y1="173.71286084438" x2="420.65530518880996" y2="173.71286084438" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_19_3__stack1"><rect x="419.89969240258193" y="172.957248058152" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="413.09917732653" y="172.95724805815203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_20__stack1"><rect class="component chip sch-component-body" x="602.00237388353" y="153.31131561622402" width="3.778063931139968" height="25.690834731751977" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="602.00237388353" y="153.31131561622402" width="3.778063931139968" height="25.690834731751977" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="602.00237388353" y1="166.1567329821" x2="593.312826841908" y2="166.1567329821" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_20_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="592.55721405568" cy="166.1567329821" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="591.801601269452" y="165.401120195872" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="597.279793969605" y="165.401120195872" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="605.78043781467" y1="166.1567329821" x2="615.22559764252" y2="166.1567329821" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_20_1__stack1"><rect x="614.4699848562921" y="165.401120195872" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="610.503017728595" y="165.401120195872" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_21__stack1"><rect class="component chip sch-component-body" x="397.98692160197" y="115.15286991171001" width="57.61547494988503" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="397.98692160197" y="115.15286991171001" width="57.61547494988503" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="414.9882092921" y1="115.15286991171001" x2="414.9882092921" y2="102.68525893894804" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_21_0__stack1"><rect x="414.232596505872" y="101.92964615272004" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="414.23259650587204" y="108.919064425329" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 414.23259650587204 108.919064425329)"></text><line class="component-pin sch-component-pin sch-port-line" x1="414.9882092921" y1="118.93093384284998" x2="414.9882092921" y2="130.64293202938404" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_21_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="414.9882092921" cy="131.398544815612" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="414.232596505872" y="130.642932029384" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="414.23259650587204" y="125.164739329231" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 414.23259650587204 125.164739329231)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_22__stack1"><rect class="component chip sch-component-body" x="549.10947884757" y="115.15286991171001" width="62.14915166725302" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="549.10947884757" y="115.15286991171001" width="62.14915166725302" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="566.1107665377" y1="115.15286991171001" x2="566.1107665377" y2="102.68525893894804" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_22_0__stack1"><rect x="565.355153751472" y="101.92964615272004" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="565.355153751472" y="108.919064425329" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 565.355153751472 108.919064425329)"></text><line class="component-pin sch-component-pin sch-port-line" x1="566.1107665377" y1="118.93093384284998" x2="566.1107665377" y2="130.64293202938404" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_22_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="566.1107665377" cy="131.398544815612" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="565.355153751472" y="130.642932029384" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="565.355153751472" y="125.164739329231" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 565.355153751472 125.164739329231)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_23__stack1"><rect class="component chip sch-component-body" x="919.35974409929" y="434.39927209304" width="86.89547041622006" height="30.22451144912003" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="919.35974409929" y="434.39927209304" width="86.89547041622006" height="30.22451144912003" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="919.35974409929" y1="441.95539995532" x2="905.003101160958" y2="441.95539995532" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_23_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="904.24748837473" cy="441.95539995532" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="903.491875588502" y="441.19978716909196" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="911.8036162370099" y="441.199787169092" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="919.35974409929" y1="449.51152781760004" x2="904.24748837473" y2="449.51152781760004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_23_1__stack1"><rect x="903.491875588502" y="448.755915031372" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="911.8036162370099" y="448.755915031372" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="919.35974409929" y1="457.06765567988003" x2="905.003101160958" y2="457.06765567988003" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_23_2__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="904.24748837473" cy="457.06765567988003" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="903.491875588502" y="456.312042893652" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="911.8036162370099" y="456.312042893652" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1006.25521451551" y1="457.06765567988003" x2="1020.611857453842" y2="457.06765567988003" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_23_3__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="1021.36747024007" cy="457.06765567988003" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="1020.611857453842" y="456.312042893652" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1013.8113423777901" y="456.312042893652" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1006.25521451551" y1="449.51152781760004" x2="1021.36747024007" y2="449.51152781760004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_23_4__stack1"><rect x="1020.611857453842" y="448.755915031372" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1013.8113423777901" y="448.755915031372" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1006.25521451551" y1="441.95539995532" x2="1020.611857453842" y2="441.95539995532" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_23_5__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="1021.36747024007" cy="441.95539995532" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="1020.611857453842" y="441.19978716909196" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1013.8113423777901" y="441.199787169092" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_24__stack1"><rect class="component chip sch-component-body" x="1092.3950721455021" y="114.79564074379698" width="5.28928950359591" height="27.16090585380607" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="1092.3950721455021" y="114.79564074379698" width="5.28928950359591" height="27.16090585380607" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="1092.3950721455021" y1="130.26512563627" x2="1078.0384292071699" y2="130.26512563627" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_24_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="1077.282816420942" cy="130.26512563627" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="1076.527203634714" y="129.509512850042" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1084.838944283222" y="129.50951285004203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1097.684361649098" y1="130.26512563627" x2="1112.7966173736581" y2="130.26512563627" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_24_1__stack1"><rect x="1112.04100458743" y="129.509512850042" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1105.2404895113782" y="129.50951285004203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_25__stack1"><rect class="component chip sch-component-body" x="995.2988291152041" y="115.530676304824" width="10.578579007191934" height="25.690834731751977" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="995.2988291152041" y="115.530676304824" width="10.578579007191934" height="25.690834731751977" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="995.2988291152041" y1="128.37609367070002" x2="980.942186176872" y2="128.37609367070002" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_25_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="980.1865733906441" cy="128.37609367070002" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="979.4309606044161" y="127.62048088447202" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="987.742701252924" y="127.62048088447204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1005.877408122396" y1="128.37609367070002" x2="1020.234051060728" y2="128.37609367070002" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_25_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="1020.989663846956" cy="128.37609367070002" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="1020.234051060728" y="127.62048088447202" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1013.4335359846759" y="127.62048088447204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_26__stack1"><rect class="component chip sch-component-body" x="884.6015559328021" y="152.576280055197" width="5.28928950359591" height="27.160905853806014" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="884.6015559328021" y="152.576280055197" width="5.28928950359591" height="27.160905853806014" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="884.6015559328021" y1="168.04576494767" x2="870.24491299447" y2="168.04576494767" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_26_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="869.489300208242" cy="168.04576494767" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="868.733687422014" y="167.290152161442" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="877.0454280705219" y="167.29015216144202" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="889.890845436398" y1="168.04576494767" x2="905.0031011609581" y2="168.04576494767" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_26_1__stack1"><rect x="904.2474883747301" y="167.290152161442" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="897.4469732986781" y="167.29015216144202" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_27__stack1"><rect class="component chip sch-component-body" x="976.4085094595041" y="153.31131561622402" width="10.57857900719182" height="25.690834731751977" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="976.4085094595041" y="153.31131561622402" width="10.57857900719182" height="25.690834731751977" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="976.4085094595041" y1="166.1567329821" x2="961.296253734944" y2="166.1567329821" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_27_0__stack1"><rect x="960.540640948716" y="165.401120195872" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="968.8523815972239" y="165.401120195872" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="986.9870884666959" y1="166.1567329821" x2="1002.099344191256" y2="166.1567329821" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_27_1__stack1"><rect x="1001.343731405028" y="165.401120195872" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="994.543216328976" y="165.401120195872" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_28__stack1"><rect class="component chip sch-component-body" x="964.69651127297" y="251.16317143275" width="48.54812151514898" height="3.7780639311399966" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="964.69651127297" y="251.16317143275" width="48.54812151514898" height="3.7780639311399966" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="981.6977989631" y1="251.16317143275" x2="981.6977989631" y2="238.695560459988" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_28_0__stack1"><rect x="980.942186176872" y="237.93994767376" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="980.942186176872" y="244.92936594636902" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 980.942186176872 244.92936594636902)"></text><line class="component-pin sch-component-pin sch-port-line" x1="981.6977989631" y1="254.94123536389" x2="981.6977989631" y2="266.65323355042403" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_28_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="981.6977989631" cy="267.408846336652" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="980.942186176872" y="266.653233550424" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="980.942186176872" y="261.175040850271" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 980.942186176872 261.175040850271)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_29__stack1"><rect class="component chip sch-component-body" x="912.2758742284025" y="33.924495392200015" width="25.501931535195126" height="37.780639311399966" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="912.2758742284025" y="33.924495392200015" width="25.501931535195126" height="37.780639311399966" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="937.7778057635976" y1="41.48062325447995" x2="952.8900614881575" y2="41.48062325447995" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_29_0__stack1"><rect x="952.1344487019295" y="40.72501046825195" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="945.3339336258775" y="40.72501046825198" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="937.7778057635976" y1="49.03675111676" x2="952.1344487019296" y2="49.03675111676" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_29_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="952.8900614881575" cy="49.03675111676" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="952.1344487019295" y="48.281138330532" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="945.3339336258775" y="48.28113833053203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="937.7778057635976" y1="56.592878979039995" x2="952.8900614881575" y2="56.592878979039995" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_29_2__stack1"><rect x="952.1344487019295" y="55.837266192811995" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="945.3339336258775" y="55.837266192812024" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="937.7778057635976" y1="64.14900684132004" x2="952.1344487019296" y2="64.14900684132004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_29_3__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="952.8900614881575" cy="64.14900684132004" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="952.1344487019295" y="63.393394055092045" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="945.3339336258775" y="63.39339405509202" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_30__stack1"><rect class="component chip sch-component-body" x="876.3842668825725" y="589.29989326978" width="59.504506915454954" height="98.22966220963997" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="876.3842668825725" y="589.29989326978" width="59.504506915454954" height="98.22966220963997" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="596.85602113206" x2="951.0010295225875" y2="596.85602113206" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_0__stack1"><rect x="950.2454167363595" y="596.1004083458321" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="596.1004083458321" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="604.41214899434" x2="951.0010295225875" y2="604.41214899434" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_1__stack1"><rect x="950.2454167363595" y="603.656536208112" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="603.656536208112" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="611.96827685662" x2="951.0010295225875" y2="611.96827685662" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_2__stack1"><rect x="950.2454167363595" y="611.2126640703921" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="611.2126640703921" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="619.5244047189001" x2="951.0010295225875" y2="619.5244047189001" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_3__stack1"><rect x="950.2454167363595" y="618.7687919326721" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="618.768791932672" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="679.97342761714" x2="950.2454167363595" y2="679.97342761714" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_4__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="951.0010295225875" cy="679.97342761714" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="950.2454167363595" y="679.2178148309121" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="679.217814830912" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="657.3050440303" x2="950.2454167363595" y2="657.3050440303" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_5__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="951.0010295225875" cy="657.3050440303" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="950.2454167363595" y="656.549431244072" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="656.549431244072" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="649.7489161680201" x2="951.0010295225875" y2="649.7489161680201" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_6__stack1"><rect x="950.2454167363595" y="648.9933033817921" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="648.993303381792" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="627.08053258118" x2="951.0010295225875" y2="627.08053258118" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_7__stack1"><rect x="950.2454167363595" y="626.324919794952" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="626.324919794952" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="642.19278830574" x2="951.0010295225875" y2="642.19278830574" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_8__stack1"><rect x="950.2454167363595" y="641.437175519512" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="641.437175519512" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="634.6366604434601" x2="951.0010295225875" y2="634.6366604434601" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_9__stack1"><rect x="950.2454167363595" y="633.8810476572321" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="633.8810476572321" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="672.4172997548601" x2="950.2454167363595" y2="672.4172997548601" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_10__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="951.0010295225875" cy="672.4172997548601" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="950.2454167363595" y="671.6616869686321" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="671.661686968632" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="664.86117189258" x2="950.2454167363595" y2="664.86117189258" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_11__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="951.0010295225875" cy="664.86117189258" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="950.2454167363595" y="664.1055591063521" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="664.1055591063521" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_31__stack1"><rect class="component chip sch-component-body" x="885.3571687190299" y="531.117708730224" width="3.7780639311401956" height="25.690834731752034" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="885.3571687190299" y="531.117708730224" width="3.7780639311401956" height="25.690834731752034" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="885.3571687190299" y1="543.9631260961" x2="876.667621677408" y2="543.9631260961" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_31_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="875.91200889118" cy="543.9631260961" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="875.156396104952" y="543.2075133098721" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="880.634588805105" y="543.207513309872" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="889.1352326501701" y1="543.9631260961" x2="898.58039247802" y2="543.9631260961" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_31_1__stack1"><rect x="897.8247796917921" y="543.2075133098721" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="893.857812564095" y="543.207513309872" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_32__stack1"><rect class="component chip sch-component-body" x="1017.5894063089299" y="531.117708730224" width="3.778063931140082" height="25.690834731752034" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="1017.5894063089299" y="531.117708730224" width="3.778063931140082" height="25.690834731752034" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="1017.5894063089299" y1="543.9631260961" x2="1008.899859267308" y2="543.9631260961" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_32_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="1008.14424648108" cy="543.9631260961" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="1007.388633694852" y="543.2075133098721" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1012.866826395005" y="543.207513309872" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1021.36747024007" y1="543.9631260961" x2="1030.81263006792" y2="543.9631260961" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_32_1__stack1"><rect x="1030.057017281692" y="543.2075133098721" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1026.090050153995" y="543.207513309872" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_33__stack1"><rect class="component chip sch-component-body" x="1072.3713333104602" y="627.08053258118" width="45.336767173679846" height="22.668383586840037" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="1072.3713333104602" y="627.08053258118" width="45.336767173679846" height="22.668383586840037" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="1072.3713333104602" y1="630.85859651232" x2="1057.2590775859" y2="630.85859651232" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_33_0__stack1"><rect x="1056.503464799672" y="630.102983726092" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1064.81520544818" y="630.102983726092" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1072.3713333104602" y1="638.4147243746" x2="1057.2590775859" y2="638.4147243746" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_33_1__stack1"><rect x="1056.503464799672" y="637.6591115883721" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1064.81520544818" y="637.6591115883721" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1072.3713333104602" y1="645.9708522368801" x2="1057.2590775859" y2="645.9708522368801" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_33_2__stack1"><rect x="1056.503464799672" y="645.2152394506521" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1064.81520544818" y="645.215239450652" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1117.70810048414" y1="642.19278830574" x2="1132.064743422472" y2="642.19278830574" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_33_3__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="1132.8203562087" cy="642.19278830574" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="1132.064743422472" y="641.437175519512" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1125.2642283464202" y="641.437175519512" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1117.70810048414" y1="634.6366604434601" x2="1132.8203562087" y2="634.6366604434601" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_33_4__stack1"><rect x="1132.064743422472" y="633.8810476572321" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1125.2642283464202" y="633.8810476572321" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_34__stack1"><rect class="component chip sch-component-body" x="983.58683092867" y="749.86761034323" width="57.615474949884856" height="3.778063931140082" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="983.58683092867" y="749.86761034323" width="57.615474949884856" height="3.778063931140082" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="1000.5881186188001" y1="749.86761034323" x2="1000.5881186188001" y2="738.1556121566961" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_34_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="1000.5881186188001" cy="737.3999993704681" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="999.8325058325721" y="736.6443865842401" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="999.832505832572" y="743.6338048568491" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 999.832505832572 743.6338048568491)"></text><line class="component-pin sch-component-pin sch-port-line" x1="1000.5881186188001" y1="753.6456742743701" x2="1000.5881186188001" y2="765.357672460904" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_34_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="1000.5881186188001" cy="766.113285247132" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="999.8325058325721" y="765.357672460904" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="999.832505832572" y="759.8794797607511" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 999.832505832572 759.8794797607511)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_35__stack1"><rect class="component chip sch-component-body" x="1096.9287488628702" y="749.86761034323" width="62.14915166725268" height="3.778063931140082" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="1096.9287488628702" y="749.86761034323" width="62.14915166725268" height="3.778063931140082" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="1113.930036553" y1="749.86761034323" x2="1113.930036553" y2="737.3999993704681" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_35_0__stack1"><rect x="1113.174423766772" y="736.6443865842401" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1113.1744237667722" y="743.6338048568491" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 1113.1744237667722 743.6338048568491)"></text><line class="component-pin sch-component-pin sch-port-line" x1="1113.930036553" y1="753.6456742743701" x2="1113.930036553" y2="765.357672460904" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_35_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="1113.930036553" cy="766.113285247132" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="1113.174423766772" y="765.357672460904" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1113.1744237667722" y="759.8794797607511" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 1113.1744237667722 759.8794797607511)"></text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="108.209418083532" cy="249.27413946718002" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="108.209418083532" cy="256.83026732946" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_2__stack1"><circle cx="108.209418083532" cy="264.38639519174" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_3__stack1"><circle cx="108.209418083532" cy="271.94252305402006" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_4__stack1"><circle cx="108.209418083532" cy="279.4986509163" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_5__stack1"><circle cx="108.209418083532" cy="287.05477877858004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_6__stack1"><circle cx="108.209418083532" cy="294.61090664086004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_7__stack1"><circle cx="108.209418083532" cy="302.16703450314003" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_8__stack1"><circle cx="108.209418083532" cy="309.72316236542" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_9__stack1"><circle cx="108.209418083532" cy="317.2792902277" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_10__stack1"><circle cx="108.209418083532" cy="324.83541808998" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_11__stack1"><circle cx="108.209418083532" cy="332.39154595226" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_12__stack1"><circle cx="108.209418083532" cy="339.94767381454" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_13__stack1"><circle cx="108.209418083532" cy="347.50380167682" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0__stack1"><circle cx="173.9477304853679" cy="249.27413946718002" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1__stack1"><circle cx="173.9477304853679" cy="256.83026732946" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_2__stack1"><circle cx="173.9477304853679" cy="264.38639519174" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_3__stack1"><circle cx="173.9477304853679" cy="271.94252305402" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_4__stack1"><circle cx="173.9477304853679" cy="279.4986509163" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_5__stack1"><circle cx="173.9477304853679" cy="287.05477877858004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_6__stack1"><circle cx="173.9477304853679" cy="294.61090664086" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_7__stack1"><circle cx="173.9477304853679" cy="302.16703450314003" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_8__stack1"><circle cx="173.9477304853679" cy="309.72316236542" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_9__stack1"><circle cx="173.9477304853679" cy="317.2792902277" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_10__stack1"><circle cx="173.9477304853679" cy="324.83541808998" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_11__stack1"><circle cx="173.9477304853679" cy="332.39154595226" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_12__stack1"><circle cx="173.9477304853679" cy="339.94767381454" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_13__stack1"><circle cx="173.9477304853679" cy="347.50380167682" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0__stack1"><circle cx="499.99464774275" cy="226.60575588034007" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1__stack1"><circle cx="499.99464774275" cy="234.16188374262006" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_2__stack1"><circle cx="499.99464774275" cy="241.71801160490008" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_3__stack1"><circle cx="499.99464774275" cy="249.27413946718005" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_4__stack1"><circle cx="499.99464774275" cy="256.83026732946007" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_5__stack1"><circle cx="499.99464774275" cy="264.38639519174006" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_6__stack1"><circle cx="499.99464774275" cy="271.94252305402006" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_7__stack1"><circle cx="499.99464774275" cy="279.49865091630005" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_8__stack1"><circle cx="499.99464774275" cy="287.05477877858004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_9__stack1"><circle cx="499.99464774275" cy="294.6109066408601" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_10__stack1"><circle cx="499.99464774275" cy="302.1670345031401" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_11__stack1"><circle cx="499.99464774275" cy="309.7231623654201" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_12__stack1"><circle cx="499.99464774275" cy="317.2792902277001" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_13__stack1"><circle cx="499.99464774275" cy="324.83541808998007" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_14__stack1"><circle cx="499.99464774275" cy="332.39154595226006" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_15__stack1"><circle cx="499.99464774275" cy="339.94767381454005" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_16__stack1"><circle cx="499.99464774275" cy="347.5038016768201" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_17__stack1"><circle cx="499.99464774275" cy="355.0599295391001" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_18__stack1"><circle cx="499.99464774275" cy="362.6160574013801" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_19__stack1"><circle cx="499.99464774275" cy="370.17218526366014" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_20__stack1"><circle cx="499.99464774275" cy="377.7283131259401" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_21__stack1"><circle cx="499.99464774275" cy="385.2844409882201" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_22__stack1"><circle cx="499.99464774275" cy="392.8405688505001" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_23__stack1"><circle cx="499.99464774275" cy="400.3966967127801" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_24__stack1"><circle cx="499.99464774275" cy="407.9528245750601" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_25__stack1"><circle cx="499.99464774275" cy="415.50895243734016" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_26__stack1"><circle cx="499.99464774275" cy="423.06508029962015" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_27__stack1"><circle cx="499.99464774275" cy="430.62120816190014" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_28__stack1"><circle cx="499.99464774275" cy="438.17733602418014" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_29__stack1"><circle cx="499.99464774275" cy="445.7334638864602" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_30__stack1"><circle cx="499.99464774275" cy="453.2895917487402" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_31__stack1"><circle cx="499.99464774275" cy="460.8457196110202" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_32__stack1"><circle cx="499.99464774275" cy="468.40184747330017" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_33__stack1"><circle cx="499.99464774275" cy="475.9579753355802" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_34__stack1"><circle cx="499.99464774275" cy="483.5141031978602" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_35__stack1"><circle cx="499.99464774275" cy="491.0702310601402" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_36__stack1"><circle cx="499.99464774275" cy="498.6263589224202" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_37__stack1"><circle cx="499.99464774275" cy="506.18248678470025" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_38__stack1"><circle cx="499.99464774275" cy="513.7386146469802" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_39__stack1"><circle cx="499.99464774275" cy="521.2947425092602" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_40__stack1"><circle cx="499.99464774275" cy="528.8508703715402" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_41__stack1"><circle cx="499.99464774275" cy="536.4069982338202" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_42__stack1"><circle cx="499.99464774275" cy="543.9631260961002" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_43__stack1"><circle cx="499.99464774275" cy="551.5192539583801" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_44__stack1"><circle cx="499.99464774275" cy="559.0753818206601" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_45__stack1"><circle cx="499.99464774275" cy="566.6315096829401" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_46__stack1"><circle cx="499.99464774275" cy="574.18763754522" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_47__stack1"><circle cx="499.99464774275" cy="581.7437654075001" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_48__stack1"><circle cx="499.99464774275" cy="589.29989326978" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_49__stack1"><circle cx="499.99464774275" cy="596.8560211320599" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_50__stack1"><circle cx="632.22688533265" cy="596.8560211320599" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_51__stack1"><circle cx="632.22688533265" cy="589.29989326978" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_52__stack1"><circle cx="632.22688533265" cy="581.7437654075" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_53__stack1"><circle cx="632.22688533265" cy="574.18763754522" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_54__stack1"><circle cx="632.22688533265" cy="566.63150968294" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_55__stack1"><circle cx="632.22688533265" cy="559.0753818206599" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_56__stack1"><circle cx="632.22688533265" cy="551.51925395838" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_57__stack1"><circle cx="632.22688533265" cy="543.9631260961" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_58__stack1"><circle cx="632.22688533265" cy="536.40699823382" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_59__stack1"><circle cx="632.22688533265" cy="528.8508703715399" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_60__stack1"><circle cx="632.22688533265" cy="521.29474250926" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_61__stack1"><circle cx="632.22688533265" cy="513.73861464698" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_62__stack1"><circle cx="632.22688533265" cy="506.18248678469996" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_63__stack1"><circle cx="632.22688533265" cy="498.62635892241997" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_64__stack1"><circle cx="632.22688533265" cy="491.07023106014" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_65__stack1"><circle cx="632.22688533265" cy="483.51410319786" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_66__stack1"><circle cx="632.22688533265" cy="475.95797533557993" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_67__stack1"><circle cx="632.22688533265" cy="468.40184747329994" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_68__stack1"><circle cx="632.22688533265" cy="460.84571961101994" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_69__stack1"><circle cx="632.22688533265" cy="453.2895917487399" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_70__stack1"><circle cx="632.22688533265" cy="445.73346388645996" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_71__stack1"><circle cx="632.22688533265" cy="438.1773360241799" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_72__stack1"><circle cx="632.22688533265" cy="430.6212081618999" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_73__stack1"><circle cx="632.22688533265" cy="423.0650802996199" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_74__stack1"><circle cx="632.22688533265" cy="415.50895243733993" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_75__stack1"><circle cx="632.22688533265" cy="407.9528245750599" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_76__stack1"><circle cx="632.22688533265" cy="400.3966967127799" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_77__stack1"><circle cx="632.22688533265" cy="392.8405688504999" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_78__stack1"><circle cx="632.22688533265" cy="385.2844409882199" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_79__stack1"><circle cx="632.22688533265" cy="377.72831312593985" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_80__stack1"><circle cx="632.22688533265" cy="370.17218526365986" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_81__stack1"><circle cx="632.22688533265" cy="362.61605740137986" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_82__stack1"><circle cx="632.22688533265" cy="355.05992953909987" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_83__stack1"><circle cx="632.22688533265" cy="347.5038016768198" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_84__stack1"><circle cx="632.22688533265" cy="339.9476738145398" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_85__stack1"><circle cx="632.22688533265" cy="332.39154595225983" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_86__stack1"><circle cx="632.22688533265" cy="324.83541808997984" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_87__stack1"><circle cx="632.22688533265" cy="317.2792902276998" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_88__stack1"><circle cx="632.22688533265" cy="309.7231623654198" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_89__stack1"><circle cx="632.22688533265" cy="302.1670345031398" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_90__stack1"><circle cx="632.22688533265" cy="294.6109066408598" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_91__stack1"><circle cx="632.22688533265" cy="287.0547787785798" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_92__stack1"><circle cx="632.22688533265" cy="279.4986509162999" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_93__stack1"><circle cx="632.22688533265" cy="271.94252305401994" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_94__stack1"><circle cx="632.22688533265" cy="264.3863951917399" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_95__stack1"><circle cx="632.22688533265" cy="256.83026732945996" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_96__stack1"><circle cx="632.22688533265" cy="249.27413946718" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_97__stack1"><circle cx="632.22688533265" cy="241.7180116049" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_98__stack1"><circle cx="632.22688533265" cy="234.16188374262003" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_99__stack1"><circle cx="632.22688533265" cy="226.60575588034007" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_0__stack1"><circle cx="93.85277514519998" cy="453.28959174874" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_1__stack1"><circle cx="93.85277514519998" cy="460.84571961102" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_2__stack1"><circle cx="93.85277514519998" cy="468.4018474733" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_3__stack1"><circle cx="93.85277514519998" cy="475.95797533558004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_4__stack1"><circle cx="93.85277514519998" cy="483.51410319786004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_5__stack1"><circle cx="93.85277514519998" cy="491.07023106014003" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_6__stack1"><circle cx="93.85277514519998" cy="498.62635892242" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_7__stack1"><circle cx="93.85277514519998" cy="506.1824867847" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_8__stack1"><circle cx="93.85277514519998" cy="513.7386146469801" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_9__stack1"><circle cx="93.85277514519998" cy="521.29474250926" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_10__stack1"><circle cx="169.41405376799997" cy="521.29474250926" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_11__stack1"><circle cx="169.41405376799997" cy="513.7386146469801" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_12__stack1"><circle cx="169.41405376799997" cy="506.1824867847" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_13__stack1"><circle cx="169.41405376799997" cy="498.62635892242" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_14__stack1"><circle cx="169.41405376799997" cy="491.07023106014003" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_15__stack1"><circle cx="169.41405376799997" cy="483.51410319786004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_16__stack1"><circle cx="169.41405376799997" cy="475.95797533558004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_17__stack1"><circle cx="169.41405376799997" cy="468.4018474733" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_18__stack1"><circle cx="169.41405376799997" cy="460.84571961102" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_19__stack1"><circle cx="169.41405376799997" cy="453.28959174874" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_0__stack1"><circle cx="244.97533239079996" cy="472.935524190668" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_1__stack1"><circle cx="244.97533239079996" cy="501.648810067332" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_0__stack1"><circle cx="396.09788963639994" cy="642.948401091968" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_1__stack1"><circle cx="396.09788963639994" cy="671.661686968632" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_0__stack1"><circle cx="464.10304039692" cy="642.948401091968" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_1__stack1"><circle cx="464.10304039692" cy="671.661686968632" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_7_0__stack1"><circle cx="532.1081911574399" cy="642.948401091968" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_7_1__stack1"><circle cx="532.1081911574399" cy="671.661686968632" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_8_0__stack1"><circle cx="600.11334191796" cy="642.948401091968" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_8_1__stack1"><circle cx="600.11334191796" cy="671.661686968632" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_9_0__stack1"><circle cx="668.11849267848" cy="642.948401091968" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_9_1__stack1"><circle cx="668.11849267848" cy="671.661686968632" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_10_0__stack1"><circle cx="736.123643439" cy="642.948401091968" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_10_1__stack1"><circle cx="736.123643439" cy="671.661686968632" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_11_0__stack1"><circle cx="363.60653982859594" cy="487.292167129" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_11_1__stack1"><circle cx="390.80860013280403" cy="487.292167129" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_12_0__stack1"><circle cx="377.2075699807" cy="533.384547088908" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_12_1__stack1"><circle cx="377.2075699807" cy="562.097832965572" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_13_0__stack1"><circle cx="377.2075699807" cy="586.277442124868" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_13_1__stack1"><circle cx="377.2075699807" cy="614.990728001532" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_14_0__stack1"><circle cx="773.9042827504" cy="472.935524190668" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_14_1__stack1"><circle cx="773.9042827504" cy="501.648810067332" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_15_0__stack1"><circle cx="736.123643439" cy="397.374245567868" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_15_1__stack1"><circle cx="736.123643439" cy="426.08753144453203" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_16_0__stack1"><circle cx="709.67719592102" cy="321.812966945068" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_16_1__stack1"><circle cx="709.67719592102" cy="350.52625282173204" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_17_0__stack1"><circle cx="739.90170737014" cy="257.58588011568804" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_17_1__stack1"><circle cx="739.90170737014" cy="286.299165992352" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_18_0__stack1"><circle cx="751.23589916356" cy="222.82769194920002" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_18_1__stack1"><circle cx="796.57266633724" cy="222.82769194920002" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_19_0__stack1"><circle cx="333.75983477258995" cy="173.71286084438" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_19_1__stack1"><circle cx="333.75983477258995" cy="181.26898870666" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_19_2__stack1"><circle cx="420.65530518880996" cy="181.26898870666" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_19_3__stack1"><circle cx="420.65530518880996" cy="173.71286084438" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_20_0__stack1"><circle cx="592.55721405568" cy="166.1567329821" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_20_1__stack1"><circle cx="615.22559764252" cy="166.1567329821" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_21_0__stack1"><circle cx="414.9882092921" cy="102.68525893894804" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_21_1__stack1"><circle cx="414.9882092921" cy="131.398544815612" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_22_0__stack1"><circle cx="566.1107665377" cy="102.68525893894804" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_22_1__stack1"><circle cx="566.1107665377" cy="131.398544815612" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_23_0__stack1"><circle cx="904.24748837473" cy="441.95539995532" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_23_1__stack1"><circle cx="904.24748837473" cy="449.51152781760004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_23_2__stack1"><circle cx="904.24748837473" cy="457.06765567988003" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_23_3__stack1"><circle cx="1021.36747024007" cy="457.06765567988003" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_23_4__stack1"><circle cx="1021.36747024007" cy="449.51152781760004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_23_5__stack1"><circle cx="1021.36747024007" cy="441.95539995532" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_24_0__stack1"><circle cx="1077.282816420942" cy="130.26512563627" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_24_1__stack1"><circle cx="1112.7966173736581" cy="130.26512563627" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_25_0__stack1"><circle cx="980.1865733906441" cy="128.37609367070002" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_25_1__stack1"><circle cx="1020.989663846956" cy="128.37609367070002" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_26_0__stack1"><circle cx="869.489300208242" cy="168.04576494767" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_26_1__stack1"><circle cx="905.0031011609581" cy="168.04576494767" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_27_0__stack1"><circle cx="961.296253734944" cy="166.1567329821" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_27_1__stack1"><circle cx="1002.099344191256" cy="166.1567329821" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_28_0__stack1"><circle cx="981.6977989631" cy="238.695560459988" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_28_1__stack1"><circle cx="981.6977989631" cy="267.408846336652" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_29_0__stack1"><circle cx="952.8900614881575" cy="41.48062325447995" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_29_1__stack1"><circle cx="952.8900614881575" cy="49.03675111676" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_29_2__stack1"><circle cx="952.8900614881575" cy="56.592878979039995" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_29_3__stack1"><circle cx="952.8900614881575" cy="64.14900684132004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_0__stack1"><circle cx="951.0010295225875" cy="596.85602113206" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_1__stack1"><circle cx="951.0010295225875" cy="604.41214899434" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_2__stack1"><circle cx="951.0010295225875" cy="611.96827685662" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_3__stack1"><circle cx="951.0010295225875" cy="619.5244047189001" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_4__stack1"><circle cx="951.0010295225875" cy="679.97342761714" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_5__stack1"><circle cx="951.0010295225875" cy="657.3050440303" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_6__stack1"><circle cx="951.0010295225875" cy="649.7489161680201" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_7__stack1"><circle cx="951.0010295225875" cy="627.08053258118" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_8__stack1"><circle cx="951.0010295225875" cy="642.19278830574" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_9__stack1"><circle cx="951.0010295225875" cy="634.6366604434601" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_10__stack1"><circle cx="951.0010295225875" cy="672.4172997548601" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_11__stack1"><circle cx="951.0010295225875" cy="664.86117189258" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_31_0__stack1"><circle cx="875.91200889118" cy="543.9631260961" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_31_1__stack1"><circle cx="898.58039247802" cy="543.9631260961" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_32_0__stack1"><circle cx="1008.14424648108" cy="543.9631260961" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_32_1__stack1"><circle cx="1030.81263006792" cy="543.9631260961" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_33_0__stack1"><circle cx="1057.2590775859" cy="630.85859651232" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_33_1__stack1"><circle cx="1057.2590775859" cy="638.4147243746" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_33_2__stack1"><circle cx="1057.2590775859" cy="645.9708522368801" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_33_3__stack1"><circle cx="1132.8203562087" cy="642.19278830574" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_33_4__stack1"><circle cx="1132.8203562087" cy="634.6366604434601" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_34_0__stack1"><circle cx="1000.5881186188001" cy="737.3999993704681" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_34_1__stack1"><circle cx="1000.5881186188001" cy="766.113285247132" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_35_0__stack1"><circle cx="1113.930036553" cy="737.3999993704681" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_35_1__stack1"><circle cx="1113.930036553" cy="766.113285247132" r="1.5112255724560002" fill="red" opacity="0"/></g><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" d="
513
+ </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 173.9477304853679 249.27413946718002 L 108.209418083532 249.27413946718002" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 173.9477304853679 249.27413946718002 L 108.209418083532 249.27413946718002" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 173.9477304853679 256.83026732946 L 108.209418083532 256.83026732946" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 173.9477304853679 256.83026732946 L 108.209418083532 256.83026732946" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 951.0010295225875 604.41214899434 L 958.5571573848674 604.41214899434 L 958.5571573848674 596.85602113206 L 951.0010295225875 596.85602113206" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 951.0010295225875 604.41214899434 L 958.5571573848674 604.41214899434 L 958.5571573848674 596.85602113206 L 951.0010295225875 596.85602113206" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 499.99464774275 415.50895243734016 L 488.66045594932996 415.50895243734016 L 488.66045594932996 362.6160574013801" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 499.99464774275 415.50895243734016 L 488.66045594932996 415.50895243734016 L 488.66045594932996 362.6160574013801" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 108.209418083532 264.38639519174 L 173.9477304853679 264.38639519174" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 108.209418083532 264.38639519174 L 173.9477304853679 264.38639519174" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 108.209418083532 271.94252305402006 L 173.9477304853679 271.94252305402" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 108.209418083532 271.94252305402006 L 173.9477304853679 271.94252305402" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 108.209418083532 279.4986509163 L 173.9477304853679 279.4986509163" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 108.209418083532 279.4986509163 L 173.9477304853679 279.4986509163" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 108.209418083532 287.05477877858004 L 173.9477304853679 287.05477877858004" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 108.209418083532 287.05477877858004 L 173.9477304853679 287.05477877858004" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 108.209418083532 294.61090664086004 L 173.9477304853679 294.61090664086" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 108.209418083532 294.61090664086004 L 173.9477304853679 294.61090664086" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 108.209418083532 302.16703450314003 L 173.9477304853679 302.16703450314003" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 108.209418083532 302.16703450314003 L 173.9477304853679 302.16703450314003" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 108.209418083532 309.72316236542 L 173.9477304853679 309.72316236542" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 108.209418083532 309.72316236542 L 173.9477304853679 309.72316236542" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 173.9477304853679 317.2792902277 L 108.209418083532 317.2792902277" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 173.9477304853679 317.2792902277 L 108.209418083532 317.2792902277" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 173.9477304853679 324.83541808998 L 108.209418083532 324.83541808998" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 173.9477304853679 324.83541808998 L 108.209418083532 324.83541808998" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 173.9477304853679 332.39154595226 L 108.209418083532 332.39154595226" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 173.9477304853679 332.39154595226 L 108.209418083532 332.39154595226" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 173.9477304853679 339.94767381454 L 108.209418083532 339.94767381454" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 173.9477304853679 339.94767381454 L 108.209418083532 339.94767381454" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 173.9477304853679 347.50380167682 L 108.209418083532 347.50380167682" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 173.9477304853679 347.50380167682 L 108.209418083532 347.50380167682" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 464.10304039692 642.948401091968 L 464.10304039692 635.392273229688 L 396.09788963639994 635.392273229688 L 396.09788963639994 642.948401091968" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 464.10304039692 642.948401091968 L 464.10304039692 635.392273229688 L 396.09788963639994 635.392273229688 L 396.09788963639994 642.948401091968" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 532.1081911574399 642.948401091968 L 532.1081911574399 635.392273229688 L 464.10304039692 635.392273229688" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 532.1081911574399 642.948401091968 L 532.1081911574399 635.392273229688 L 464.10304039692 635.392273229688" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 600.11334191796 642.948401091968 L 600.11334191796 635.392273229688 L 532.1081911574399 635.392273229688" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 600.11334191796 642.948401091968 L 600.11334191796 635.392273229688 L 532.1081911574399 635.392273229688" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 668.11849267848 642.948401091968 L 668.11849267848 635.392273229688 L 600.11334191796 635.392273229688" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 668.11849267848 642.948401091968 L 668.11849267848 635.392273229688 L 600.11334191796 635.392273229688" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 736.123643439 642.948401091968 L 736.123643439 635.392273229688 L 668.11849267848 635.392273229688" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 736.123643439 642.948401091968 L 736.123643439 635.392273229688 L 668.11849267848 635.392273229688" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 499.99464774275 596.8560211320599 L 492.43851988047 596.8560211320599 L 492.43851988047 635.392273229688 L 532.1081911574399 635.392273229688 L 532.1081911574399 642.948401091968" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 499.99464774275 596.8560211320599 L 492.43851988047 596.8560211320599 L 492.43851988047 635.392273229688 L 532.1081911574399 635.392273229688 L 532.1081911574399 642.948401091968" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 499.99464774275 302.1670345031401 L 496.21658381161 302.1670345031401 L 496.21658381161 264.38639519174006 L 499.99464774275 264.38639519174006" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 499.99464774275 302.1670345031401 L 496.21658381161 302.1670345031401 L 496.21658381161 264.38639519174006 L 499.99464774275 264.38639519174006" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 377.2075699807 533.384547088908 L 377.2075699807 525.8284192266281 L 398.36472799508397 525.8284192266281 L 398.36472799508397 487.292167129 L 390.80860013280403 487.292167129" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 377.2075699807 533.384547088908 L 377.2075699807 525.8284192266281 L 398.36472799508397 525.8284192266281 L 398.36472799508397 487.292167129 L 390.80860013280403 487.292167129" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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 377.2075699807 586.277442124868 L 377.2075699807 578.7213142625881 L 352.65015442828997 578.7213142625881 L 352.65015442828997 525.8284192266281 L 377.2075699807 525.8284192266281" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 377.2075699807 586.277442124868 L 377.2075699807 578.7213142625881 L 352.65015442828997 578.7213142625881 L 352.65015442828997 525.8284192266281 L 377.2075699807 525.8284192266281" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_25__stack1"><path d="M 499.99464774275 377.7283131259401 L 496.21658381161 377.7283131259401 L 496.21658381161 370.17218526366014 L 499.99464774275 370.17218526366014" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 499.99464774275 377.7283131259401 L 496.21658381161 377.7283131259401 L 496.21658381161 370.17218526366014 L 499.99464774275 370.17218526366014" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_26__stack1"><path d="M 951.0010295225875 642.19278830574 L 992.7486359616844 642.19278830574 L 992.7486359616844 649.7489161680201 L 951.0010295225875 649.7489161680201" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 951.0010295225875 642.19278830574 L 992.7486359616844 642.19278830574 L 992.7486359616844 649.7489161680201 L 951.0010295225875 649.7489161680201" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_27__stack1"><path d="M 244.97533239079996 472.935524190668 L 244.97533239079996 453.28959174874 L 169.41405376799997 453.28959174874" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 244.97533239079996 472.935524190668 L 244.97533239079996 453.28959174874 L 169.41405376799997 453.28959174874" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_28__stack1"><path d="M 499.99464774275 423.06508029962015 L 356.05041196631595 423.06508029962015 L 356.05041196631595 487.292167129 L 363.60653982859594 487.292167129" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 499.99464774275 423.06508029962015 L 356.05041196631595 423.06508029962015 L 356.05041196631595 487.292167129 L 363.60653982859594 487.292167129" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_29__stack1"><path d="M 1112.7966173736581 130.26512563627 L 1120.352745235938 130.26512563627 L 1120.352745235938 148.21092930918502 L 953.7401258726641 148.21092930918502 L 953.7401258726641 166.1567329821 L 961.296253734944 166.1567329821" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1112.7966173736581 130.26512563627 L 1120.352745235938 130.26512563627 L 1120.352745235938 148.21092930918502 L 953.7401258726641 148.21092930918502 L 953.7401258726641 166.1567329821 L 961.296253734944 166.1567329821" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_30__stack1"><path d="M 1132.8203562087 634.6366604434601 L 1147.93261193326 634.6366604434601 L 1147.93261193326 686.018329906964 L 1113.930036553 686.018329906964 L 1113.930036553 737.3999993704681" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1132.8203562087 634.6366604434601 L 1147.93261193326 634.6366604434601 L 1147.93261193326 686.018329906964 L 1113.930036553 686.018329906964 L 1113.930036553 737.3999993704681" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_31__stack1"><path d="M 632.22688533265 430.6212081618999 L 684.175264385825 430.6212081618999 L 684.175264385825 389.818117705588 L 736.123643439 389.818117705588 L 736.123643439 397.374245567868" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 632.22688533265 430.6212081618999 L 684.175264385825 430.6212081618999 L 684.175264385825 389.818117705588 L 736.123643439 389.818117705588 L 736.123643439 397.374245567868" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_32__stack1"><path d="M 615.22559764252 166.1567329821 L 622.7817255048 166.1567329821 L 622.7817255048 95.12913107666805 L 566.1107665377 95.12913107666805 L 566.1107665377 102.68525893894804" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 615.22559764252 166.1567329821 L 622.7817255048 166.1567329821 L 622.7817255048 95.12913107666805 L 566.1107665377 95.12913107666805 L 566.1107665377 102.68525893894804" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_33__stack1"><path d="M 1002.099344191256 166.1567329821 L 1009.655472053536 166.1567329821 L 1009.655472053536 202.42614672104398 L 981.6977989631 202.42614672104398 L 981.6977989631 238.695560459988" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1002.099344191256 166.1567329821 L 1009.655472053536 166.1567329821 L 1009.655472053536 202.42614672104398 L 981.6977989631 202.42614672104398 L 981.6977989631 238.695560459988" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_34__stack1"><path d="M 93.85277514519998 521.29474250926 L 44.70016340106861 521.29474250926 L 44.70016340106861 453.28959174874 L 93.85277514519998 453.28959174874" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 93.85277514519998 521.29474250926 L 44.70016340106861 521.29474250926 L 44.70016340106861 453.28959174874 L 93.85277514519998 453.28959174874" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_35__stack1"><path d="M 499.99464774275 362.6160574013801 L 414.5726222596746 362.6160574013801 L 414.5726222596746 294.6109066408601 L 499.99464774275 294.6109066408601" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 499.99464774275 362.6160574013801 L 414.5726222596746 362.6160574013801 L 414.5726222596746 294.6109066408601 L 499.99464774275 294.6109066408601" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_36__stack1"><path d="M 951.0010295225875 634.6366604434601 L 954.7790934537275 634.6366604434601 L 954.7790934537275 627.08053258118 L 951.0010295225875 627.08053258118" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 951.0010295225875 634.6366604434601 L 954.7790934537275 634.6366604434601 L 954.7790934537275 627.08053258118 L 951.0010295225875 627.08053258118" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_37__stack1"><path d="M 951.0010295225875 619.5244047189001 L 954.7790934537275 619.5244047189001 L 954.7790934537275 611.96827685662 L 951.0010295225875 611.96827685662" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 951.0010295225875 619.5244047189001 L 954.7790934537275 619.5244047189001 L 954.7790934537275 611.96827685662 L 951.0010295225875 611.96827685662" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_38__stack1"><path d="M 1057.2590775859 645.9708522368801 L 1049.70294972362 645.9708522368801 L 1049.70294972362 630.85859651232 L 1057.2590775859 630.85859651232" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1057.2590775859 645.9708522368801 L 1049.70294972362 645.9708522368801 L 1049.70294972362 630.85859651232 L 1057.2590775859 630.85859651232" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_39__stack1"><path d="M 632.22688533265 234.16188374262003 L 689.6912377252894 234.16188374262003 L 689.6912377252894 423.0650802996199 L 632.22688533265 423.0650802996199" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 632.22688533265 234.16188374262003 L 689.6912377252894 234.16188374262003 L 689.6912377252894 423.0650802996199 L 632.22688533265 423.0650802996199" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_40__stack1"><path d="M 333.75983477258995 181.26898870666 L 252.87148600688255 181.26898870666 L 252.87148600688255 149.533251685084 L 428.21143305108995 149.533251685084 L 428.21143305108995 173.71286084438 L 420.65530518880996 173.71286084438" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 333.75983477258995 181.26898870666 L 252.87148600688255 181.26898870666 L 252.87148600688255 149.533251685084 L 428.21143305108995 149.533251685084 L 428.21143305108995 173.71286084438 L 420.65530518880996 173.71286084438" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_41__stack1"><path d="M 739.90170737014 257.58588011568804 L 739.90170737014 230.38381981147998 L 632.22688533265 230.38381981147998 L 632.22688533265 226.60575588034007" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 739.90170737014 257.58588011568804 L 739.90170737014 230.38381981147998 L 632.22688533265 230.38381981147998 L 632.22688533265 226.60575588034007" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_42__stack1"><path d="M 499.99464774275 362.6160574013801 L 477.704070549024 362.6160574013801" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 499.99464774275 362.6160574013801 L 477.704070549024 362.6160574013801" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_43__stack1"><path d="M 499.99464774275 589.29989326978 L 479.5553218752826 589.29989326978 L 479.5553218752826 591.2267058746614" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 499.99464774275 589.29989326978 L 479.5553218752826 589.29989326978 L 479.5553218752826 591.2267058746614" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_44__stack1"><path d="M 689.6912377252894 328.61348202112 L 678.7348523249834 328.61348202112 L 678.7348523249834 328.65126266043137" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 689.6912377252894 328.61348202112 L 678.7348523249834 328.61348202112 L 678.7348523249834 328.65126266043137" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_45__stack1"><path d="M 169.41405376799997 460.84571961102 L 282.4159459483973 460.84571961102 L 282.4159459483973 462.77253221590144" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 169.41405376799997 460.84571961102 L 282.4159459483973 460.84571961102 L 282.4159459483973 462.77253221590144" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_46__stack1"><path d="M 796.57266633724 222.82769194920002 L 805.6778004112874 222.82769194920002 L 805.6778004112874 236.0886963475014" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 796.57266633724 222.82769194920002 L 805.6778004112874 222.82769194920002 L 805.6778004112874 236.0886963475014" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_47__stack1"><path d="M 904.24748837473 449.51152781760004 L 857.3617149892825 449.51152781760004 L 857.3617149892825 460.8835002503314" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 904.24748837473 449.51152781760004 L 857.3617149892825 449.51152781760004 L 857.3617149892825 460.8835002503314" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_48__stack1"><path d="M 905.0031011609581 168.04576494767 L 914.1082352350054 168.04576494767 L 914.1082352350054 181.3067693459714" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 905.0031011609581 168.04576494767 L 914.1082352350054 168.04576494767 L 914.1082352350054 181.3067693459714" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_49__stack1"><path d="M 952.8900614881575 56.592878979039995 L 1003.5538988047449 56.592878979039995 L 1003.5538988047449 67.9648514117714" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 952.8900614881575 56.592878979039995 L 1003.5538988047449 56.592878979039995 L 1003.5538988047449 67.9648514117714" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_50__stack1"><path d="M 898.58039247802 543.9631260961 L 907.6855265520674 543.9631260961 L 907.6855265520674 557.2241304944014" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 898.58039247802 543.9631260961 L 907.6855265520674 543.9631260961 L 907.6855265520674 557.2241304944014" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_51__stack1"><path d="M 1030.81263006792 543.9631260961 L 1039.9177641419674 543.9631260961 L 1039.9177641419674 557.2241304944014" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1030.81263006792 543.9631260961 L 1039.9177641419674 543.9631260961 L 1039.9177641419674 557.2241304944014" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_52__stack1"><path d="M 1049.70294972362 630.85859651232 L 1036.47972596463 630.85859651232" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1049.70294972362 630.85859651232 L 1036.47972596463 630.85859651232" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_53__stack1"><path d="M 1057.2590775859 638.4147243746 L 1048.1539435118525 638.4147243746 L 1048.1539435118525 649.7866968073314" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1057.2590775859 638.4147243746 L 1048.1539435118525 638.4147243746 L 1048.1539435118525 649.7866968073314" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_54__stack1"><path d="M 632.22688533265 574.18763754522 L 709.7149765603315 574.18763754522 L 709.7149765603315 562.8156651124885" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 632.22688533265 574.18763754522 L 709.7149765603315 574.18763754522 L 709.7149765603315 562.8156651124885" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_55__stack1"><path d="M 496.21658381161 264.38639519174006 L 482.99336005262 264.38639519174006 L 482.99336005262 264.34861455242867" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 496.21658381161 264.38639519174006 L 482.99336005262 264.38639519174006 L 482.99336005262 264.34861455242867" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_56__stack1"><path d="M 952.8900614881575 41.48062325447995 L 964.2620339208889 41.48062325447995 L 964.2620339208889 33.88671475288862" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 952.8900614881575 41.48062325447995 L 964.2620339208889 41.48062325447995 L 964.2620339208889 33.88671475288862" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_57__stack1"><path d="M 1021.36747024007 449.51152781760004 L 1083.70552510388 449.51152781760004 L 1083.70552510388 438.13955538486863" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1021.36747024007 449.51152781760004 L 1083.70552510388 449.51152781760004 L 1083.70552510388 438.13955538486863" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_58__stack1"><path d="M 333.75983477258995 173.71286084438 L 326.20370691030996 173.71286084438 L 326.20370691030996 95.12913107666805 L 414.9882092921 95.12913107666805 L 414.9882092921 102.68525893894804" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 333.75983477258995 173.71286084438 L 326.20370691030996 173.71286084438 L 326.20370691030996 95.12913107666805 L 414.9882092921 95.12913107666805 L 414.9882092921 102.68525893894804" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_59__stack1"><path d="M 1021.36747024007 441.95539995532 L 1074.26036527603 441.95539995532" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1021.36747024007 441.95539995532 L 1074.26036527603 441.95539995532" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_60__stack1"><path d="M 632.22688533265 551.51925395838 L 685.11978036861 551.51925395838" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 632.22688533265 551.51925395838 L 685.11978036861 551.51925395838" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_61__stack1"><path d="M 1021.36747024007 457.06765567988003 L 1074.26036527603 457.06765567988003" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 1021.36747024007 457.06765567988003 L 1074.26036527603 457.06765567988003" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" 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_62__stack1"><path d="M 632.22688533265 559.0753818206599 L 685.11978036861 559.0753818206599" class="trace-invisible-hover-outline sch-trace-hitbox" stroke="rgb(0, 150, 0)" fill="none" stroke-width="6.044902289824001px" stroke-linecap="round" opacity="0" stroke-linejoin="round"/><path class="sch-trace-path" d="M 632.22688533265 559.0753818206599 L 685.11978036861 559.0753818206599" stroke="rgb(0, 150, 0)" fill="none" stroke-width="0.7556127862280001px" stroke-linecap="round" stroke-linejoin="round"/></g><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_0__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_1__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_2__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_3__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_4__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_5__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_6__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_7__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_8__stack1"/><g class="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"><circle cx="464.10304039692" cy="635.392273229688" r="1.133419179342" 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_17__stack1"><circle cx="532.1081911574399" cy="642.948401091968" r="1.133419179342" class="trace-junction sch-trace-junction" fill="rgb(0, 150, 0)"/><circle cx="532.1081911574399" cy="635.392273229688" r="1.133419179342" 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_18__stack1"><circle cx="600.11334191796" cy="635.392273229688" r="1.133419179342" 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_19__stack1"><circle cx="668.11849267848" cy="635.392273229688" r="1.133419179342" 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_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"><circle cx="496.21658381161" cy="264.38639519174006" r="1.133419179342" 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_23__stack1"><circle cx="377.2075699807" cy="525.8284192266281" r="1.133419179342" 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_24__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_25__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_26__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_27__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_28__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_29__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_30__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_31__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_32__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_33__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_34__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_35__stack1"><circle cx="499.99464774275" cy="362.6160574013801" r="1.133419179342" 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_36__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_37__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_38__stack1"><circle cx="1049.70294972362" cy="630.85859651232" r="1.133419179342" 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_39__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_40__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_41__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_42__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_43__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_44__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_45__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_46__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_47__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_48__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_49__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_50__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_51__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_52__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_53__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_54__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_55__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_56__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_57__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_58__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_59__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_60__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_61__stack1"/><g class="trace-overlays sch-trace-overlays" data-layer="overlay" data-circuit-json-type="schematic_trace" data-schematic-trace-id="schematic_trace_62__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="56.82774862002793" y="241.7180116049" width="36.269413738944024" height="113.34191793420004" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="56.82774862002793" y="241.7180116049" width="36.269413738944024" height="113.34191793420004" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="249.27413946718002" x2="108.209418083532" y2="249.27413946718002" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_0__stack1"><rect x="107.453805297304" y="248.51852668095202" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="248.51852668095202" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="256.83026732946" x2="108.209418083532" y2="256.83026732946" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_1__stack1"><rect x="107.453805297304" y="256.074654543232" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="256.07465454323204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="264.38639519174" x2="108.209418083532" y2="264.38639519174" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_2__stack1"><rect x="107.453805297304" y="263.630782405512" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="263.63078240551204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="271.94252305402006" x2="108.209418083532" y2="271.94252305402006" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_3__stack1"><rect x="107.453805297304" y="271.18691026779203" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="271.18691026779203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="279.4986509163" x2="108.209418083532" y2="279.4986509163" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_4__stack1"><rect x="107.453805297304" y="278.74303813007197" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="278.743038130072" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="287.05477877858004" x2="108.209418083532" y2="287.05477877858004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_5__stack1"><rect x="107.453805297304" y="286.299165992352" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="286.299165992352" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="294.61090664086004" x2="108.209418083532" y2="294.61090664086004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_6__stack1"><rect x="107.453805297304" y="293.855293854632" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="293.855293854632" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="302.16703450314003" x2="108.209418083532" y2="302.16703450314003" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_7__stack1"><rect x="107.453805297304" y="301.411421716912" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="301.411421716912" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="309.72316236542" x2="108.209418083532" y2="309.72316236542" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_8__stack1"><rect x="107.453805297304" y="308.967549579192" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="308.967549579192" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="317.2792902277" x2="108.209418083532" y2="317.2792902277" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_9__stack1"><rect x="107.453805297304" y="316.523677441472" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="316.52367744147205" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="324.83541808998" x2="108.209418083532" y2="324.83541808998" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_10__stack1"><rect x="107.453805297304" y="324.079805303752" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="324.07980530375204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="332.39154595226" x2="108.209418083532" y2="332.39154595226" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_11__stack1"><rect x="107.453805297304" y="331.635933166032" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="331.63593316603203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="339.94767381454" x2="108.209418083532" y2="339.94767381454" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_12__stack1"><rect x="107.453805297304" y="339.19206102831197" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="339.192061028312" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="93.09716235897196" y1="347.50380167682" x2="108.209418083532" y2="347.50380167682" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_0_13__stack1"><rect x="107.453805297304" y="346.74818889059196" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="100.653290221252" y="346.748188890592" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_1__stack1"><rect class="component chip sch-component-body" x="189.05998620992796" y="241.7180116049" width="36.269413738944024" height="113.34191793420004" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="189.05998620992796" y="241.7180116049" width="36.269413738944024" height="113.34191793420004" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="249.27413946718002" x2="173.9477304853679" y2="249.27413946718002" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_0__stack1"><rect x="173.1921176991399" y="248.51852668095202" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="248.51852668095202" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="256.83026732946" x2="173.9477304853679" y2="256.83026732946" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_1__stack1"><rect x="173.1921176991399" y="256.074654543232" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="256.07465454323204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="264.38639519174" x2="173.9477304853679" y2="264.38639519174" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_2__stack1"><rect x="173.1921176991399" y="263.630782405512" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="263.63078240551204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="271.94252305402" x2="173.9477304853679" y2="271.94252305402" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_3__stack1"><rect x="173.1921176991399" y="271.186910267792" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="271.186910267792" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="279.4986509163" x2="173.9477304853679" y2="279.4986509163" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_4__stack1"><rect x="173.1921176991399" y="278.74303813007197" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="278.743038130072" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="287.05477877858004" x2="173.9477304853679" y2="287.05477877858004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_5__stack1"><rect x="173.1921176991399" y="286.299165992352" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="286.299165992352" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="294.61090664086" x2="173.9477304853679" y2="294.61090664086" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_6__stack1"><rect x="173.1921176991399" y="293.85529385463195" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="293.855293854632" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="302.16703450314003" x2="173.9477304853679" y2="302.16703450314003" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_7__stack1"><rect x="173.1921176991399" y="301.411421716912" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="301.411421716912" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="309.72316236542" x2="173.9477304853679" y2="309.72316236542" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_8__stack1"><rect x="173.1921176991399" y="308.967549579192" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="308.967549579192" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="317.2792902277" x2="173.9477304853679" y2="317.2792902277" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_9__stack1"><rect x="173.1921176991399" y="316.523677441472" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="316.52367744147205" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="324.83541808998" x2="173.9477304853679" y2="324.83541808998" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_10__stack1"><rect x="173.1921176991399" y="324.079805303752" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="324.079805303752" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="332.39154595226" x2="173.9477304853679" y2="332.39154595226" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_11__stack1"><rect x="173.1921176991399" y="331.635933166032" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="331.635933166032" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="339.94767381454" x2="173.9477304853679" y2="339.94767381454" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_12__stack1"><rect x="173.1921176991399" y="339.19206102831197" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="339.192061028312" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="189.05998620992796" y1="347.50380167682" x2="173.9477304853679" y2="347.50380167682" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_1_13__stack1"><rect x="173.1921176991399" y="346.74818889059196" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="181.5038583476479" y="346.748188890592" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></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="515.10690346731" y="219.04962801806005" width="102.00772614078005" height="385.36252097627994" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="515.10690346731" y="219.04962801806005" width="102.00772614078005" height="385.36252097627994" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="226.60575588034007" x2="500.750260528978" y2="226.60575588034007" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="226.60575588034007" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="225.85014309411207" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="225.85014309411207" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="234.16188374262006" x2="500.750260528978" y2="234.16188374262006" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="234.16188374262006" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="233.40627095639206" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="233.4062709563921" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="241.71801160490008" x2="500.750260528978" y2="241.71801160490008" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_2__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="241.71801160490008" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="240.96239881867209" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="240.96239881867209" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="249.27413946718005" x2="500.750260528978" y2="249.27413946718005" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_3__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="249.27413946718005" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="248.51852668095205" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="248.51852668095208" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="256.83026732946007" x2="500.750260528978" y2="256.83026732946007" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_4__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="256.83026732946007" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="256.07465454323204" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="256.0746545432321" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="264.38639519174006" x2="499.99464774275" y2="264.38639519174006" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_5__stack1"><rect x="499.23903495652195" y="263.63078240551204" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="263.63078240551204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="271.94252305402006" x2="500.750260528978" y2="271.94252305402006" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_6__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="271.94252305402006" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="271.18691026779203" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="271.1869102677921" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="279.49865091630005" x2="500.750260528978" y2="279.49865091630005" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_7__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="279.49865091630005" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="278.743038130072" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="278.743038130072" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="287.05477877858004" x2="500.750260528978" y2="287.05477877858004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_8__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="287.05477877858004" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="286.299165992352" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="286.2991659923521" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="294.6109066408601" x2="499.99464774275" y2="294.6109066408601" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_9__stack1"><rect x="499.23903495652195" y="293.85529385463207" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="293.85529385463207" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="302.1670345031401" x2="499.99464774275" y2="302.1670345031401" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_10__stack1"><rect x="499.23903495652195" y="301.41142171691206" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="301.41142171691206" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="309.7231623654201" x2="500.750260528978" y2="309.7231623654201" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_11__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="309.7231623654201" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="308.96754957919205" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="308.96754957919205" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="317.2792902277001" x2="500.750260528978" y2="317.2792902277001" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_12__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="317.2792902277001" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="316.52367744147205" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="316.52367744147205" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="324.83541808998007" x2="500.750260528978" y2="324.83541808998007" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_13__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="324.83541808998007" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="324.07980530375204" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="324.0798053037521" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="332.39154595226006" x2="500.750260528978" y2="332.39154595226006" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_14__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="332.39154595226006" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="331.63593316603203" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="331.6359331660321" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="339.94767381454005" x2="500.750260528978" y2="339.94767381454005" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_15__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="339.94767381454005" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="339.192061028312" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="339.1920610283121" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="347.5038016768201" x2="500.750260528978" y2="347.5038016768201" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_16__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="347.5038016768201" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="346.7481888905921" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="346.7481888905921" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="355.0599295391001" x2="500.750260528978" y2="355.0599295391001" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_17__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="355.0599295391001" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="354.30431675287207" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="354.30431675287207" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="362.6160574013801" x2="499.99464774275" y2="362.6160574013801" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_18__stack1"><rect x="499.23903495652195" y="361.86044461515206" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="361.8604446151521" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="370.17218526366014" x2="499.99464774275" y2="370.17218526366014" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_19__stack1"><rect x="499.23903495652195" y="369.4165724774321" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="369.4165724774321" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="377.7283131259401" x2="499.99464774275" y2="377.7283131259401" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_20__stack1"><rect x="499.23903495652195" y="376.97270033971205" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="376.9727003397121" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="385.2844409882201" x2="500.750260528978" y2="385.2844409882201" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_21__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="385.2844409882201" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="384.5288282019921" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="384.5288282019921" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="392.8405688505001" x2="500.750260528978" y2="392.8405688505001" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_22__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="392.8405688505001" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="392.0849560642721" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="392.0849560642721" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="400.3966967127801" x2="500.750260528978" y2="400.3966967127801" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_23__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="400.3966967127801" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="399.6410839265521" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="399.64108392655214" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="407.9528245750601" x2="500.750260528978" y2="407.9528245750601" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_24__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="407.9528245750601" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="407.1972117888321" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="407.19721178883213" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="415.50895243734016" x2="499.99464774275" y2="415.50895243734016" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_25__stack1"><rect x="499.23903495652195" y="414.7533396511121" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="414.7533396511121" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="423.06508029962015" x2="499.99464774275" y2="423.06508029962015" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_26__stack1"><rect x="499.23903495652195" y="422.3094675133921" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="422.3094675133921" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="430.62120816190014" x2="500.750260528978" y2="430.62120816190014" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_27__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="430.62120816190014" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="429.8655953756721" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="429.86559537567217" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="438.17733602418014" x2="500.750260528978" y2="438.17733602418014" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_28__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="438.17733602418014" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="437.4217232379521" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="437.42172323795216" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="445.7334638864602" x2="500.750260528978" y2="445.7334638864602" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_29__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="445.7334638864602" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="444.97785110023216" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="444.97785110023216" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="453.2895917487402" x2="500.750260528978" y2="453.2895917487402" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_30__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="453.2895917487402" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="452.53397896251215" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="452.53397896251215" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="460.8457196110202" x2="500.750260528978" y2="460.8457196110202" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_31__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="460.8457196110202" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="460.09010682479214" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="460.0901068247922" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="468.40184747330017" x2="500.750260528978" y2="468.40184747330017" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_32__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="468.40184747330017" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="467.64623468707214" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="467.6462346870722" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="475.9579753355802" x2="500.750260528978" y2="475.9579753355802" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_33__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="475.9579753355802" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="475.2023625493522" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="475.2023625493522" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="483.5141031978602" x2="500.750260528978" y2="483.5141031978602" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_34__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="483.5141031978602" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="482.7584904116322" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="482.7584904116322" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="491.0702310601402" x2="500.750260528978" y2="491.0702310601402" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_35__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="491.0702310601402" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="490.3146182739122" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="490.3146182739122" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="498.6263589224202" x2="500.750260528978" y2="498.6263589224202" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_36__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="498.6263589224202" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="497.87074613619217" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="497.8707461361922" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="506.18248678470025" x2="500.750260528978" y2="506.18248678470025" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_37__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="506.18248678470025" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="505.4268739984722" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="505.4268739984722" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="513.7386146469802" x2="500.750260528978" y2="513.7386146469802" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_38__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="513.7386146469802" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="512.9830018607522" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="512.9830018607522" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="521.2947425092602" x2="500.750260528978" y2="521.2947425092602" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_39__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="521.2947425092602" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="520.5391297230323" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="520.5391297230323" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="528.8508703715402" x2="500.750260528978" y2="528.8508703715402" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_40__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="528.8508703715402" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="528.0952575853122" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="528.0952575853122" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="536.4069982338202" x2="500.750260528978" y2="536.4069982338202" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_41__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="536.4069982338202" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="535.6513854475922" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="535.6513854475921" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="543.9631260961002" x2="500.750260528978" y2="543.9631260961002" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_42__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="543.9631260961002" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="543.2075133098722" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="543.2075133098722" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="551.5192539583801" x2="500.750260528978" y2="551.5192539583801" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_43__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="551.5192539583801" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="550.7636411721521" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="550.7636411721521" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="559.0753818206601" x2="500.750260528978" y2="559.0753818206601" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_44__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="559.0753818206601" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="558.3197690344322" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="558.319769034432" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="566.6315096829401" x2="500.750260528978" y2="566.6315096829401" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_45__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="566.6315096829401" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="565.8758968967121" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="565.8758968967121" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="574.18763754522" x2="500.750260528978" y2="574.18763754522" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_46__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="574.18763754522" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="573.432024758992" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="573.432024758992" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="581.7437654075001" x2="500.750260528978" y2="581.7437654075001" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_47__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="499.99464774275" cy="581.7437654075001" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="499.23903495652195" y="580.9881526212721" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="580.9881526212721" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="589.29989326978" x2="499.99464774275" y2="589.29989326978" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_48__stack1"><rect x="499.23903495652195" y="588.544280483552" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="588.544280483552" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="515.10690346731" y1="596.8560211320599" x2="499.99464774275" y2="596.8560211320599" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_49__stack1"><rect x="499.23903495652195" y="596.100408345832" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="507.55077560502997" y="596.100408345832" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="596.8560211320599" x2="631.471272546422" y2="596.8560211320599" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_50__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="596.8560211320599" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="596.100408345832" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="596.100408345832" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="589.29989326978" x2="631.471272546422" y2="589.29989326978" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_51__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="589.29989326978" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="588.544280483552" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="588.544280483552" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="581.7437654075" x2="631.471272546422" y2="581.7437654075" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_52__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="581.7437654075" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="580.988152621272" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="580.988152621272" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="574.18763754522" x2="632.22688533265" y2="574.18763754522" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_53__stack1"><rect x="631.471272546422" y="573.432024758992" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="573.4320247589919" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="566.63150968294" x2="631.471272546422" y2="566.63150968294" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_54__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="566.63150968294" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="565.875896896712" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="565.875896896712" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="559.0753818206599" x2="632.22688533265" y2="559.0753818206599" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_55__stack1"><rect x="631.471272546422" y="558.3197690344319" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="558.3197690344319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="551.51925395838" x2="632.22688533265" y2="551.51925395838" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_56__stack1"><rect x="631.471272546422" y="550.763641172152" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="550.7636411721519" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="543.9631260961" x2="631.471272546422" y2="543.9631260961" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_57__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="543.9631260961" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="543.2075133098721" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="543.207513309872" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="536.40699823382" x2="631.471272546422" y2="536.40699823382" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_58__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="536.40699823382" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="535.651385447592" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="535.651385447592" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="528.8508703715399" x2="631.471272546422" y2="528.8508703715399" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_59__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="528.8508703715399" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="528.095257585312" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="528.095257585312" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="521.29474250926" x2="631.471272546422" y2="521.29474250926" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_60__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="521.29474250926" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="520.539129723032" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="520.5391297230319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="513.73861464698" x2="631.471272546422" y2="513.73861464698" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_61__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="513.73861464698" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="512.983001860752" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="512.983001860752" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="506.18248678469996" x2="631.471272546422" y2="506.18248678469996" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_62__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="506.18248678469996" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="505.42687399847193" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="505.426873998472" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="498.62635892241997" x2="631.471272546422" y2="498.62635892241997" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_63__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="498.62635892241997" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="497.87074613619194" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="497.870746136192" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="491.07023106014" x2="631.471272546422" y2="491.07023106014" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_64__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="491.07023106014" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="490.31461827391195" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="490.31461827391195" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="483.51410319786" x2="631.471272546422" y2="483.51410319786" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_65__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="483.51410319786" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="482.75849041163195" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="482.75849041163195" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="475.95797533557993" x2="631.471272546422" y2="475.95797533557993" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_66__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="475.95797533557993" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="475.2023625493519" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="475.20236254935196" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="468.40184747329994" x2="631.471272546422" y2="468.40184747329994" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_67__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="468.40184747329994" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="467.6462346870719" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="467.6462346870719" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="460.84571961101994" x2="631.471272546422" y2="460.84571961101994" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_68__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="460.84571961101994" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="460.0901068247919" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="460.0901068247919" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="453.2895917487399" x2="631.471272546422" y2="453.2895917487399" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_69__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="453.2895917487399" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="452.53397896251187" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="452.5339789625119" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="445.73346388645996" x2="631.471272546422" y2="445.73346388645996" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_70__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="445.73346388645996" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="444.97785110023193" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="444.97785110023193" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="438.1773360241799" x2="631.471272546422" y2="438.1773360241799" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_71__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="438.1773360241799" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="437.4217232379519" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="437.42172323795194" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="430.6212081618999" x2="632.22688533265" y2="430.6212081618999" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_72__stack1"><rect x="631.471272546422" y="429.8655953756719" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="429.8655953756719" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="423.0650802996199" x2="632.22688533265" y2="423.0650802996199" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_73__stack1"><rect x="631.471272546422" y="422.3094675133919" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="422.3094675133919" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="415.50895243733993" x2="631.471272546422" y2="415.50895243733993" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_74__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="415.50895243733993" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="414.7533396511119" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="414.7533396511119" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="407.9528245750599" x2="631.471272546422" y2="407.9528245750599" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_75__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="407.9528245750599" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="407.19721178883185" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="407.1972117888319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="400.3966967127799" x2="631.471272546422" y2="400.3966967127799" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_76__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="400.3966967127799" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="399.64108392655186" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="399.6410839265519" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="392.8405688504999" x2="631.471272546422" y2="392.8405688504999" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_77__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="392.8405688504999" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="392.08495606427186" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="392.08495606427186" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="385.2844409882199" x2="631.471272546422" y2="385.2844409882199" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_78__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="385.2844409882199" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="384.52882820199187" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="384.52882820199187" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="377.72831312593985" x2="631.471272546422" y2="377.72831312593985" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_79__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="377.72831312593985" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="376.9727003397118" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="376.9727003397119" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="370.17218526365986" x2="631.471272546422" y2="370.17218526365986" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_80__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="370.17218526365986" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="369.4165724774318" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="369.4165724774319" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="362.61605740137986" x2="631.471272546422" y2="362.61605740137986" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_81__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="362.61605740137986" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="361.86044461515183" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="361.86044461515183" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="355.05992953909987" x2="631.471272546422" y2="355.05992953909987" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_82__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="355.05992953909987" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="354.30431675287184" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="354.30431675287184" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="347.5038016768198" x2="631.471272546422" y2="347.5038016768198" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_83__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="347.5038016768198" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="346.7481888905918" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="346.74818889059185" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="339.9476738145398" x2="631.471272546422" y2="339.9476738145398" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_84__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="339.9476738145398" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="339.1920610283118" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="339.19206102831185" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="332.39154595225983" x2="631.471272546422" y2="332.39154595225983" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_85__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="332.39154595225983" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="331.6359331660318" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="331.6359331660318" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="324.83541808997984" x2="631.471272546422" y2="324.83541808997984" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_86__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="324.83541808997984" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="324.0798053037518" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="324.0798053037518" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="317.2792902276998" x2="631.471272546422" y2="317.2792902276998" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_87__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="317.2792902276998" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="316.52367744147176" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="316.5236774414718" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="309.7231623654198" x2="631.471272546422" y2="309.7231623654198" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_88__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="309.7231623654198" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="308.96754957919177" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="308.9675495791918" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="302.1670345031398" x2="631.471272546422" y2="302.1670345031398" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_89__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="302.1670345031398" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="301.4114217169118" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="301.41142171691183" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="294.6109066408598" x2="631.471272546422" y2="294.6109066408598" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_90__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="294.6109066408598" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="293.8552938546318" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="293.85529385463184" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="287.0547787785798" x2="631.471272546422" y2="287.0547787785798" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_91__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="287.0547787785798" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="286.2991659923518" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="286.29916599235185" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="279.4986509162999" x2="631.471272546422" y2="279.4986509162999" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_92__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="279.4986509162999" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="278.74303813007185" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="278.7430381300719" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="271.94252305401994" x2="631.471272546422" y2="271.94252305401994" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_93__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="271.94252305401994" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="271.1869102677919" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="271.1869102677919" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="264.3863951917399" x2="631.471272546422" y2="264.3863951917399" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_94__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="264.3863951917399" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="263.63078240551187" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="263.6307824055119" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="256.83026732945996" x2="631.471272546422" y2="256.83026732945996" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_95__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="256.83026732945996" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="256.07465454323193" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="256.074654543232" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="249.27413946718" x2="631.471272546422" y2="249.27413946718" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_96__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="249.27413946718" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="248.518526680952" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="248.518526680952" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="241.7180116049" x2="631.471272546422" y2="241.7180116049" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_97__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="632.22688533265" cy="241.7180116049" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="631.471272546422" y="240.962398818672" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="240.96239881867203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="234.16188374262003" x2="632.22688533265" y2="234.16188374262003" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_98__stack1"><rect x="631.471272546422" y="233.40627095639204" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="233.40627095639206" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="617.11462960809" y1="226.60575588034007" x2="632.22688533265" y2="226.60575588034007" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_2_99__stack1"><rect x="631.471272546422" y="225.85014309411207" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="624.67075747037" y="225.85014309411207" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_3__stack1"><rect class="component chip sch-component-body" x="108.96503086975997" y="445.73346388646" width="45.33676717367996" height="83.11740648508004" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="108.96503086975997" y="445.73346388646" width="45.33676717367996" height="83.11740648508004" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="108.96503086975997" y1="453.28959174874" x2="93.85277514519998" y2="453.28959174874" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_0__stack1"><rect x="93.09716235897199" y="452.533978962512" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="101.40890300747992" y="452.53397896251204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="108.96503086975997" y1="460.84571961102" x2="94.60838793142796" y2="460.84571961102" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="93.85277514519998" cy="460.84571961102" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="93.09716235897199" y="460.090106824792" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="101.40890300747992" y="460.09010682479203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="108.96503086975997" y1="468.4018474733" x2="94.60838793142796" y2="468.4018474733" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_2__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="93.85277514519998" cy="468.4018474733" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="93.09716235897199" y="467.64623468707197" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="101.40890300747992" y="467.646234687072" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="108.96503086975997" y1="475.95797533558004" x2="94.60838793142796" y2="475.95797533558004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_3__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="93.85277514519998" cy="475.95797533558004" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="93.09716235897199" y="475.202362549352" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="101.40890300747992" y="475.202362549352" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="108.96503086975997" y1="483.51410319786004" x2="94.60838793142796" y2="483.51410319786004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_4__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="93.85277514519998" cy="483.51410319786004" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="93.09716235897199" y="482.758490411632" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="101.40890300747992" y="482.758490411632" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="108.96503086975997" y1="491.07023106014003" x2="94.60838793142796" y2="491.07023106014003" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_5__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="93.85277514519998" cy="491.07023106014003" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="93.09716235897199" y="490.314618273912" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="101.40890300747992" y="490.314618273912" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="108.96503086975997" y1="498.62635892242" x2="94.60838793142796" y2="498.62635892242" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_6__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="93.85277514519998" cy="498.62635892242" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="93.09716235897199" y="497.870746136192" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="101.40890300747992" y="497.870746136192" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="108.96503086975997" y1="506.1824867847" x2="94.60838793142796" y2="506.1824867847" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_7__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="93.85277514519998" cy="506.1824867847" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="93.09716235897199" y="505.426873998472" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="101.40890300747992" y="505.42687399847205" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="108.96503086975997" y1="513.7386146469801" x2="94.60838793142796" y2="513.7386146469801" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_8__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="93.85277514519998" cy="513.7386146469801" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="93.09716235897199" y="512.9830018607521" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="101.40890300747992" y="512.983001860752" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="108.96503086975997" y1="521.29474250926" x2="93.85277514519998" y2="521.29474250926" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_9__stack1"><rect x="93.09716235897199" y="520.539129723032" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="101.40890300747992" y="520.539129723032" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="154.30179804343993" y1="521.29474250926" x2="168.658440981772" y2="521.29474250926" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_10__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="169.41405376799997" cy="521.29474250926" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="168.65844098177197" y="520.539129723032" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="161.85792590571998" y="520.539129723032" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="154.30179804343993" y1="513.7386146469801" x2="168.658440981772" y2="513.7386146469801" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_11__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="169.41405376799997" cy="513.7386146469801" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="168.65844098177197" y="512.9830018607521" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="161.85792590571998" y="512.983001860752" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="154.30179804343993" y1="506.1824867847" x2="168.658440981772" y2="506.1824867847" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_12__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="169.41405376799997" cy="506.1824867847" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="168.65844098177197" y="505.426873998472" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="161.85792590571998" y="505.42687399847205" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="154.30179804343993" y1="498.62635892242" x2="168.658440981772" y2="498.62635892242" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_13__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="169.41405376799997" cy="498.62635892242" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="168.65844098177197" y="497.870746136192" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="161.85792590571998" y="497.870746136192" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="154.30179804343993" y1="491.07023106014003" x2="168.658440981772" y2="491.07023106014003" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_14__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="169.41405376799997" cy="491.07023106014003" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="168.65844098177197" y="490.314618273912" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="161.85792590571998" y="490.314618273912" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="154.30179804343993" y1="483.51410319786004" x2="168.658440981772" y2="483.51410319786004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_15__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="169.41405376799997" cy="483.51410319786004" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="168.65844098177197" y="482.758490411632" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="161.85792590571998" y="482.758490411632" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="154.30179804343993" y1="475.95797533558004" x2="168.658440981772" y2="475.95797533558004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_16__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="169.41405376799997" cy="475.95797533558004" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="168.65844098177197" y="475.202362549352" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="161.85792590571998" y="475.202362549352" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="154.30179804343993" y1="468.4018474733" x2="168.658440981772" y2="468.4018474733" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_17__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="169.41405376799997" cy="468.4018474733" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="168.65844098177197" y="467.64623468707197" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="161.85792590571998" y="467.646234687072" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="154.30179804343993" y1="460.84571961102" x2="169.41405376799997" y2="460.84571961102" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_18__stack1"><rect x="168.65844098177197" y="460.090106824792" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="161.85792590571998" y="460.09010682479203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="154.30179804343993" y1="453.28959174874" x2="169.41405376799997" y2="453.28959174874" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_3_19__stack1"><rect x="168.65844098177197" y="452.533978962512" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="161.85792590571998" y="452.53397896251204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></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="227.97404470067" y="485.40313516343" width="44.01444479778098" height="3.778063931140025" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="227.97404470067" y="485.40313516343" width="44.01444479778098" height="3.778063931140025" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="244.97533239079996" y1="485.40313516343" x2="244.97533239079996" y2="472.935524190668" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_4_0__stack1"><rect x="244.21971960457196" y="472.17991140443996" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="244.219719604572" y="479.169329677049" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 244.219719604572 479.169329677049)"></text><line class="component-pin sch-component-pin sch-port-line" x1="244.97533239079996" y1="489.18119909457005" x2="244.97533239079996" y2="500.89319728110405" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_4_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="244.97533239079996" cy="501.648810067332" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="244.21971960457196" y="500.893197281104" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="244.219719604572" y="495.41500458095106" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 244.219719604572 495.41500458095106)"></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="379.09660194626997" y="655.41601206473" width="53.08179823251703" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="379.09660194626997" y="655.41601206473" width="53.08179823251703" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="396.09788963639994" y1="655.41601206473" x2="396.09788963639994" y2="642.948401091968" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_5_0__stack1"><rect x="395.3422768501719" y="642.19278830574" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="395.34227685017197" y="649.182206578349" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 395.34227685017197 649.182206578349)"></text><line class="component-pin sch-component-pin sch-port-line" x1="396.09788963639994" y1="659.19407599587" x2="396.09788963639994" y2="670.906074182404" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_5_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="396.09788963639994" cy="671.661686968632" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="395.3422768501719" y="670.906074182404" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="395.34227685017197" y="665.427881482251" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 395.34227685017197 665.427881482251)"></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="447.10175270678997" y="655.41601206473" width="53.08179823251703" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="447.10175270678997" y="655.41601206473" width="53.08179823251703" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="464.10304039692" y1="655.41601206473" x2="464.10304039692" y2="642.948401091968" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_6_0__stack1"><rect x="463.34742761069197" y="642.19278830574" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="463.34742761069197" y="649.182206578349" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 463.34742761069197 649.182206578349)"></text><line class="component-pin sch-component-pin sch-port-line" x1="464.10304039692" y1="659.19407599587" x2="464.10304039692" y2="670.906074182404" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_6_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="464.10304039692" cy="671.661686968632" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="463.34742761069197" y="670.906074182404" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="463.34742761069197" y="665.427881482251" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 463.34742761069197 665.427881482251)"></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="515.10690346731" y="655.41601206473" width="53.08179823251703" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="515.10690346731" y="655.41601206473" width="53.08179823251703" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="532.1081911574399" y1="655.41601206473" x2="532.1081911574399" y2="642.948401091968" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_7_0__stack1"><rect x="531.352578371212" y="642.19278830574" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="531.352578371212" y="649.182206578349" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 531.352578371212 649.182206578349)"></text><line class="component-pin sch-component-pin sch-port-line" x1="532.1081911574399" y1="659.19407599587" x2="532.1081911574399" y2="670.906074182404" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_7_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="532.1081911574399" cy="671.661686968632" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="531.352578371212" y="670.906074182404" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="531.352578371212" y="665.427881482251" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 531.352578371212 665.427881482251)"></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="583.11205422783" y="655.41601206473" width="53.08179823251703" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="583.11205422783" y="655.41601206473" width="53.08179823251703" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="600.11334191796" y1="655.41601206473" x2="600.11334191796" y2="642.948401091968" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_8_0__stack1"><rect x="599.3577291317321" y="642.19278830574" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="599.357729131732" y="649.182206578349" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 599.357729131732 649.182206578349)"></text><line class="component-pin sch-component-pin sch-port-line" x1="600.11334191796" y1="659.19407599587" x2="600.11334191796" y2="670.906074182404" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_8_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="600.11334191796" cy="671.661686968632" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="599.3577291317321" y="670.906074182404" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="599.357729131732" y="665.427881482251" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 599.357729131732 665.427881482251)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_9__stack1"><rect class="component chip sch-component-body" x="651.11720498835" y="655.41601206473" width="53.08179823251703" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="651.11720498835" y="655.41601206473" width="53.08179823251703" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="668.11849267848" y1="655.41601206473" x2="668.11849267848" y2="642.948401091968" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_9_0__stack1"><rect x="667.3628798922521" y="642.19278830574" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="667.362879892252" y="649.182206578349" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 667.362879892252 649.182206578349)"></text><line class="component-pin sch-component-pin sch-port-line" x1="668.11849267848" y1="659.19407599587" x2="668.11849267848" y2="670.906074182404" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_9_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="668.11849267848" cy="671.661686968632" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="667.3628798922521" y="670.906074182404" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="667.362879892252" y="665.427881482251" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 667.362879892252 665.427881482251)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_10__stack1"><rect class="component chip sch-component-body" x="719.12235574887" y="655.41601206473" width="66.68282838462108" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="719.12235574887" y="655.41601206473" width="66.68282838462108" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="736.123643439" y1="655.41601206473" x2="736.123643439" y2="642.948401091968" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_10_0__stack1"><rect x="735.3680306527721" y="642.19278830574" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="735.368030652772" y="649.182206578349" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 735.368030652772 649.182206578349)"></text><line class="component-pin sch-component-pin sch-port-line" x1="736.123643439" y1="659.19407599587" x2="736.123643439" y2="670.906074182404" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_10_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="736.123643439" cy="671.661686968632" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="735.3680306527721" y="670.906074182404" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="735.368030652772" y="665.427881482251" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 735.368030652772 665.427881482251)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_11__stack1"><rect class="component chip sch-component-body" x="375.31853801513" y="474.446749763124" width="3.778063931139968" height="25.690834731752034" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="375.31853801513" y="474.446749763124" width="3.778063931139968" height="25.690834731752034" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="375.31853801513" y1="487.292167129" x2="363.60653982859594" y2="487.292167129" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_11_0__stack1"><rect x="362.8509270423679" y="486.536554342772" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="369.462538921863" y="486.53655434277204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="379.09660194626997" y1="487.292167129" x2="390.80860013280403" y2="487.292167129" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_11_1__stack1"><rect x="390.052987346576" y="486.536554342772" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="384.95260103953694" y="486.53655434277204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_12__stack1"><rect class="component chip sch-component-body" x="360.20628229056996" y="545.85215806167" width="71.21650510198901" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="360.20628229056996" y="545.85215806167" width="71.21650510198901" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="377.2075699807" y1="545.85215806167" x2="377.2075699807" y2="533.384547088908" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_12_0__stack1"><rect x="376.45195719447196" y="532.62893430268" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.451957194472" y="539.618352575289" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 376.451957194472 539.618352575289)"></text><line class="component-pin sch-component-pin sch-port-line" x1="377.2075699807" y1="549.63022199281" x2="377.2075699807" y2="561.342220179344" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_12_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="377.2075699807" cy="562.097832965572" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="376.45195719447196" y="561.342220179344" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.451957194472" y="555.864027479191" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 376.451957194472 555.864027479191)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_13__stack1"><rect class="component chip sch-component-body" x="360.20628229057" y="598.74505309763" width="62.14915166725302" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="360.20628229057" y="598.74505309763" width="62.14915166725302" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="377.2075699807" y1="598.74505309763" x2="377.2075699807" y2="586.277442124868" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_13_0__stack1"><rect x="376.45195719447196" y="585.52182933864" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.451957194472" y="592.511247611249" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 376.451957194472 592.511247611249)"></text><line class="component-pin sch-component-pin sch-port-line" x1="377.2075699807" y1="602.52311702877" x2="377.2075699807" y2="614.2351152153041" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_13_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="377.2075699807" cy="614.990728001532" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="376.45195719447196" y="614.2351152153041" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="376.451957194472" y="608.756922515151" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 376.451957194472 608.756922515151)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_14__stack1"><rect class="component chip sch-component-body" x="756.90299506027" y="485.40313516343" width="53.08179823251703" height="3.778063931140025" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="756.90299506027" y="485.40313516343" width="53.08179823251703" height="3.778063931140025" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="773.9042827504" y1="485.40313516343" x2="773.9042827504" y2="473.691136976896" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_14_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="773.9042827504" cy="472.935524190668" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="773.148669964172" y="472.17991140443996" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="773.148669964172" y="479.169329677049" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 773.148669964172 479.169329677049)"></text><line class="component-pin sch-component-pin sch-port-line" x1="773.9042827504" y1="489.18119909457005" x2="773.9042827504" y2="500.89319728110405" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_14_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="773.9042827504" cy="501.648810067332" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="773.148669964172" y="500.893197281104" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="773.148669964172" y="495.41500458095106" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 773.148669964172 495.41500458095106)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_15__stack1"><rect class="component chip sch-component-body" x="719.12235574887" y="409.84185654063003" width="53.08179823251703" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="719.12235574887" y="409.84185654063003" width="53.08179823251703" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="736.123643439" y1="409.84185654063003" x2="736.123643439" y2="397.374245567868" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_15_0__stack1"><rect x="735.3680306527721" y="396.61863278164" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="735.368030652772" y="403.608051054249" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 735.368030652772 403.608051054249)"></text><line class="component-pin sch-component-pin sch-port-line" x1="736.123643439" y1="413.61992047177" x2="736.123643439" y2="425.331918658304" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_15_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="736.123643439" cy="426.08753144453203" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="735.3680306527721" y="425.331918658304" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="735.368030652772" y="419.853725958151" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 735.368030652772 419.853725958151)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_16__stack1"><rect class="component chip sch-component-body" x="692.67590823089" y="334.28057791783" width="53.08179823251703" height="3.778063931140025" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="692.67590823089" y="334.28057791783" width="53.08179823251703" height="3.778063931140025" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="709.67719592102" y1="334.28057791783" x2="709.67719592102" y2="322.568579731296" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_16_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="709.67719592102" cy="321.812966945068" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="708.9215831347921" y="321.05735415884" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="708.921583134792" y="328.04677243144897" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 708.921583134792 328.04677243144897)"></text><line class="component-pin sch-component-pin sch-port-line" x1="709.67719592102" y1="338.05864184897" x2="709.67719592102" y2="349.770640035504" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_16_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="709.67719592102" cy="350.52625282173204" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="708.9215831347921" y="349.770640035504" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="708.921583134792" y="344.292447335351" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 708.921583134792 344.292447335351)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_17__stack1"><rect class="component chip sch-component-body" x="722.90041968001" y="270.05349108845" width="44.014444797780925" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="722.90041968001" y="270.05349108845" width="44.014444797780925" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="739.90170737014" y1="270.05349108845" x2="739.90170737014" y2="257.58588011568804" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_17_0__stack1"><rect x="739.146094583912" y="256.83026732946" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="739.146094583912" y="263.819685602069" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 739.146094583912 263.819685602069)"></text><line class="component-pin sch-component-pin sch-port-line" x1="739.90170737014" y1="273.83155501959" x2="739.90170737014" y2="285.543553206124" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_17_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="739.90170737014" cy="286.299165992352" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="739.146094583912" y="285.543553206124" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="739.146094583912" y="280.065360505971" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 739.146094583912 280.065360505971)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_18__stack1"><rect class="component chip sch-component-body" x="766.34815488812" y="209.98227458332403" width="15.112255724559986" height="25.690834731751977" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="766.34815488812" y="209.98227458332403" width="15.112255724559986" height="25.690834731751977" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="766.34815488812" y1="222.82769194920002" x2="751.991511949788" y2="222.82769194920002" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_18_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="751.23589916356" cy="222.82769194920002" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="750.480286377332" y="222.07207916297202" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="758.7920270258401" y="222.07207916297202" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="781.46041061268" y1="222.82769194920002" x2="796.57266633724" y2="222.82769194920002" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_18_1__stack1"><rect x="795.817053551012" y="222.07207916297202" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="789.01653847496" y="222.07207916297202" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_19__stack1"><rect class="component chip sch-component-body" x="348.87209049715" y="166.1567329821" width="56.67095896709998" height="22.66838358683998" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="348.87209049715" y="166.1567329821" width="56.67095896709998" height="22.66838358683998" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="348.87209049715" y1="173.71286084438" x2="333.75983477258995" y2="173.71286084438" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_19_0__stack1"><rect x="333.0042219863619" y="172.957248058152" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="341.31596263486995" y="172.95724805815203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="348.87209049715" y1="181.26898870666" x2="333.75983477258995" y2="181.26898870666" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_19_1__stack1"><rect x="333.0042219863619" y="180.513375920432" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="341.31596263486995" y="180.513375920432" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="405.54304946425" y1="181.26898870666" x2="419.899692402582" y2="181.26898870666" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_19_2__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="420.65530518880996" cy="181.26898870666" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="419.89969240258193" y="180.513375920432" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="413.09917732653" y="180.513375920432" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="405.54304946425" y1="173.71286084438" x2="420.65530518880996" y2="173.71286084438" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_19_3__stack1"><rect x="419.89969240258193" y="172.957248058152" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="413.09917732653" y="172.95724805815203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_20__stack1"><rect class="component chip sch-component-body" x="602.00237388353" y="153.31131561622402" width="3.778063931139968" height="25.690834731751977" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="602.00237388353" y="153.31131561622402" width="3.778063931139968" height="25.690834731751977" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="602.00237388353" y1="166.1567329821" x2="593.312826841908" y2="166.1567329821" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_20_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="592.55721405568" cy="166.1567329821" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="591.801601269452" y="165.401120195872" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="597.279793969605" y="165.401120195872" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="605.78043781467" y1="166.1567329821" x2="615.22559764252" y2="166.1567329821" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_20_1__stack1"><rect x="614.4699848562921" y="165.401120195872" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="610.503017728595" y="165.401120195872" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_21__stack1"><rect class="component chip sch-component-body" x="397.98692160197" y="115.15286991171001" width="57.61547494988503" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="397.98692160197" y="115.15286991171001" width="57.61547494988503" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="414.9882092921" y1="115.15286991171001" x2="414.9882092921" y2="102.68525893894804" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_21_0__stack1"><rect x="414.232596505872" y="101.92964615272004" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="414.23259650587204" y="108.919064425329" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 414.23259650587204 108.919064425329)"></text><line class="component-pin sch-component-pin sch-port-line" x1="414.9882092921" y1="118.93093384284998" x2="414.9882092921" y2="130.64293202938404" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_21_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="414.9882092921" cy="131.398544815612" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="414.232596505872" y="130.642932029384" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="414.23259650587204" y="125.164739329231" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 414.23259650587204 125.164739329231)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_22__stack1"><rect class="component chip sch-component-body" x="549.10947884757" y="115.15286991171001" width="62.14915166725302" height="3.778063931139968" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="549.10947884757" y="115.15286991171001" width="62.14915166725302" height="3.778063931139968" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="566.1107665377" y1="115.15286991171001" x2="566.1107665377" y2="102.68525893894804" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_22_0__stack1"><rect x="565.355153751472" y="101.92964615272004" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="565.355153751472" y="108.919064425329" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 565.355153751472 108.919064425329)"></text><line class="component-pin sch-component-pin sch-port-line" x1="566.1107665377" y1="118.93093384284998" x2="566.1107665377" y2="130.64293202938404" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_22_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="566.1107665377" cy="131.398544815612" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="565.355153751472" y="130.642932029384" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="565.355153751472" y="125.164739329231" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 565.355153751472 125.164739329231)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_23__stack1"><rect class="component chip sch-component-body" x="919.35974409929" y="434.39927209304" width="86.89547041622006" height="30.22451144912003" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="919.35974409929" y="434.39927209304" width="86.89547041622006" height="30.22451144912003" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="919.35974409929" y1="441.95539995532" x2="905.003101160958" y2="441.95539995532" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_23_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="904.24748837473" cy="441.95539995532" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="903.491875588502" y="441.19978716909196" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="911.8036162370099" y="441.199787169092" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="919.35974409929" y1="449.51152781760004" x2="904.24748837473" y2="449.51152781760004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_23_1__stack1"><rect x="903.491875588502" y="448.755915031372" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="911.8036162370099" y="448.755915031372" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="919.35974409929" y1="457.06765567988003" x2="905.003101160958" y2="457.06765567988003" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_23_2__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="904.24748837473" cy="457.06765567988003" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="903.491875588502" y="456.312042893652" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="911.8036162370099" y="456.312042893652" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1006.25521451551" y1="457.06765567988003" x2="1021.36747024007" y2="457.06765567988003" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_23_3__stack1"><rect x="1020.611857453842" y="456.312042893652" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1013.8113423777901" y="456.312042893652" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1006.25521451551" y1="449.51152781760004" x2="1021.36747024007" y2="449.51152781760004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_23_4__stack1"><rect x="1020.611857453842" y="448.755915031372" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1013.8113423777901" y="448.755915031372" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1006.25521451551" y1="441.95539995532" x2="1021.36747024007" y2="441.95539995532" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_23_5__stack1"><rect x="1020.611857453842" y="441.19978716909196" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1013.8113423777901" y="441.199787169092" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_24__stack1"><rect class="component chip sch-component-body" x="1092.3950721455021" y="114.79564074379698" width="5.28928950359591" height="27.16090585380607" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="1092.3950721455021" y="114.79564074379698" width="5.28928950359591" height="27.16090585380607" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="1092.3950721455021" y1="130.26512563627" x2="1078.0384292071699" y2="130.26512563627" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_24_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="1077.282816420942" cy="130.26512563627" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="1076.527203634714" y="129.509512850042" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1084.838944283222" y="129.50951285004203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1097.684361649098" y1="130.26512563627" x2="1112.7966173736581" y2="130.26512563627" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_24_1__stack1"><rect x="1112.04100458743" y="129.509512850042" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1105.2404895113782" y="129.50951285004203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_25__stack1"><rect class="component chip sch-component-body" x="995.2988291152041" y="115.530676304824" width="10.578579007191934" height="25.690834731751977" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="995.2988291152041" y="115.530676304824" width="10.578579007191934" height="25.690834731751977" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="995.2988291152041" y1="128.37609367070002" x2="980.942186176872" y2="128.37609367070002" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_25_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="980.1865733906441" cy="128.37609367070002" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="979.4309606044161" y="127.62048088447202" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="987.742701252924" y="127.62048088447204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1005.877408122396" y1="128.37609367070002" x2="1020.234051060728" y2="128.37609367070002" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_25_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="1020.989663846956" cy="128.37609367070002" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="1020.234051060728" y="127.62048088447202" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1013.4335359846759" y="127.62048088447204" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_26__stack1"><rect class="component chip sch-component-body" x="884.6015559328021" y="152.576280055197" width="5.28928950359591" height="27.160905853806014" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="884.6015559328021" y="152.576280055197" width="5.28928950359591" height="27.160905853806014" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="884.6015559328021" y1="168.04576494767" x2="870.24491299447" y2="168.04576494767" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_26_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="869.489300208242" cy="168.04576494767" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="868.733687422014" y="167.290152161442" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="877.0454280705219" y="167.29015216144202" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="889.890845436398" y1="168.04576494767" x2="905.0031011609581" y2="168.04576494767" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_26_1__stack1"><rect x="904.2474883747301" y="167.290152161442" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="897.4469732986781" y="167.29015216144202" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_27__stack1"><rect class="component chip sch-component-body" x="976.4085094595041" y="153.31131561622402" width="10.57857900719182" height="25.690834731751977" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="976.4085094595041" y="153.31131561622402" width="10.57857900719182" height="25.690834731751977" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="976.4085094595041" y1="166.1567329821" x2="961.296253734944" y2="166.1567329821" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_27_0__stack1"><rect x="960.540640948716" y="165.401120195872" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="968.8523815972239" y="165.401120195872" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="986.9870884666959" y1="166.1567329821" x2="1002.099344191256" y2="166.1567329821" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_27_1__stack1"><rect x="1001.343731405028" y="165.401120195872" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="994.543216328976" y="165.401120195872" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_28__stack1"><rect class="component chip sch-component-body" x="964.69651127297" y="251.16317143275" width="48.54812151514898" height="3.7780639311399966" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="964.69651127297" y="251.16317143275" width="48.54812151514898" height="3.7780639311399966" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="981.6977989631" y1="251.16317143275" x2="981.6977989631" y2="238.695560459988" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_28_0__stack1"><rect x="980.942186176872" y="237.93994767376" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="980.942186176872" y="244.92936594636902" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 980.942186176872 244.92936594636902)"></text><line class="component-pin sch-component-pin sch-port-line" x1="981.6977989631" y1="254.94123536389" x2="981.6977989631" y2="266.65323355042403" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_28_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="981.6977989631" cy="267.408846336652" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="980.942186176872" y="266.653233550424" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="980.942186176872" y="261.175040850271" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 980.942186176872 261.175040850271)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_29__stack1"><rect class="component chip sch-component-body" x="912.2758742284025" y="33.924495392200015" width="25.501931535195126" height="37.780639311399966" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="912.2758742284025" y="33.924495392200015" width="25.501931535195126" height="37.780639311399966" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="937.7778057635976" y1="41.48062325447995" x2="952.8900614881575" y2="41.48062325447995" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_29_0__stack1"><rect x="952.1344487019295" y="40.72501046825195" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="945.3339336258775" y="40.72501046825198" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="937.7778057635976" y1="49.03675111676" x2="952.1344487019296" y2="49.03675111676" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_29_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="952.8900614881575" cy="49.03675111676" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="952.1344487019295" y="48.281138330532" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="945.3339336258775" y="48.28113833053203" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="937.7778057635976" y1="56.592878979039995" x2="952.8900614881575" y2="56.592878979039995" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_29_2__stack1"><rect x="952.1344487019295" y="55.837266192811995" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="945.3339336258775" y="55.837266192812024" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="937.7778057635976" y1="64.14900684132004" x2="952.1344487019296" y2="64.14900684132004" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_29_3__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="952.8900614881575" cy="64.14900684132004" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="952.1344487019295" y="63.393394055092045" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="945.3339336258775" y="63.39339405509202" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_30__stack1"><rect class="component chip sch-component-body" x="876.3842668825725" y="589.29989326978" width="59.504506915454954" height="98.22966220963997" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="876.3842668825725" y="589.29989326978" width="59.504506915454954" height="98.22966220963997" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="596.85602113206" x2="951.0010295225875" y2="596.85602113206" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_0__stack1"><rect x="950.2454167363595" y="596.1004083458321" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="596.1004083458321" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="604.41214899434" x2="951.0010295225875" y2="604.41214899434" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_1__stack1"><rect x="950.2454167363595" y="603.656536208112" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="603.656536208112" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="611.96827685662" x2="951.0010295225875" y2="611.96827685662" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_2__stack1"><rect x="950.2454167363595" y="611.2126640703921" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="611.2126640703921" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="619.5244047189001" x2="951.0010295225875" y2="619.5244047189001" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_3__stack1"><rect x="950.2454167363595" y="618.7687919326721" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="618.768791932672" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="679.97342761714" x2="950.2454167363595" y2="679.97342761714" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_4__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="951.0010295225875" cy="679.97342761714" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="950.2454167363595" y="679.2178148309121" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="679.217814830912" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="657.3050440303" x2="950.2454167363595" y2="657.3050440303" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_5__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="951.0010295225875" cy="657.3050440303" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="950.2454167363595" y="656.549431244072" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="656.549431244072" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="649.7489161680201" x2="951.0010295225875" y2="649.7489161680201" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_6__stack1"><rect x="950.2454167363595" y="648.9933033817921" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="648.993303381792" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="627.08053258118" x2="951.0010295225875" y2="627.08053258118" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_7__stack1"><rect x="950.2454167363595" y="626.324919794952" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="626.324919794952" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="642.19278830574" x2="951.0010295225875" y2="642.19278830574" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_8__stack1"><rect x="950.2454167363595" y="641.437175519512" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="641.437175519512" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="634.6366604434601" x2="951.0010295225875" y2="634.6366604434601" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_9__stack1"><rect x="950.2454167363595" y="633.8810476572321" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="633.8810476572321" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="672.4172997548601" x2="950.2454167363595" y2="672.4172997548601" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_10__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="951.0010295225875" cy="672.4172997548601" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="950.2454167363595" y="671.6616869686321" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="671.661686968632" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="935.8887737980275" y1="664.86117189258" x2="950.2454167363595" y2="664.86117189258" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_30_11__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="951.0010295225875" cy="664.86117189258" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="950.2454167363595" y="664.1055591063521" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="943.4449016603076" y="664.1055591063521" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_31__stack1"><rect class="component chip sch-component-body" x="885.3571687190299" y="531.117708730224" width="3.7780639311401956" height="25.690834731752034" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="885.3571687190299" y="531.117708730224" width="3.7780639311401956" height="25.690834731752034" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="885.3571687190299" y1="543.9631260961" x2="876.667621677408" y2="543.9631260961" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_31_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="875.91200889118" cy="543.9631260961" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="875.156396104952" y="543.2075133098721" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="880.634588805105" y="543.207513309872" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="889.1352326501701" y1="543.9631260961" x2="898.58039247802" y2="543.9631260961" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_31_1__stack1"><rect x="897.8247796917921" y="543.2075133098721" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="893.857812564095" y="543.207513309872" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_32__stack1"><rect class="component chip sch-component-body" x="1017.5894063089299" y="531.117708730224" width="3.778063931140082" height="25.690834731752034" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="1017.5894063089299" y="531.117708730224" width="3.778063931140082" height="25.690834731752034" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="1017.5894063089299" y1="543.9631260961" x2="1008.899859267308" y2="543.9631260961" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_32_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="1008.14424648108" cy="543.9631260961" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="1007.388633694852" y="543.2075133098721" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1012.866826395005" y="543.207513309872" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1021.36747024007" y1="543.9631260961" x2="1030.81263006792" y2="543.9631260961" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_32_1__stack1"><rect x="1030.057017281692" y="543.2075133098721" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1026.090050153995" y="543.207513309872" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_33__stack1"><rect class="component chip sch-component-body" x="1072.3713333104602" y="627.08053258118" width="45.336767173679846" height="22.668383586840037" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="1072.3713333104602" y="627.08053258118" width="45.336767173679846" height="22.668383586840037" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="1072.3713333104602" y1="630.85859651232" x2="1057.2590775859" y2="630.85859651232" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_33_0__stack1"><rect x="1056.503464799672" y="630.102983726092" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1064.81520544818" y="630.102983726092" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1072.3713333104602" y1="638.4147243746" x2="1057.2590775859" y2="638.4147243746" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_33_1__stack1"><rect x="1056.503464799672" y="637.6591115883721" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1064.81520544818" y="637.6591115883721" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1072.3713333104602" y1="645.9708522368801" x2="1057.2590775859" y2="645.9708522368801" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_33_2__stack1"><rect x="1056.503464799672" y="645.2152394506521" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1064.81520544818" y="645.215239450652" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1117.70810048414" y1="642.19278830574" x2="1132.064743422472" y2="642.19278830574" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_33_3__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="1132.8203562087" cy="642.19278830574" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="1132.064743422472" y="641.437175519512" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1125.2642283464202" y="641.437175519512" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text><line class="component-pin sch-component-pin sch-port-line" x1="1117.70810048414" y1="634.6366604434601" x2="1132.8203562087" y2="634.6366604434601" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_33_4__stack1"><rect x="1132.064743422472" y="633.8810476572321" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1125.2642283464202" y="633.8810476572321" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform=""></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_34__stack1"><rect class="component chip sch-component-body" x="983.58683092867" y="749.86761034323" width="57.615474949884856" height="3.778063931140082" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="983.58683092867" y="749.86761034323" width="57.615474949884856" height="3.778063931140082" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="1000.5881186188001" y1="749.86761034323" x2="1000.5881186188001" y2="738.1556121566961" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_34_0__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="1000.5881186188001" cy="737.3999993704681" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="999.8325058325721" y="736.6443865842401" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="999.832505832572" y="743.6338048568491" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 999.832505832572 743.6338048568491)"></text><line class="component-pin sch-component-pin sch-port-line" x1="1000.5881186188001" y1="753.6456742743701" x2="1000.5881186188001" y2="765.357672460904" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_34_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="1000.5881186188001" cy="766.113285247132" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="999.8325058325721" y="765.357672460904" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="999.832505832572" y="759.8794797607511" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 999.832505832572 759.8794797607511)"></text></g><g class="sch-component" data-circuit-json-type="schematic_component" data-schematic-component-id="schematic_component_35__stack1"><rect class="component chip sch-component-body" x="1096.9287488628702" y="749.86761034323" width="62.14915166725268" height="3.778063931140082" stroke-width="0.7556127862280001px" fill="rgb(255, 255, 194)" stroke="rgb(132, 0, 0)"/><rect class="component-overlay sch-component-overlay" x="1096.9287488628702" y="749.86761034323" width="62.14915166725268" height="3.778063931140082" fill="transparent"/><line class="component-pin sch-component-pin sch-port-line" x1="1113.930036553" y1="749.86761034323" x2="1113.930036553" y2="737.3999993704681" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_35_0__stack1"><rect x="1113.174423766772" y="736.6443865842401" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1113.1744237667722" y="743.6338048568491" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 1113.1744237667722 743.6338048568491)"></text><line class="component-pin sch-component-pin sch-port-line" x1="1113.930036553" y1="753.6456742743701" x2="1113.930036553" y2="765.357672460904" stroke-width="0.7556127862280001px"/><g class="sch-port" data-schematic-port-id="source_port_35_1__stack1"><circle class="component-pin sch-component-pin sch-port-terminal" cx="1113.930036553" cy="766.113285247132" r="0.7556127862280001" stroke-width="0.7556127862280001px"/><rect x="1113.174423766772" y="765.357672460904" width="1.5112255724560002" height="1.5112255724560002" opacity="0"/></g><text class="pin-number sch-pin-number" x="1113.1744237667722" y="759.8794797607511" style="font-family: sans-serif;" fill="rgb(169, 0, 0)" text-anchor="middle" dominant-baseline="auto" font-size="5.66709589671px" transform="rotate(-90 1113.1744237667722 759.8794797607511)"></text></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_0__stack1"><circle cx="108.209418083532" cy="249.27413946718002" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_1__stack1"><circle cx="108.209418083532" cy="256.83026732946" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_2__stack1"><circle cx="108.209418083532" cy="264.38639519174" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_3__stack1"><circle cx="108.209418083532" cy="271.94252305402006" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_4__stack1"><circle cx="108.209418083532" cy="279.4986509163" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_5__stack1"><circle cx="108.209418083532" cy="287.05477877858004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_6__stack1"><circle cx="108.209418083532" cy="294.61090664086004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_7__stack1"><circle cx="108.209418083532" cy="302.16703450314003" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_8__stack1"><circle cx="108.209418083532" cy="309.72316236542" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_9__stack1"><circle cx="108.209418083532" cy="317.2792902277" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_10__stack1"><circle cx="108.209418083532" cy="324.83541808998" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_11__stack1"><circle cx="108.209418083532" cy="332.39154595226" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_12__stack1"><circle cx="108.209418083532" cy="339.94767381454" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_0_13__stack1"><circle cx="108.209418083532" cy="347.50380167682" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_0__stack1"><circle cx="173.9477304853679" cy="249.27413946718002" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_1__stack1"><circle cx="173.9477304853679" cy="256.83026732946" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_2__stack1"><circle cx="173.9477304853679" cy="264.38639519174" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_3__stack1"><circle cx="173.9477304853679" cy="271.94252305402" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_4__stack1"><circle cx="173.9477304853679" cy="279.4986509163" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_5__stack1"><circle cx="173.9477304853679" cy="287.05477877858004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_6__stack1"><circle cx="173.9477304853679" cy="294.61090664086" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_7__stack1"><circle cx="173.9477304853679" cy="302.16703450314003" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_8__stack1"><circle cx="173.9477304853679" cy="309.72316236542" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_9__stack1"><circle cx="173.9477304853679" cy="317.2792902277" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_10__stack1"><circle cx="173.9477304853679" cy="324.83541808998" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_11__stack1"><circle cx="173.9477304853679" cy="332.39154595226" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_12__stack1"><circle cx="173.9477304853679" cy="339.94767381454" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_1_13__stack1"><circle cx="173.9477304853679" cy="347.50380167682" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_0__stack1"><circle cx="499.99464774275" cy="226.60575588034007" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_1__stack1"><circle cx="499.99464774275" cy="234.16188374262006" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_2__stack1"><circle cx="499.99464774275" cy="241.71801160490008" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_3__stack1"><circle cx="499.99464774275" cy="249.27413946718005" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_4__stack1"><circle cx="499.99464774275" cy="256.83026732946007" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_5__stack1"><circle cx="499.99464774275" cy="264.38639519174006" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_6__stack1"><circle cx="499.99464774275" cy="271.94252305402006" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_7__stack1"><circle cx="499.99464774275" cy="279.49865091630005" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_8__stack1"><circle cx="499.99464774275" cy="287.05477877858004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_9__stack1"><circle cx="499.99464774275" cy="294.6109066408601" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_10__stack1"><circle cx="499.99464774275" cy="302.1670345031401" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_11__stack1"><circle cx="499.99464774275" cy="309.7231623654201" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_12__stack1"><circle cx="499.99464774275" cy="317.2792902277001" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_13__stack1"><circle cx="499.99464774275" cy="324.83541808998007" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_14__stack1"><circle cx="499.99464774275" cy="332.39154595226006" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_15__stack1"><circle cx="499.99464774275" cy="339.94767381454005" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_16__stack1"><circle cx="499.99464774275" cy="347.5038016768201" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_17__stack1"><circle cx="499.99464774275" cy="355.0599295391001" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_18__stack1"><circle cx="499.99464774275" cy="362.6160574013801" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_19__stack1"><circle cx="499.99464774275" cy="370.17218526366014" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_20__stack1"><circle cx="499.99464774275" cy="377.7283131259401" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_21__stack1"><circle cx="499.99464774275" cy="385.2844409882201" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_22__stack1"><circle cx="499.99464774275" cy="392.8405688505001" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_23__stack1"><circle cx="499.99464774275" cy="400.3966967127801" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_24__stack1"><circle cx="499.99464774275" cy="407.9528245750601" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_25__stack1"><circle cx="499.99464774275" cy="415.50895243734016" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_26__stack1"><circle cx="499.99464774275" cy="423.06508029962015" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_27__stack1"><circle cx="499.99464774275" cy="430.62120816190014" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_28__stack1"><circle cx="499.99464774275" cy="438.17733602418014" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_29__stack1"><circle cx="499.99464774275" cy="445.7334638864602" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_30__stack1"><circle cx="499.99464774275" cy="453.2895917487402" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_31__stack1"><circle cx="499.99464774275" cy="460.8457196110202" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_32__stack1"><circle cx="499.99464774275" cy="468.40184747330017" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_33__stack1"><circle cx="499.99464774275" cy="475.9579753355802" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_34__stack1"><circle cx="499.99464774275" cy="483.5141031978602" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_35__stack1"><circle cx="499.99464774275" cy="491.0702310601402" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_36__stack1"><circle cx="499.99464774275" cy="498.6263589224202" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_37__stack1"><circle cx="499.99464774275" cy="506.18248678470025" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_38__stack1"><circle cx="499.99464774275" cy="513.7386146469802" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_39__stack1"><circle cx="499.99464774275" cy="521.2947425092602" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_40__stack1"><circle cx="499.99464774275" cy="528.8508703715402" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_41__stack1"><circle cx="499.99464774275" cy="536.4069982338202" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_42__stack1"><circle cx="499.99464774275" cy="543.9631260961002" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_43__stack1"><circle cx="499.99464774275" cy="551.5192539583801" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_44__stack1"><circle cx="499.99464774275" cy="559.0753818206601" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_45__stack1"><circle cx="499.99464774275" cy="566.6315096829401" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_46__stack1"><circle cx="499.99464774275" cy="574.18763754522" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_47__stack1"><circle cx="499.99464774275" cy="581.7437654075001" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_48__stack1"><circle cx="499.99464774275" cy="589.29989326978" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_49__stack1"><circle cx="499.99464774275" cy="596.8560211320599" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_50__stack1"><circle cx="632.22688533265" cy="596.8560211320599" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_51__stack1"><circle cx="632.22688533265" cy="589.29989326978" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_52__stack1"><circle cx="632.22688533265" cy="581.7437654075" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_53__stack1"><circle cx="632.22688533265" cy="574.18763754522" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_54__stack1"><circle cx="632.22688533265" cy="566.63150968294" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_55__stack1"><circle cx="632.22688533265" cy="559.0753818206599" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_56__stack1"><circle cx="632.22688533265" cy="551.51925395838" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_57__stack1"><circle cx="632.22688533265" cy="543.9631260961" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_58__stack1"><circle cx="632.22688533265" cy="536.40699823382" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_59__stack1"><circle cx="632.22688533265" cy="528.8508703715399" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_60__stack1"><circle cx="632.22688533265" cy="521.29474250926" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_61__stack1"><circle cx="632.22688533265" cy="513.73861464698" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_62__stack1"><circle cx="632.22688533265" cy="506.18248678469996" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_63__stack1"><circle cx="632.22688533265" cy="498.62635892241997" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_64__stack1"><circle cx="632.22688533265" cy="491.07023106014" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_65__stack1"><circle cx="632.22688533265" cy="483.51410319786" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_66__stack1"><circle cx="632.22688533265" cy="475.95797533557993" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_67__stack1"><circle cx="632.22688533265" cy="468.40184747329994" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_68__stack1"><circle cx="632.22688533265" cy="460.84571961101994" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_69__stack1"><circle cx="632.22688533265" cy="453.2895917487399" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_70__stack1"><circle cx="632.22688533265" cy="445.73346388645996" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_71__stack1"><circle cx="632.22688533265" cy="438.1773360241799" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_72__stack1"><circle cx="632.22688533265" cy="430.6212081618999" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_73__stack1"><circle cx="632.22688533265" cy="423.0650802996199" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_74__stack1"><circle cx="632.22688533265" cy="415.50895243733993" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_75__stack1"><circle cx="632.22688533265" cy="407.9528245750599" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_76__stack1"><circle cx="632.22688533265" cy="400.3966967127799" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_77__stack1"><circle cx="632.22688533265" cy="392.8405688504999" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_78__stack1"><circle cx="632.22688533265" cy="385.2844409882199" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_79__stack1"><circle cx="632.22688533265" cy="377.72831312593985" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_80__stack1"><circle cx="632.22688533265" cy="370.17218526365986" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_81__stack1"><circle cx="632.22688533265" cy="362.61605740137986" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_82__stack1"><circle cx="632.22688533265" cy="355.05992953909987" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_83__stack1"><circle cx="632.22688533265" cy="347.5038016768198" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_84__stack1"><circle cx="632.22688533265" cy="339.9476738145398" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_85__stack1"><circle cx="632.22688533265" cy="332.39154595225983" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_86__stack1"><circle cx="632.22688533265" cy="324.83541808997984" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_87__stack1"><circle cx="632.22688533265" cy="317.2792902276998" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_88__stack1"><circle cx="632.22688533265" cy="309.7231623654198" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_89__stack1"><circle cx="632.22688533265" cy="302.1670345031398" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_90__stack1"><circle cx="632.22688533265" cy="294.6109066408598" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_91__stack1"><circle cx="632.22688533265" cy="287.0547787785798" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_92__stack1"><circle cx="632.22688533265" cy="279.4986509162999" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_93__stack1"><circle cx="632.22688533265" cy="271.94252305401994" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_94__stack1"><circle cx="632.22688533265" cy="264.3863951917399" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_95__stack1"><circle cx="632.22688533265" cy="256.83026732945996" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_96__stack1"><circle cx="632.22688533265" cy="249.27413946718" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_97__stack1"><circle cx="632.22688533265" cy="241.7180116049" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_98__stack1"><circle cx="632.22688533265" cy="234.16188374262003" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_2_99__stack1"><circle cx="632.22688533265" cy="226.60575588034007" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_0__stack1"><circle cx="93.85277514519998" cy="453.28959174874" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_1__stack1"><circle cx="93.85277514519998" cy="460.84571961102" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_2__stack1"><circle cx="93.85277514519998" cy="468.4018474733" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_3__stack1"><circle cx="93.85277514519998" cy="475.95797533558004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_4__stack1"><circle cx="93.85277514519998" cy="483.51410319786004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_5__stack1"><circle cx="93.85277514519998" cy="491.07023106014003" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_6__stack1"><circle cx="93.85277514519998" cy="498.62635892242" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_7__stack1"><circle cx="93.85277514519998" cy="506.1824867847" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_8__stack1"><circle cx="93.85277514519998" cy="513.7386146469801" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_9__stack1"><circle cx="93.85277514519998" cy="521.29474250926" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_10__stack1"><circle cx="169.41405376799997" cy="521.29474250926" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_11__stack1"><circle cx="169.41405376799997" cy="513.7386146469801" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_12__stack1"><circle cx="169.41405376799997" cy="506.1824867847" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_13__stack1"><circle cx="169.41405376799997" cy="498.62635892242" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_14__stack1"><circle cx="169.41405376799997" cy="491.07023106014003" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_15__stack1"><circle cx="169.41405376799997" cy="483.51410319786004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_16__stack1"><circle cx="169.41405376799997" cy="475.95797533558004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_17__stack1"><circle cx="169.41405376799997" cy="468.4018474733" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_18__stack1"><circle cx="169.41405376799997" cy="460.84571961102" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_3_19__stack1"><circle cx="169.41405376799997" cy="453.28959174874" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_0__stack1"><circle cx="244.97533239079996" cy="472.935524190668" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_4_1__stack1"><circle cx="244.97533239079996" cy="501.648810067332" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_0__stack1"><circle cx="396.09788963639994" cy="642.948401091968" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_5_1__stack1"><circle cx="396.09788963639994" cy="671.661686968632" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_0__stack1"><circle cx="464.10304039692" cy="642.948401091968" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_6_1__stack1"><circle cx="464.10304039692" cy="671.661686968632" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_7_0__stack1"><circle cx="532.1081911574399" cy="642.948401091968" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_7_1__stack1"><circle cx="532.1081911574399" cy="671.661686968632" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_8_0__stack1"><circle cx="600.11334191796" cy="642.948401091968" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_8_1__stack1"><circle cx="600.11334191796" cy="671.661686968632" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_9_0__stack1"><circle cx="668.11849267848" cy="642.948401091968" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_9_1__stack1"><circle cx="668.11849267848" cy="671.661686968632" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_10_0__stack1"><circle cx="736.123643439" cy="642.948401091968" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_10_1__stack1"><circle cx="736.123643439" cy="671.661686968632" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_11_0__stack1"><circle cx="363.60653982859594" cy="487.292167129" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_11_1__stack1"><circle cx="390.80860013280403" cy="487.292167129" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_12_0__stack1"><circle cx="377.2075699807" cy="533.384547088908" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_12_1__stack1"><circle cx="377.2075699807" cy="562.097832965572" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_13_0__stack1"><circle cx="377.2075699807" cy="586.277442124868" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_13_1__stack1"><circle cx="377.2075699807" cy="614.990728001532" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_14_0__stack1"><circle cx="773.9042827504" cy="472.935524190668" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_14_1__stack1"><circle cx="773.9042827504" cy="501.648810067332" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_15_0__stack1"><circle cx="736.123643439" cy="397.374245567868" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_15_1__stack1"><circle cx="736.123643439" cy="426.08753144453203" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_16_0__stack1"><circle cx="709.67719592102" cy="321.812966945068" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_16_1__stack1"><circle cx="709.67719592102" cy="350.52625282173204" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_17_0__stack1"><circle cx="739.90170737014" cy="257.58588011568804" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_17_1__stack1"><circle cx="739.90170737014" cy="286.299165992352" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_18_0__stack1"><circle cx="751.23589916356" cy="222.82769194920002" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_18_1__stack1"><circle cx="796.57266633724" cy="222.82769194920002" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_19_0__stack1"><circle cx="333.75983477258995" cy="173.71286084438" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_19_1__stack1"><circle cx="333.75983477258995" cy="181.26898870666" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_19_2__stack1"><circle cx="420.65530518880996" cy="181.26898870666" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_19_3__stack1"><circle cx="420.65530518880996" cy="173.71286084438" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_20_0__stack1"><circle cx="592.55721405568" cy="166.1567329821" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_20_1__stack1"><circle cx="615.22559764252" cy="166.1567329821" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_21_0__stack1"><circle cx="414.9882092921" cy="102.68525893894804" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_21_1__stack1"><circle cx="414.9882092921" cy="131.398544815612" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_22_0__stack1"><circle cx="566.1107665377" cy="102.68525893894804" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_22_1__stack1"><circle cx="566.1107665377" cy="131.398544815612" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_23_0__stack1"><circle cx="904.24748837473" cy="441.95539995532" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_23_1__stack1"><circle cx="904.24748837473" cy="449.51152781760004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_23_2__stack1"><circle cx="904.24748837473" cy="457.06765567988003" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_23_3__stack1"><circle cx="1021.36747024007" cy="457.06765567988003" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_23_4__stack1"><circle cx="1021.36747024007" cy="449.51152781760004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_23_5__stack1"><circle cx="1021.36747024007" cy="441.95539995532" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_24_0__stack1"><circle cx="1077.282816420942" cy="130.26512563627" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_24_1__stack1"><circle cx="1112.7966173736581" cy="130.26512563627" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_25_0__stack1"><circle cx="980.1865733906441" cy="128.37609367070002" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_25_1__stack1"><circle cx="1020.989663846956" cy="128.37609367070002" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_26_0__stack1"><circle cx="869.489300208242" cy="168.04576494767" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_26_1__stack1"><circle cx="905.0031011609581" cy="168.04576494767" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_27_0__stack1"><circle cx="961.296253734944" cy="166.1567329821" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_27_1__stack1"><circle cx="1002.099344191256" cy="166.1567329821" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_28_0__stack1"><circle cx="981.6977989631" cy="238.695560459988" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_28_1__stack1"><circle cx="981.6977989631" cy="267.408846336652" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_29_0__stack1"><circle cx="952.8900614881575" cy="41.48062325447995" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_29_1__stack1"><circle cx="952.8900614881575" cy="49.03675111676" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_29_2__stack1"><circle cx="952.8900614881575" cy="56.592878979039995" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_29_3__stack1"><circle cx="952.8900614881575" cy="64.14900684132004" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_0__stack1"><circle cx="951.0010295225875" cy="596.85602113206" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_1__stack1"><circle cx="951.0010295225875" cy="604.41214899434" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_2__stack1"><circle cx="951.0010295225875" cy="611.96827685662" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_3__stack1"><circle cx="951.0010295225875" cy="619.5244047189001" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_4__stack1"><circle cx="951.0010295225875" cy="679.97342761714" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_5__stack1"><circle cx="951.0010295225875" cy="657.3050440303" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_6__stack1"><circle cx="951.0010295225875" cy="649.7489161680201" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_7__stack1"><circle cx="951.0010295225875" cy="627.08053258118" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_8__stack1"><circle cx="951.0010295225875" cy="642.19278830574" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_9__stack1"><circle cx="951.0010295225875" cy="634.6366604434601" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_10__stack1"><circle cx="951.0010295225875" cy="672.4172997548601" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_30_11__stack1"><circle cx="951.0010295225875" cy="664.86117189258" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_31_0__stack1"><circle cx="875.91200889118" cy="543.9631260961" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_31_1__stack1"><circle cx="898.58039247802" cy="543.9631260961" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_32_0__stack1"><circle cx="1008.14424648108" cy="543.9631260961" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_32_1__stack1"><circle cx="1030.81263006792" cy="543.9631260961" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_33_0__stack1"><circle cx="1057.2590775859" cy="630.85859651232" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_33_1__stack1"><circle cx="1057.2590775859" cy="638.4147243746" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_33_2__stack1"><circle cx="1057.2590775859" cy="645.9708522368801" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_33_3__stack1"><circle cx="1132.8203562087" cy="642.19278830574" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_33_4__stack1"><circle cx="1132.8203562087" cy="634.6366604434601" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_34_0__stack1"><circle cx="1000.5881186188001" cy="737.3999993704681" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_34_1__stack1"><circle cx="1000.5881186188001" cy="766.113285247132" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_35_0__stack1"><circle cx="1113.930036553" cy="737.3999993704681" r="1.5112255724560002" fill="red" opacity="0"/></g><g class="schematic-port-hover sch-port-hover" data-schematic-port-id="source_port_35_1__stack1"><circle cx="1113.930036553" cy="766.113285247132" r="1.5112255724560002" fill="red" opacity="0"/></g><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_0__stack1" d="
510
514
  M 141.07857428444999,249.27413946718002
511
515
  L 137.30051035331,247.2339849443644
512
516
  L 137.30051035331,234.27774436984166
@@ -836,215 +840,187 @@ orientation: x-" data-x="11.7" data-y="-3.5" cx="524.7645951035781" cy="391.7514
836
840
  L 713.45525985216,319.7728124222524
837
841
  Z
838
842
  " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_77__stack1" x="709.67719592102" y="318.41270940704203" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="rotate(-90 709.67719592102 318.41270940704203)">XXXXXXXXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_78__stack1" d="
839
- M 1021.36747024007,457.06765567988003
840
- L 1023.4076247628856,453.28959174874
841
- L 1067.4296256885289,453.28959174874
842
- L 1067.4296256885289,460.84571961102006
843
- L 1023.4076247628856,460.84571961102006
844
- Z
845
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_78__stack1" x="1024.767727778096" y="457.06765567988003" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_79__stack1" d="
846
- M 632.22688533265,559.0753818206599
847
- L 634.2670398554656,555.29731788952
848
- L 678.2890407811088,555.29731788952
849
- L 678.2890407811088,562.8534457517999
850
- L 634.2670398554656,562.8534457517999
851
- Z
852
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_79__stack1" x="635.627142870676" y="559.0753818206599" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_80__stack1" d="
853
- M 1021.36747024007,441.95539995532
854
- L 1023.4076247628856,438.17733602417997
855
- L 1067.4296256885289,438.17733602417997
856
- L 1067.4296256885289,445.73346388646
857
- L 1023.4076247628856,445.73346388646
858
- Z
859
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_80__stack1" x="1024.767727778096" y="441.95539995532" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_81__stack1" d="
860
- M 632.22688533265,551.51925395838
861
- L 634.2670398554656,547.74119002724
862
- L 678.2890407811088,547.74119002724
863
- L 678.2890407811088,555.29731788952
864
- L 634.2670398554656,555.29731788952
865
- Z
866
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_81__stack1" x="635.627142870676" y="551.51925395838" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_82__stack1" d="
867
843
  M 93.85277514519998,498.62635892242
868
844
  L 91.81262062238439,502.40442285356005
869
845
  L 47.7906196967411,502.40442285356
870
846
  L 47.7906196967411,494.84829499128
871
847
  L 91.81262062238439,494.84829499128
872
848
  Z
873
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_82__stack1" x="90.45251760717399" y="498.62635892242" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_83__stack1" d="
849
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_78__stack1" x="90.45251760717399" y="498.62635892242" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_79__stack1" d="
874
850
  M 632.22688533265,506.18248678469996
875
851
  L 634.2670398554656,502.40442285355994
876
852
  L 678.2890407811088,502.40442285355994
877
853
  L 678.2890407811088,509.96055071584
878
854
  L 634.2670398554656,509.96055071584
879
855
  Z
880
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_83__stack1" x="635.627142870676" y="506.18248678469996" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_84__stack1" d="
856
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_79__stack1" x="635.627142870676" y="506.18248678469996" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_80__stack1" d="
881
857
  M 93.85277514519998,468.4018474733
882
858
  L 91.81262062238439,472.17991140444
883
859
  L 47.7906196967411,472.17991140443996
884
860
  L 47.7906196967411,464.62378354215997
885
861
  L 91.81262062238439,464.62378354215997
886
862
  Z
887
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_84__stack1" x="90.45251760717399" y="468.4018474733" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_85__stack1" d="
863
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_80__stack1" x="90.45251760717399" y="468.4018474733" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_81__stack1" d="
888
864
  M 632.22688533265,498.62635892241997
889
865
  L 634.2670398554656,494.84829499127994
890
866
  L 678.2890407811088,494.84829499127994
891
867
  L 678.2890407811088,502.40442285356
892
868
  L 634.2670398554656,502.40442285356
893
869
  Z
894
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_85__stack1" x="635.627142870676" y="498.62635892241997" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_86__stack1" d="
870
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_81__stack1" x="635.627142870676" y="498.62635892241997" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_82__stack1" d="
895
871
  M 952.8900614881575,64.14900684132004
896
872
  L 954.930216010973,60.37094291018005
897
873
  L 1003.3901827010621,60.37094291018005
898
874
  L 1003.3901827010621,67.92707077246004
899
875
  L 954.930216010973,67.92707077246004
900
876
  Z
901
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_86__stack1" x="956.2903190261835" y="64.14900684132004" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_87__stack1" d="
877
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_82__stack1" x="956.2903190261835" y="64.14900684132004" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_83__stack1" d="
902
878
  M 632.22688533265,438.1773360241799
903
879
  L 634.2670398554656,434.3992720930399
904
880
  L 682.7270065455547,434.3992720930399
905
881
  L 682.7270065455547,441.95539995531993
906
882
  L 634.2670398554656,441.95539995531993
907
883
  Z
908
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_87__stack1" x="635.627142870676" y="438.1773360241799" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_88__stack1" d="
884
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_83__stack1" x="635.627142870676" y="438.1773360241799" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_84__stack1" d="
909
885
  M 697.2095849482581,389.818117705588
910
886
  L 700.9876488793981,391.8582722284036
911
887
  L 700.9876488793981,449.19417044738424
912
888
  L 693.4315210171181,449.19417044738424
913
889
  L 693.4315210171181,391.8582722284036
914
890
  Z
915
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_88__stack1" x="697.2095849482581" y="393.218375243614" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="rotate(90 697.2095849482581 393.218375243614)">XXXXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_89__stack1" d="
891
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_84__stack1" x="697.2095849482581" y="393.218375243614" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="rotate(90 697.2095849482581 393.218375243614)">XXXXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_85__stack1" d="
916
892
  M 952.8900614881575,49.03675111676
917
893
  L 954.930216010973,45.258687185620005
918
894
  L 1003.3901827010621,45.258687185620005
919
895
  L 1003.3901827010621,52.8148150479
920
896
  L 954.930216010973,52.8148150479
921
897
  Z
922
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_89__stack1" x="956.2903190261835" y="49.03675111676" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_90__stack1" d="
898
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_85__stack1" x="956.2903190261835" y="49.03675111676" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_86__stack1" d="
923
899
  M 632.22688533265,407.9528245750599
924
900
  L 634.2670398554656,404.17476064391985
925
901
  L 682.7270065455547,404.17476064391985
926
902
  L 682.7270065455547,411.7308885061999
927
903
  L 634.2670398554656,411.7308885061999
928
904
  Z
929
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_90__stack1" x="635.627142870676" y="407.9528245750599" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_91__stack1" d="
905
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_86__stack1" x="635.627142870676" y="407.9528245750599" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_87__stack1" d="
930
906
  M 632.22688533265,271.94252305401994
931
907
  L 634.2670398554656,268.1644591228799
932
908
  L 687.1649723100004,268.1644591228799
933
909
  L 687.1649723100004,275.72058698515997
934
910
  L 634.2670398554656,275.72058698515997
935
911
  Z
936
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_91__stack1" x="635.627142870676" y="271.94252305401994" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_92__stack1" d="
912
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_87__stack1" x="635.627142870676" y="271.94252305401994" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_88__stack1" d="
937
913
  M 980.1865733906441,128.37609367070002
938
914
  L 978.1464188678285,132.15415760184
939
915
  L 925.2484864132937,132.15415760184
940
916
  L 925.2484864132937,124.59802973956
941
917
  L 978.1464188678285,124.59802973956002
942
918
  Z
943
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_92__stack1" x="976.786315852618" y="128.37609367070002" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_93__stack1" d="
919
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_88__stack1" x="976.786315852618" y="128.37609367070002" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_89__stack1" d="
944
920
  M 1077.282816420942,130.26512563627
945
921
  L 1075.2426618981265,134.04318956741
946
922
  L 1022.3447294435916,134.04318956741
947
923
  L 1022.3447294435916,126.48706170512999
948
924
  L 1075.2426618981265,126.48706170513
949
925
  Z
950
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_93__stack1" x="1073.882558882916" y="130.26512563627" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_94__stack1" d="
926
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_89__stack1" x="1073.882558882916" y="130.26512563627" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_90__stack1" d="
951
927
  M 622.7817255048,166.1567329821
952
928
  L 624.8218800276155,162.37866905096
953
929
  L 673.2818467177046,162.37866905096
954
930
  L 673.2818467177046,169.93479691324
955
931
  L 624.8218800276155,169.93479691324
956
932
  Z
957
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_94__stack1" x="626.181983042826" y="166.1567329821" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_95__stack1" d="
933
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_90__stack1" x="626.181983042826" y="166.1567329821" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_91__stack1" d="
958
934
  M 420.65530518880996,181.26898870666
959
935
  L 422.6954597116256,177.49092477552
960
936
  L 471.15542640171464,177.49092477552
961
937
  L 471.15542640171464,185.0470526378
962
938
  L 422.6954597116256,185.0470526378
963
939
  Z
964
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_95__stack1" x="424.05556272683594" y="181.26898870666" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_96__stack1" d="
940
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_91__stack1" x="424.05556272683594" y="181.26898870666" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_92__stack1" d="
965
941
  M 954.7790934537275,634.6366604434601
966
942
  L 956.819247976543,630.8585965123201
967
943
  L 1000.8412489021863,630.8585965123201
968
944
  L 1000.8412489021863,638.4147243746
969
945
  L 956.819247976543,638.4147243746
970
946
  Z
971
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_96__stack1" x="958.1793509917535" y="634.6366604434601" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_97__stack1" d="
947
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_92__stack1" x="958.1793509917535" y="634.6366604434601" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_93__stack1" d="
972
948
  M 904.24748837473,441.95539995532
973
949
  L 902.2073338519144,445.73346388646
974
950
  L 858.1853329262711,445.73346388645996
975
951
  L 858.1853329262711,438.17733602417997
976
952
  L 902.2073338519144,438.17733602417997
977
953
  Z
978
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_97__stack1" x="900.847230836704" y="441.95539995532" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_98__stack1" d="
954
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_93__stack1" x="900.847230836704" y="441.95539995532" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_94__stack1" d="
979
955
  M 992.7486359616844,642.19278830574
980
956
  L 994.7887904844999,638.4147243746
981
957
  L 1038.8107914101433,638.4147243746
982
958
  L 1038.8107914101433,645.97085223688
983
959
  L 994.7887904844999,645.97085223688
984
960
  Z
985
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_98__stack1" x="996.1488934997104" y="642.19278830574" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_99__stack1" d="
961
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_94__stack1" x="996.1488934997104" y="642.19278830574" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_95__stack1" d="
986
962
  M 904.24748837473,457.06765567988003
987
963
  L 902.2073338519144,460.84571961102006
988
964
  L 858.1853329262711,460.84571961102
989
965
  L 858.1853329262711,453.28959174874
990
966
  L 902.2073338519144,453.28959174874
991
967
  Z
992
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_99__stack1" x="900.847230836704" y="457.06765567988003" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_100__stack1" d="
993
- M 1068.6310500186314,438.13955538486863
994
- L 1064.8529860874914,436.099400862053
995
- L 1064.8529860874914,423.14316028753024
996
- L 1072.4091139497714,423.14316028753024
997
- L 1072.4091139497714,436.099400862053
968
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_95__stack1" x="900.847230836704" y="457.06765567988003" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_96__stack1" d="
969
+ M 1083.70552510388,438.13955538486863
970
+ L 1079.92746117274,436.099400862053
971
+ L 1079.92746117274,423.14316028753024
972
+ L 1087.48358903502,423.14316028753024
973
+ L 1087.48358903502,436.099400862053
998
974
  Z
999
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_100__stack1" x="1068.6310500186314" y="434.73929784684265" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="rotate(-90 1068.6310500186314 434.73929784684265)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_101__stack1" d="
975
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_96__stack1" x="1083.70552510388" y="434.73929784684265" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="rotate(-90 1083.70552510388 434.73929784684265)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_97__stack1" d="
1000
976
  M 954.7790934537275,619.5244047189001
1001
977
  L 956.819247976543,615.7463407877601
1002
978
  L 969.7754885510658,615.7463407877601
1003
979
  L 969.7754885510658,623.30246865004
1004
980
  L 956.819247976543,623.30246865004
1005
981
  Z
1006
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_101__stack1" x="958.1793509917535" y="619.5244047189001" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_102__stack1" d="
982
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_97__stack1" x="958.1793509917535" y="619.5244047189001" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_98__stack1" d="
1007
983
  M 1036.47972596463,630.85859651232
1008
984
  L 1032.70166203349,628.8184419895044
1009
985
  L 1032.70166203349,615.8622014149817
1010
986
  L 1040.25778989577,615.8622014149817
1011
987
  L 1040.25778989577,628.8184419895044
1012
988
  Z
1013
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_102__stack1" x="1036.47972596463" y="627.458338974294" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="rotate(-90 1036.47972596463 627.458338974294)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_103__stack1" d="
989
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_98__stack1" x="1036.47972596463" y="627.458338974294" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="rotate(-90 1036.47972596463 627.458338974294)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_99__stack1" d="
1014
990
  M 1000.5881186188001,737.3999993704681
1015
991
  L 996.8100546876601,735.3598448476525
1016
992
  L 996.8100546876601,722.4036042731298
1017
993
  L 1004.36618254994,722.4036042731298
1018
994
  L 1004.36618254994,735.3598448476525
1019
995
  Z
1020
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_103__stack1" x="1000.5881186188001" y="733.999741832442" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="rotate(-90 1000.5881186188001 733.999741832442)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_104__stack1" d="
996
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_99__stack1" x="1000.5881186188001" y="733.999741832442" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="rotate(-90 1000.5881186188001 733.999741832442)">XX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_100__stack1" d="
1021
997
  M 951.0010295225875,657.3050440303
1022
998
  L 953.041184045403,653.52698009916
1023
999
  L 997.0631849710463,653.52698009916
1024
1000
  L 997.0631849710463,661.08310796144
1025
1001
  L 953.041184045403,661.08310796144
1026
1002
  Z
1027
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_104__stack1" x="954.4012870606135" y="657.3050440303" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_105__stack1" d="
1003
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_100__stack1" x="954.4012870606135" y="657.3050440303" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_101__stack1" d="
1028
1004
  M 875.91200889118,543.9631260961
1029
1005
  L 873.8718543683644,547.74119002724
1030
1006
  L 829.8498534427212,547.74119002724
1031
1007
  L 829.8498534427212,540.1850621649601
1032
1008
  L 873.8718543683644,540.1850621649601
1033
1009
  Z
1034
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_105__stack1" x="872.511751353154" y="543.9631260961" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_106__stack1" d="
1010
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_101__stack1" x="872.511751353154" y="543.9631260961" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_102__stack1" d="
1035
1011
  M 951.0010295225875,664.86117189258
1036
1012
  L 953.041184045403,661.0831079614401
1037
1013
  L 997.0631849710463,661.0831079614401
1038
1014
  L 997.0631849710463,668.63923582372
1039
1015
  L 953.041184045403,668.63923582372
1040
1016
  Z
1041
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_106__stack1" x="954.4012870606135" y="664.86117189258" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_107__stack1" d="
1017
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_102__stack1" x="954.4012870606135" y="664.86117189258" fill="rgb(132, 0, 0)" text-anchor="start" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><path class="net-label sch-net-label" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_103__stack1" d="
1042
1018
  M 1008.14424648108,543.9631260961
1043
1019
  L 1006.1040919582645,547.74119002724
1044
1020
  L 962.0820910326212,547.74119002724
1045
1021
  L 962.0820910326212,540.1850621649601
1046
1022
  L 1006.1040919582645,540.1850621649601
1047
1023
  Z
1048
- " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_107__stack1" x="1004.743988943054" y="543.9631260961" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><text class="sch-text" x="77.22929384818394" y="237.373238084089" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 77.22929384818394, 237.373238084089)">J_DISPLAY</text><text class="sch-text" x="202.66101636203194" y="237.373238084089" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 202.66101636203194, 237.373238084089)">J_HOST</text><text class="sch-text" x="544.575802130202" y="609.323632104822" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.8005150760519895px" transform="rotate(0, 544.575802130202, 609.323632104822)">STM32F723VET6</text><text class="sch-text" x="526.44109526073" y="214.70485449724907" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 526.44109526073, 214.70485449724907)">U_MCU</text><text class="sch-text" x="140.700767891336" y="533.762353482022" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.8005150760519895px" transform="rotate(0, 140.700767891336, 533.762353482022)">SN74LVC244APWR</text><text class="sch-text" x="120.29922266317993" y="441.38869036564904" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 120.29922266317993, 441.38869036564904)">U_BUF</text><text class="sch-text" x="405.54304946425" y="193.736599679422" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.8005150760519895px" transform="rotate(0, 405.54304946425, 193.736599679422)">ABM8W_12_0000MHZ_8_B1U_T3</text><text class="sch-text" x="353.405767214518" y="161.811959461289" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 353.405767214518, 161.811959461289)">Y1</text><text class="sch-text" x="944.2949660448139" y="469.535266652642" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 944.2949660448139, 469.535266652642)">USBLC6_2SC6</text><text class="sch-text" x="930.69393589271" y="430.054498572229" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 930.69393589271, 430.054498572229)">U_ESD</text><text class="sch-text" x="923.6100660218224" y="29.579721871388983" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 923.6100660218224, 29.579721871388983)">J_SWD</text><text class="sch-text" x="908.1200039041485" y="692.4410385899021" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.8005150760519895px" transform="rotate(0, 908.1200039041485, 692.4410385899021)">TYPE-C-31-M-12</text><text class="sch-text" x="887.7184586759925" y="584.9551197489691" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 887.7184586759925, 584.9551197489691)">J_USB</text><text class="sch-text" x="1106.3739086907199" y="654.660399278502" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.8005150760519895px" transform="rotate(0, 1106.3739086907199, 654.660399278502)">AP2112K_3_3TRG1</text><text class="sch-text" x="1083.70552510388" y="622.735759060369" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 1083.70552510388, 622.735759060369)">U_LDO</text><rect class="schematic-box sch-box" x="54.56091026134385" y="232.65065817016404" width="45.33676717368007" height="9.445159827849977" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="186.79314785124387" y="232.65065817016404" width="31.735737021576085" height="9.445159827849977" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="515.10690346731" y="605.9233745667959" width="58.937797325784004" height="6.800515076052079" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="512.8400651086259" y="209.9822745833241" width="27.20206030420809" height="9.445159827849977" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="108.96503086975997" y="530.362095943996" width="63.471474043152" height="6.8005150760519655" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="106.69819251107594" y="436.666110451724" width="27.202060304208032" height="9.445159827849977" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="348.87209049715" y="190.336342141396" width="113.34191793419996" height="6.800515076051994" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="346.60525213846597" y="157.08937954736402" width="13.601030152103988" height="9.445159827849977" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="919.35974409929" y="466.135009114616" width="49.87044389104801" height="6.8005150760519655" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="917.0929057406059" y="425.331918658304" width="27.202060304207976" height="9.445159827850034" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="910.0090358697184" y="24.857141957463966" width="27.20206030420809" height="9.445159827850034" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="876.3842668825725" y="689.040781051876" width="63.47147404315194" height="6.8005150760519655" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="874.1174285238885" y="580.2325398350441" width="27.202060304207976" height="9.44515982784992" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="1072.3713333104602" y="651.260141740476" width="68.00515076051988" height="6.800515076052079" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="1070.104494951776" y="618.0131791464441" width="27.20206030420809" height="9.44515982784992" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/>
1024
+ " fill="rgba(255, 255, 255, 0.6)" stroke="rgb(132, 0, 0)" stroke-width="0.7556127862280001px"/><text class="net-label-text sch-net-label-text" data-circuit-json-type="schematic_net_label" data-schematic-net-label-id="schematic_net_label_103__stack1" x="1004.743988943054" y="543.9631260961" fill="rgb(132, 0, 0)" text-anchor="end" dominant-baseline="central" font-family="sans-serif" font-variant-numeric="tabular-nums" font-size="6.800515076052px" transform="">XXXXXXXXX</text><text class="sch-text" x="77.22929384818394" y="237.373238084089" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 77.22929384818394, 237.373238084089)">J_DISPLAY</text><text class="sch-text" x="202.66101636203194" y="237.373238084089" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 202.66101636203194, 237.373238084089)">J_HOST</text><text class="sch-text" x="544.575802130202" y="609.323632104822" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.8005150760519895px" transform="rotate(0, 544.575802130202, 609.323632104822)">STM32F723VET6</text><text class="sch-text" x="526.44109526073" y="214.70485449724907" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 526.44109526073, 214.70485449724907)">U_MCU</text><text class="sch-text" x="140.700767891336" y="533.762353482022" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.8005150760519895px" transform="rotate(0, 140.700767891336, 533.762353482022)">SN74LVC244APWR</text><text class="sch-text" x="120.29922266317993" y="441.38869036564904" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 120.29922266317993, 441.38869036564904)">U_BUF</text><text class="sch-text" x="405.54304946425" y="193.736599679422" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.8005150760519895px" transform="rotate(0, 405.54304946425, 193.736599679422)">ABM8W_12_0000MHZ_8_B1U_T3</text><text class="sch-text" x="353.405767214518" y="161.811959461289" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 353.405767214518, 161.811959461289)">Y1</text><text class="sch-text" x="944.2949660448139" y="469.535266652642" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 944.2949660448139, 469.535266652642)">USBLC6_2SC6</text><text class="sch-text" x="930.69393589271" y="430.054498572229" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 930.69393589271, 430.054498572229)">U_ESD</text><text class="sch-text" x="923.6100660218224" y="29.579721871388983" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 923.6100660218224, 29.579721871388983)">J_SWD</text><text class="sch-text" x="908.1200039041485" y="692.4410385899021" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.8005150760519895px" transform="rotate(0, 908.1200039041485, 692.4410385899021)">TYPE-C-31-M-12</text><text class="sch-text" x="887.7184586759925" y="584.9551197489691" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 887.7184586759925, 584.9551197489691)">J_USB</text><text class="sch-text" x="1106.3739086907199" y="654.660399278502" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.8005150760519895px" transform="rotate(0, 1106.3739086907199, 654.660399278502)">AP2112K_3_3TRG1</text><text class="sch-text" x="1083.70552510388" y="622.735759060369" fill="#7e22ce" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 1083.70552510388, 622.735759060369)">U_LDO</text><text class="sch-text" x="1047.8139177580501" y="436.666110451724" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 1047.8139177580501, 436.666110451724)">XXXXXXXXX</text><text class="sch-text" x="658.67333285063" y="546.229964454784" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 658.67333285063, 546.229964454784)">XXXXXXXXX</text><text class="sch-text" x="1047.8139177580501" y="453.28959174874" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 1047.8139177580501, 453.28959174874)">XXXXXXXXX</text><text class="sch-text" x="658.67333285063" y="555.29731788952" fill="#047857" text-anchor="middle" dominant-baseline="middle" font-family="sans-serif" font-size="6.800515076052px" transform="rotate(0, 658.67333285063, 555.29731788952)">XXXXXXXXX</text><rect class="schematic-box sch-box" x="54.56091026134385" y="232.65065817016404" width="45.33676717368007" height="9.445159827849977" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="186.79314785124387" y="232.65065817016404" width="31.735737021576085" height="9.445159827849977" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="515.10690346731" y="605.9233745667959" width="58.937797325784004" height="6.800515076052079" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="512.8400651086259" y="209.9822745833241" width="27.20206030420809" height="9.445159827849977" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="108.96503086975997" y="530.362095943996" width="63.471474043152" height="6.8005150760519655" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="106.69819251107594" y="436.666110451724" width="27.202060304208032" height="9.445159827849977" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="348.87209049715" y="190.336342141396" width="113.34191793419996" height="6.800515076051994" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="346.60525213846597" y="157.08937954736402" width="13.601030152103988" height="9.445159827849977" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="919.35974409929" y="466.135009114616" width="49.87044389104801" height="6.8005150760519655" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="917.0929057406059" y="425.331918658304" width="27.202060304207976" height="9.445159827850034" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="910.0090358697184" y="24.857141957463966" width="27.20206030420809" height="9.445159827850034" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="876.3842668825725" y="689.040781051876" width="63.47147404315194" height="6.8005150760519655" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="874.1174285238885" y="580.2325398350441" width="27.202060304207976" height="9.44515982784992" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="1072.3713333104602" y="651.260141740476" width="68.00515076051988" height="6.800515076052079" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/><rect class="schematic-box sch-box" x="1070.104494951776" y="618.0131791464441" width="27.20206030420809" height="9.44515982784992" stroke-width="0.7556127862280001px" stroke="rgb(132, 0, 0)" fill="transparent" stroke-dasharray="6.044902289824001 3.0224511449120004"/>
1049
1025
  </g>
1050
1026
  </svg>