@tscircuit/schematic-trace-solver 0.0.87 → 0.0.88

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 (113) hide show
  1. package/.agents/skills/schematic-trace-visualization/SKILL.md +115 -0
  2. package/.github/scripts/import-json-bug-report.ts +15 -1
  3. package/.github/workflows/json-bug-report.yml +3 -2
  4. package/AGENTS.md +22 -0
  5. package/lib/testing/PipelineStageDebugRunner.ts +344 -0
  6. package/package.json +3 -2
  7. package/scripts/debug-pipeline-stages.ts +146 -0
  8. package/site/bug-reports/bug-report-20260706T220324Z.page.tsx +4 -0
  9. package/site/bug-reports/bug-report-20260707T020342Z.page.tsx +4 -0
  10. package/site/bug-reports/bug-report-20260707T092615Z.page.tsx +4 -0
  11. package/site/bug-reports/bug-report-20260707T134549Z.page.tsx +4 -0
  12. package/site/bug-reports/bug-report-20260707T134722Z.page.tsx +4 -0
  13. package/site/bug-reports/bug-report-20260707T140410Z.page.tsx +4 -0
  14. package/site/bug-reports/bug-report-20260707T141025Z.page.tsx +4 -0
  15. package/site/bug-reports/bug-report-20260707T141421Z.page.tsx +4 -0
  16. package/tests/bug-reports/bug-report-20260706T220324Z/__snapshots__/bug-report-20260706T220324Z.snap.svg +357 -3448
  17. package/tests/bug-reports/bug-report-20260707T020342Z/__snapshots__/bug-report-20260707T020342Z.snap.svg +64 -0
  18. package/tests/bug-reports/bug-report-20260707T020342Z/bug-report-20260707T020342Z.json +233 -0
  19. package/tests/bug-reports/bug-report-20260707T020342Z/bug-report-20260707T020342Z.test.ts +12 -0
  20. package/tests/bug-reports/bug-report-20260707T092615Z/__snapshots__/bug-report-20260707T092615Z.snap.svg +2098 -0
  21. package/tests/bug-reports/bug-report-20260707T092615Z/bug-report-20260707T092615Z.json +1392 -0
  22. package/tests/bug-reports/bug-report-20260707T092615Z/bug-report-20260707T092615Z.test.ts +12 -0
  23. package/tests/bug-reports/bug-report-20260707T134549Z/__snapshots__/bug-report-20260707T134549Z.snap.svg +857 -0
  24. package/tests/bug-reports/bug-report-20260707T134549Z/bug-report-20260707T134549Z.json +652 -0
  25. package/tests/bug-reports/bug-report-20260707T134549Z/bug-report-20260707T134549Z.test.ts +12 -0
  26. package/tests/bug-reports/bug-report-20260707T134722Z/__snapshots__/bug-report-20260707T134722Z.snap.svg +275 -0
  27. package/tests/bug-reports/bug-report-20260707T134722Z/bug-report-20260707T134722Z.json +265 -0
  28. package/tests/bug-reports/bug-report-20260707T134722Z/bug-report-20260707T134722Z.test.ts +12 -0
  29. package/tests/bug-reports/bug-report-20260707T140410Z/__snapshots__/bug-report-20260707T140410Z.snap.svg +950 -0
  30. package/tests/bug-reports/bug-report-20260707T140410Z/bug-report-20260707T140410Z.json +610 -0
  31. package/tests/bug-reports/bug-report-20260707T140410Z/bug-report-20260707T140410Z.test.ts +12 -0
  32. package/tests/bug-reports/bug-report-20260707T141025Z/__snapshots__/bug-report-20260707T141025Z.snap.svg +218 -0
  33. package/tests/bug-reports/bug-report-20260707T141025Z/bug-report-20260707T141025Z.json +185 -0
  34. package/tests/bug-reports/bug-report-20260707T141025Z/bug-report-20260707T141025Z.test.ts +12 -0
  35. package/tests/bug-reports/bug-report-20260707T141421Z/__snapshots__/bug-report-20260707T141421Z.snap.svg +613 -0
  36. package/tests/bug-reports/bug-report-20260707T141421Z/bug-report-20260707T141421Z.json +499 -0
  37. package/tests/bug-reports/bug-report-20260707T141421Z/bug-report-20260707T141421Z.test.ts +12 -0
  38. package/tests/examples/__snapshots__/example01.snap.svg +59 -162
  39. package/tests/examples/__snapshots__/example02.snap.svg +64 -273
  40. package/tests/examples/__snapshots__/example03.snap.svg +85 -290
  41. package/tests/examples/__snapshots__/example04.snap.svg +50 -94
  42. package/tests/examples/__snapshots__/example05.snap.svg +73 -191
  43. package/tests/examples/__snapshots__/example06.snap.svg +49 -95
  44. package/tests/examples/__snapshots__/example07.snap.svg +65 -218
  45. package/tests/examples/__snapshots__/example08.snap.svg +61 -143
  46. package/tests/examples/__snapshots__/example09.snap.svg +123 -493
  47. package/tests/examples/__snapshots__/example10.snap.svg +57 -136
  48. package/tests/examples/__snapshots__/example11.snap.svg +64 -173
  49. package/tests/examples/__snapshots__/example12.snap.svg +58 -159
  50. package/tests/examples/__snapshots__/example13.snap.svg +78 -348
  51. package/tests/examples/__snapshots__/example14.snap.svg +77 -293
  52. package/tests/examples/__snapshots__/example15.snap.svg +140 -984
  53. package/tests/examples/__snapshots__/example16.snap.svg +62 -162
  54. package/tests/examples/__snapshots__/example17.snap.svg +67 -198
  55. package/tests/examples/__snapshots__/example18.snap.svg +69 -249
  56. package/tests/examples/__snapshots__/example19.snap.svg +63 -202
  57. package/tests/examples/__snapshots__/example20.snap.svg +60 -148
  58. package/tests/examples/__snapshots__/example21.snap.svg +73 -298
  59. package/tests/examples/__snapshots__/example22.snap.svg +62 -156
  60. package/tests/examples/__snapshots__/example23.snap.svg +66 -172
  61. package/tests/examples/__snapshots__/example24.snap.svg +64 -164
  62. package/tests/examples/__snapshots__/example25.snap.svg +76 -299
  63. package/tests/examples/__snapshots__/example26.snap.svg +64 -164
  64. package/tests/examples/__snapshots__/example27.snap.svg +83 -300
  65. package/tests/examples/__snapshots__/example28.snap.svg +54 -115
  66. package/tests/examples/__snapshots__/example29.snap.svg +257 -1299
  67. package/tests/examples/__snapshots__/example30.snap.svg +91 -293
  68. package/tests/examples/__snapshots__/example31.snap.svg +47 -88
  69. package/tests/examples/__snapshots__/example32.snap.svg +107 -405
  70. package/tests/examples/__snapshots__/example33.snap.svg +71 -180
  71. package/tests/examples/__snapshots__/example34.snap.svg +55 -116
  72. package/tests/examples/__snapshots__/example35.snap.svg +69 -176
  73. package/tests/examples/__snapshots__/example36.snap.svg +65 -159
  74. package/tests/examples/__snapshots__/example37.snap.svg +75 -223
  75. package/tests/examples/__snapshots__/example38.snap.svg +46 -76
  76. package/tests/examples/__snapshots__/example39.snap.svg +51 -106
  77. package/tests/examples/__snapshots__/example40.snap.svg +83 -270
  78. package/tests/examples/__snapshots__/example41.snap.svg +54 -118
  79. package/tests/examples/__snapshots__/example42.snap.svg +67 -194
  80. package/tests/examples/__snapshots__/example43.snap.svg +62 -168
  81. package/tests/examples/__snapshots__/example44.snap.svg +86 -369
  82. package/tests/examples/__snapshots__/example45.snap.svg +60 -169
  83. package/tests/examples/__snapshots__/example46.snap.svg +80 -342
  84. package/tests/examples/__snapshots__/example47.snap.svg +82 -323
  85. package/tests/examples/__snapshots__/example48.snap.svg +64 -167
  86. package/tests/examples/__snapshots__/example49.snap.svg +120 -565
  87. package/tests/examples/__snapshots__/example50.snap.svg +71 -189
  88. package/tests/fixtures/getLastStepGraphicsObject.ts +38 -0
  89. package/tests/fixtures/getLastStepSvg.ts +9 -0
  90. package/tests/repros/__snapshots__/bugreport-001-gnd-overlap.snap.svg +67 -218
  91. package/tests/repros/__snapshots__/manufacturePartNumber-text-box.snap.svg +47 -87
  92. package/tests/repros/__snapshots__/netlabel-connector-through-rail-label.snap.svg +73 -272
  93. package/tests/repros/__snapshots__/repro-atmega328p-fault-pullup.snap.svg +284 -0
  94. package/tests/repros/__snapshots__/repro-atmega328p-missing-gnd-netlabel.snap.svg +470 -0
  95. package/tests/repros/__snapshots__/repro-bq24074-battery-charger.snap.svg +94 -395
  96. package/tests/repros/__snapshots__/repro-cc2340r5.snap.svg +88 -467
  97. package/tests/repros/__snapshots__/repro-ina237-current-monitor.snap.svg +109 -569
  98. package/tests/repros/__snapshots__/repro130-bq27441-fuel-gauge-trace-through-c1.snap.svg +95 -459
  99. package/tests/repros/__snapshots__/repro51-overlap-junction-crossing.snap.svg +64 -176
  100. package/tests/repros/__snapshots__/trace-overlap-box-resistor.snap.svg +51 -112
  101. package/tests/repros/assets/repro-atmega328p-fault-pullup.input.json +239 -0
  102. package/tests/repros/assets/repro-atmega328p-missing-gnd-netlabel.input.json +432 -0
  103. package/tests/repros/repro-atmega328p-fault-pullup.test.ts +11 -0
  104. package/tests/repros/repro-atmega328p-missing-gnd-netlabel.test.ts +16 -0
  105. package/tests/solvers/SchematicTraceSingleLineSolver2/__snapshots__/SchematicTraceSingleLineSolver2_01-example17-d1_1-u1_1.snap.svg +59 -159
  106. package/tests/solvers/TraceCleanupSolver/__snapshots__/TraceCleanupSolver.snap.svg +54 -118
  107. package/tests/solvers/TraceLabelOverlapAvoidanceSolver/__snapshots__/TraceLabelOverlapAvoidanceSolver.snap.svg +58 -245
  108. package/tests/solvers/TraceLabelOverlapAvoidanceSolver/renderComparisonView/__snapshots__/renderComparisonView01.snap.svg +73 -222
  109. package/tests/solvers/TraceLabelOverlapAvoidanceSolver/renderComparisonView/__snapshots__/renderComparisonView02.snap.svg +65 -204
  110. package/tests/solvers/TraceLabelOverlapAvoidanceSolver/renderComparisonView/__snapshots__/renderComparisonView03.snap.svg +65 -183
  111. package/tests/solvers/TraceLabelOverlapAvoidanceSolver/sub-solver/__snapshots__/MergedNetLabelObstacles.snap.svg +54 -139
  112. package/tests/solvers/TraceLabelOverlapAvoidanceSolver/sub-solver/__snapshots__/OverlapAvoidanceStepSolver.snap.svg +61 -215
  113. package/tests/solvers/TraceLabelOverlapAvoidanceSolver/sub-solver/__snapshots__/SingleOverlapSolver.snap.svg +54 -124
@@ -1,985 +1,141 @@
1
- <svg width="640" height="640" viewBox="0 0 640 640" xmlns="http://www.w3.org/2000/svg">
2
- <rect width="100%" height="100%" fill="white" />
3
- <g>
4
- <circle data-type="point" data-label="U3.1
5
- x-" data-x="-1.1099999999999999" data-y="1.2000000000000015" cx="363.6459709379128" cy="333.6856010568031" r="3" fill="hsl(81, 100%, 50%, 0.8)" />
6
- </g>
7
- <g>
8
- <circle data-type="point" data-label="U3.2
9
- x-" data-x="-1.1099999999999999" data-y="-1.8000000000000007" cx="363.6459709379128" cy="481.6380449141347" r="3" fill="hsl(82, 100%, 50%, 0.8)" />
10
- </g>
11
- <g>
12
- <circle data-type="point" data-label="U3.3
13
- x-" data-x="-1.1099999999999999" data-y="-2.000000000000001" cx="363.6459709379128" cy="491.5015411712901" r="3" fill="hsl(83, 100%, 50%, 0.8)" />
14
- </g>
15
- <g>
16
- <circle data-type="point" data-label="U3.4
17
- x-" data-x="-1.1099999999999999" data-y="-2.200000000000001" cx="363.6459709379128" cy="501.3650374284456" r="3" fill="hsl(84, 100%, 50%, 0.8)" />
18
- </g>
19
- <g>
20
- <circle data-type="point" data-label="U3.5
21
- x-" data-x="-1.1099999999999999" data-y="-2.4000000000000012" cx="363.6459709379128" cy="511.22853368560106" r="3" fill="hsl(85, 100%, 50%, 0.8)" />
22
- </g>
23
- <g>
24
- <circle data-type="point" data-label="U3.6
25
- x-" data-x="-1.1099999999999999" data-y="-2.6000000000000014" cx="363.6459709379128" cy="521.0920299427564" r="3" fill="hsl(86, 100%, 50%, 0.8)" />
26
- </g>
27
- <g>
28
- <circle data-type="point" data-label="U3.7
29
- x-" data-x="-1.1099999999999999" data-y="-2.8000000000000016" cx="363.6459709379128" cy="530.9555261999119" r="3" fill="hsl(87, 100%, 50%, 0.8)" />
30
- </g>
31
- <g>
32
- <circle data-type="point" data-label="U3.8
33
- x-" data-x="-1.1099999999999999" data-y="-3.0000000000000018" cx="363.6459709379128" cy="540.8190224570674" r="3" fill="hsl(88, 100%, 50%, 0.8)" />
34
- </g>
35
- <g>
36
- <circle data-type="point" data-label="U3.9
37
- x-" data-x="-1.1099999999999999" data-y="-3.200000000000002" cx="363.6459709379128" cy="550.6825187142229" r="3" fill="hsl(89, 100%, 50%, 0.8)" />
38
- </g>
39
- <g>
40
- <circle data-type="point" data-label="U3.10
41
- x-" data-x="-1.1099999999999999" data-y="1.0000000000000013" cx="363.6459709379128" cy="343.54909731395855" r="3" fill="hsl(39, 100%, 50%, 0.8)" />
42
- </g>
43
- <g>
44
- <circle data-type="point" data-label="U3.11
45
- x-" data-x="-1.1099999999999999" data-y="-3.400000000000002" cx="363.6459709379128" cy="560.5460149713782" r="3" fill="hsl(40, 100%, 50%, 0.8)" />
46
- </g>
47
- <g>
48
- <circle data-type="point" data-label="U3.12
49
- x-" data-x="-1.1099999999999999" data-y="-3.6000000000000023" cx="363.6459709379128" cy="570.4095112285337" r="3" fill="hsl(41, 100%, 50%, 0.8)" />
50
- </g>
51
- <g>
52
- <circle data-type="point" data-label="U3.13
53
- x-" data-x="-1.1099999999999999" data-y="-3.8000000000000025" cx="363.6459709379128" cy="580.2730074856892" r="3" fill="hsl(42, 100%, 50%, 0.8)" />
54
- </g>
55
- <g>
56
- <circle data-type="point" data-label="U3.14
57
- x-" data-x="-1.1099999999999999" data-y="-4.000000000000002" cx="363.6459709379128" cy="590.1365037428445" r="3" fill="hsl(43, 100%, 50%, 0.8)" />
58
- </g>
59
- <g>
60
- <circle data-type="point" data-label="U3.15
61
- x+" data-x="2.69" data-y="-0.5000000000000009" cx="551.052399823866" cy="417.5253192426244" r="3" fill="hsl(44, 100%, 50%, 0.8)" />
62
- </g>
63
- <g>
64
- <circle data-type="point" data-label="U3.16
65
- x+" data-x="2.69" data-y="-0.7000000000000011" cx="551.052399823866" cy="427.3888154997798" r="3" fill="hsl(45, 100%, 50%, 0.8)" />
66
- </g>
67
- <g>
68
- <circle data-type="point" data-label="U3.17
69
- x+" data-x="2.69" data-y="-0.9000000000000012" cx="551.052399823866" cy="437.2523117569353" r="3" fill="hsl(46, 100%, 50%, 0.8)" />
70
- </g>
71
- <g>
72
- <circle data-type="point" data-label="U3.18
73
- x+" data-x="2.69" data-y="-1.1000000000000014" cx="551.052399823866" cy="447.1158080140907" r="3" fill="hsl(47, 100%, 50%, 0.8)" />
74
- </g>
75
- <g>
76
- <circle data-type="point" data-label="U3.19
77
- x+" data-x="2.69" data-y="-1.3000000000000014" cx="551.052399823866" cy="456.9793042712462" r="3" fill="hsl(48, 100%, 50%, 0.8)" />
78
- </g>
79
- <g>
80
- <circle data-type="point" data-label="U3.20
81
- x+" data-x="2.69" data-y="-1.9000000000000015" cx="551.052399823866" cy="486.5697930427125" r="3" fill="hsl(70, 100%, 50%, 0.8)" />
82
- </g>
83
- <g>
84
- <circle data-type="point" data-label="U3.21
85
- x+" data-x="2.69" data-y="-2.1000000000000014" cx="551.052399823866" cy="496.43328929986785" r="3" fill="hsl(71, 100%, 50%, 0.8)" />
86
- </g>
87
- <g>
88
- <circle data-type="point" data-label="U3.22
89
- x-" data-x="-1.1099999999999999" data-y="0.8000000000000012" cx="363.6459709379128" cy="353.412593571114" r="3" fill="hsl(72, 100%, 50%, 0.8)" />
90
- </g>
91
- <g>
92
- <circle data-type="point" data-label="U3.23
93
- x-" data-x="-1.1099999999999999" data-y="2.8000000000000016" cx="363.6459709379128" cy="254.77763099955962" r="3" fill="hsl(73, 100%, 50%, 0.8)" />
94
- </g>
95
- <g>
96
- <circle data-type="point" data-label="U3.24
97
- x+" data-x="2.69" data-y="-2.7000000000000015" cx="551.052399823866" cy="526.0237780713342" r="3" fill="hsl(74, 100%, 50%, 0.8)" />
98
- </g>
99
- <g>
100
- <circle data-type="point" data-label="U3.25
101
- x+" data-x="2.69" data-y="-2.9000000000000012" cx="551.052399823866" cy="535.8872743284896" r="3" fill="hsl(75, 100%, 50%, 0.8)" />
102
- </g>
103
- <g>
104
- <circle data-type="point" data-label="U3.26
105
- x+" data-x="2.69" data-y="-3.1000000000000014" cx="551.052399823866" cy="545.7507705856451" r="3" fill="hsl(76, 100%, 50%, 0.8)" />
106
- </g>
107
- <g>
108
- <circle data-type="point" data-label="U3.27
109
- x+" data-x="2.69" data-y="0.0999999999999992" cx="551.052399823866" cy="387.9348304711581" r="3" fill="hsl(77, 100%, 50%, 0.8)" />
110
- </g>
111
- <g>
112
- <circle data-type="point" data-label="U3.28
113
- x+" data-x="2.69" data-y="0.2999999999999994" cx="551.052399823866" cy="378.07133421400266" r="3" fill="hsl(78, 100%, 50%, 0.8)" />
114
- </g>
115
- <g>
116
- <circle data-type="point" data-label="U3.29
117
- x+" data-x="2.69" data-y="0.49999999999999956" cx="551.052399823866" cy="368.2078379568472" r="3" fill="hsl(79, 100%, 50%, 0.8)" />
118
- </g>
119
- <g>
120
- <circle data-type="point" data-label="U3.30
121
- x+" data-x="2.69" data-y="0.6999999999999997" cx="551.052399823866" cy="358.34434169969177" r="3" fill="hsl(101, 100%, 50%, 0.8)" />
122
- </g>
123
- <g>
124
- <circle data-type="point" data-label="U3.31
125
- x+" data-x="2.69" data-y="0.8999999999999995" cx="551.052399823866" cy="348.48084544253635" r="3" fill="hsl(102, 100%, 50%, 0.8)" />
126
- </g>
127
- <g>
128
- <circle data-type="point" data-label="U3.32
129
- x+" data-x="2.69" data-y="1.0999999999999996" cx="551.052399823866" cy="338.6173491853809" r="3" fill="hsl(103, 100%, 50%, 0.8)" />
130
- </g>
131
- <g>
132
- <circle data-type="point" data-label="U3.33
133
- x-" data-x="-1.1099999999999999" data-y="0.600000000000001" cx="363.6459709379128" cy="363.2760898282694" r="3" fill="hsl(104, 100%, 50%, 0.8)" />
134
- </g>
135
- <g>
136
- <circle data-type="point" data-label="U3.34
137
- x+" data-x="2.69" data-y="1.2999999999999998" cx="551.052399823866" cy="328.75385292822546" r="3" fill="hsl(105, 100%, 50%, 0.8)" />
138
- </g>
139
- <g>
140
- <circle data-type="point" data-label="U3.35
141
- x+" data-x="2.69" data-y="1.5" cx="551.052399823866" cy="318.89035667107" r="3" fill="hsl(106, 100%, 50%, 0.8)" />
142
- </g>
143
- <g>
144
- <circle data-type="point" data-label="U3.36
145
- x+" data-x="2.69" data-y="1.7000000000000002" cx="551.052399823866" cy="309.02686041391456" r="3" fill="hsl(107, 100%, 50%, 0.8)" />
146
- </g>
147
- <g>
148
- <circle data-type="point" data-label="U3.37
149
- x+" data-x="2.69" data-y="1.9000000000000004" cx="551.052399823866" cy="299.16336415675914" r="3" fill="hsl(108, 100%, 50%, 0.8)" />
150
- </g>
151
- <g>
152
- <circle data-type="point" data-label="U3.38
153
- x+" data-x="2.69" data-y="2.500000000000001" cx="551.052399823866" cy="269.5728753852928" r="3" fill="hsl(109, 100%, 50%, 0.8)" />
154
- </g>
155
- <g>
156
- <circle data-type="point" data-label="U3.39
157
- x+" data-x="2.69" data-y="2.700000000000001" cx="551.052399823866" cy="259.70937912813736" r="3" fill="hsl(110, 100%, 50%, 0.8)" />
158
- </g>
159
- <g>
160
- <circle data-type="point" data-label="U3.40
161
- x+" data-x="2.69" data-y="2.9000000000000012" cx="551.052399823866" cy="249.8458828709819" r="3" fill="hsl(132, 100%, 50%, 0.8)" />
162
- </g>
163
- <g>
164
- <circle data-type="point" data-label="U3.41
165
- x+" data-x="2.69" data-y="3.1000000000000014" cx="551.052399823866" cy="239.98238661382646" r="3" fill="hsl(133, 100%, 50%, 0.8)" />
166
- </g>
167
- <g>
168
- <circle data-type="point" data-label="U3.42
169
- x-" data-x="-1.1099999999999999" data-y="0.4000000000000008" cx="363.6459709379128" cy="373.13958608542487" r="3" fill="hsl(134, 100%, 50%, 0.8)" />
170
- </g>
171
- <g>
172
- <circle data-type="point" data-label="U3.43
173
- x-" data-x="-1.1099999999999999" data-y="-1.6000000000000005" cx="363.6459709379128" cy="471.7745486569793" r="3" fill="hsl(135, 100%, 50%, 0.8)" />
174
- </g>
175
- <g>
176
- <circle data-type="point" data-label="U3.44
177
- x-" data-x="-1.1099999999999999" data-y="2.0000000000000018" cx="363.6459709379128" cy="294.23161602818135" r="3" fill="hsl(136, 100%, 50%, 0.8)" />
178
- </g>
179
- <g>
180
- <circle data-type="point" data-label="U3.45
181
- x-" data-x="-1.1099999999999999" data-y="1.8000000000000016" cx="363.6459709379128" cy="304.09511228533677" r="3" fill="hsl(137, 100%, 50%, 0.8)" />
182
- </g>
183
- <g>
184
- <circle data-type="point" data-label="U3.46
185
- x-" data-x="-1.1099999999999999" data-y="-1.4000000000000004" cx="363.6459709379128" cy="461.9110523998238" r="3" fill="hsl(138, 100%, 50%, 0.8)" />
186
- </g>
187
- <g>
188
- <circle data-type="point" data-label="U3.47
189
- x-" data-x="-1.1099999999999999" data-y="-1.2000000000000002" cx="363.6459709379128" cy="452.0475561426684" r="3" fill="hsl(139, 100%, 50%, 0.8)" />
190
- </g>
191
- <g>
192
- <circle data-type="point" data-label="U3.48
193
- x-" data-x="-1.1099999999999999" data-y="-1" cx="363.6459709379128" cy="442.1840598855129" r="3" fill="hsl(140, 100%, 50%, 0.8)" />
194
- </g>
195
- <g>
196
- <circle data-type="point" data-label="U3.49
197
- x-" data-x="-1.1099999999999999" data-y="0.20000000000000062" cx="363.6459709379128" cy="383.0030823425803" r="3" fill="hsl(141, 100%, 50%, 0.8)" />
198
- </g>
199
- <g>
200
- <circle data-type="point" data-label="U3.50
201
- x-" data-x="-1.1099999999999999" data-y="2.600000000000002" cx="363.6459709379128" cy="264.64112725671504" r="3" fill="hsl(163, 100%, 50%, 0.8)" />
202
- </g>
203
- <g>
204
- <circle data-type="point" data-label="U3.51
205
- x-" data-x="-1.1099999999999999" data-y="3.0000000000000018" cx="363.6459709379128" cy="244.91413474240417" r="3" fill="hsl(164, 100%, 50%, 0.8)" />
206
- </g>
207
- <g>
208
- <circle data-type="point" data-label="U3.52
209
- x-" data-x="-1.1099999999999999" data-y="3.200000000000002" cx="363.6459709379128" cy="235.05063848524873" r="3" fill="hsl(165, 100%, 50%, 0.8)" />
210
- </g>
211
- <g>
212
- <circle data-type="point" data-label="U3.53
213
- x-" data-x="-1.1099999999999999" data-y="3.4000000000000017" cx="363.6459709379128" cy="225.1871422280933" r="3" fill="hsl(166, 100%, 50%, 0.8)" />
214
- </g>
215
- <g>
216
- <circle data-type="point" data-label="U3.54
217
- x-" data-x="-1.1099999999999999" data-y="3.600000000000002" cx="363.6459709379128" cy="215.32364597093786" r="3" fill="hsl(167, 100%, 50%, 0.8)" />
218
- </g>
219
- <g>
220
- <circle data-type="point" data-label="U3.55
221
- x-" data-x="-1.1099999999999999" data-y="3.8000000000000016" cx="363.6459709379128" cy="205.46014971378244" r="3" fill="hsl(168, 100%, 50%, 0.8)" />
222
- </g>
223
- <g>
224
- <circle data-type="point" data-label="U3.56
225
- x-" data-x="-1.1099999999999999" data-y="4.000000000000002" cx="363.6459709379128" cy="195.596653456627" r="3" fill="hsl(169, 100%, 50%, 0.8)" />
226
- </g>
227
- <g>
228
- <circle data-type="point" data-label="U3.57
229
- x-" data-x="-1.1099999999999999" data-y="-0.39999999999999947" cx="363.6459709379128" cy="412.5935711140466" r="3" fill="hsl(170, 100%, 50%, 0.8)" />
230
- </g>
231
- <g>
232
- <circle data-type="point" data-label="C12.1
233
- y+" data-x="-1.5675" data-y="6.505000000000002" cx="341.08322324966974" cy="72.05636283575518" r="3" fill="hsl(351, 100%, 50%, 0.8)" />
234
- </g>
235
- <g>
236
- <circle data-type="point" data-label="C12.2
237
- y-" data-x="-1.5675" data-y="5.405000000000002" cx="341.08322324966974" cy="126.30559225011007" r="3" fill="hsl(352, 100%, 50%, 0.8)" />
238
- </g>
239
- <g>
240
- <circle data-type="point" data-label="C14.1
241
- y+" data-x="-0.6374999999999998" data-y="6.505000000000002" cx="386.94848084544253" cy="72.05636283575518" r="3" fill="hsl(113, 100%, 50%, 0.8)" />
242
- </g>
243
- <g>
244
- <circle data-type="point" data-label="C14.2
245
- y-" data-x="-0.6374999999999998" data-y="5.405000000000002" cx="386.94848084544253" cy="126.30559225011007" r="3" fill="hsl(114, 100%, 50%, 0.8)" />
246
- </g>
247
- <g>
248
- <circle data-type="point" data-label="C8.1
249
- y+" data-x="-2.4975" data-y="6.505000000000002" cx="295.21796565389695" cy="72.05636283575518" r="3" fill="hsl(8, 100%, 50%, 0.8)" />
250
- </g>
251
- <g>
252
- <circle data-type="point" data-label="C8.2
253
- y-" data-x="-2.4975" data-y="5.405000000000002" cx="295.21796565389695" cy="126.30559225011007" r="3" fill="hsl(9, 100%, 50%, 0.8)" />
254
- </g>
255
- <g>
256
- <circle data-type="point" data-label="C13.1
257
- y+" data-x="0.29250000000000037" data-y="6.505000000000002" cx="432.8137384412153" cy="72.05636283575518" r="3" fill="hsl(232, 100%, 50%, 0.8)" />
258
- </g>
259
- <g>
260
- <circle data-type="point" data-label="C13.2
261
- y-" data-x="0.2925000000000005" data-y="5.405000000000002" cx="432.8137384412153" cy="126.30559225011007" r="3" fill="hsl(233, 100%, 50%, 0.8)" />
262
- </g>
263
- <g>
264
- <circle data-type="point" data-label="C15.1
265
- y+" data-x="1.2225000000000006" data-y="6.505000000000002" cx="478.6789960369881" cy="72.05636283575518" r="3" fill="hsl(354, 100%, 50%, 0.8)" />
266
- </g>
267
- <g>
268
- <circle data-type="point" data-label="C15.2
269
- y-" data-x="1.2225000000000006" data-y="5.405000000000002" cx="478.6789960369881" cy="126.30559225011007" r="3" fill="hsl(355, 100%, 50%, 0.8)" />
270
- </g>
271
- <g>
272
- <circle data-type="point" data-label="C19.1
273
- y+" data-x="2.1525000000000007" data-y="6.505000000000002" cx="524.5442536327608" cy="72.05636283575518" r="3" fill="hsl(238, 100%, 50%, 0.8)" />
274
- </g>
275
- <g>
276
- <circle data-type="point" data-label="C19.2
277
- y-" data-x="2.1525000000000007" data-y="5.405000000000002" cx="524.5442536327608" cy="126.30559225011007" r="3" fill="hsl(239, 100%, 50%, 0.8)" />
278
- </g>
279
- <g>
280
- <circle data-type="point" data-label="C18.1
281
- y+" data-x="-4.6850000000000005" data-y="3.7683333333333353" cx="187.3359753412594" cy="207.0218699544987" r="3" fill="hsl(357, 100%, 50%, 0.8)" />
282
- </g>
283
- <g>
284
- <circle data-type="point" data-label="C18.2
285
- y-" data-x="-4.6850000000000005" data-y="2.668333333333335" cx="187.3359753412594" cy="261.2710993688536" r="3" fill="hsl(358, 100%, 50%, 0.8)" />
286
- </g>
287
- <g>
288
- <circle data-type="point" data-label="C7.1
289
- y+" data-x="-3.7550000000000003" data-y="3.7683333333333353" cx="233.2012329370322" cy="207.0218699544987" r="3" fill="hsl(127, 100%, 50%, 0.8)" />
290
- </g>
291
- <g>
292
- <circle data-type="point" data-label="C7.2
293
- y-" data-x="-3.7550000000000003" data-y="2.668333333333335" cx="233.2012329370322" cy="261.2710993688536" r="3" fill="hsl(128, 100%, 50%, 0.8)" />
294
- </g>
295
- <g>
296
- <circle data-type="point" data-label="C9.1
297
- y+" data-x="-6.415" data-y="3.7683333333333353" cx="102.01673271686491" cy="207.0218699544987" r="3" fill="hsl(249, 100%, 50%, 0.8)" />
298
- </g>
299
- <g>
300
- <circle data-type="point" data-label="C9.2
301
- y-" data-x="-6.415" data-y="2.6683333333333357" cx="102.01673271686491" cy="261.2710993688536" r="3" fill="hsl(250, 100%, 50%, 0.8)" />
302
- </g>
303
- <g>
304
- <circle data-type="point" data-label="C10.1
305
- y+" data-x="-2.025" data-y="2.000000000000001" cx="318.5204755614267" cy="294.2316160281814" r="3" fill="hsl(229, 100%, 50%, 0.8)" />
306
- </g>
307
- <g>
308
- <circle data-type="point" data-label="C10.2
309
- y-" data-x="-2.025" data-y="0.900000000000001" cx="318.5204755614267" cy="348.48084544253624" r="3" fill="hsl(230, 100%, 50%, 0.8)" />
310
- </g>
311
- <g>
312
- <circle data-type="point" data-label="C11.1
313
- y+" data-x="-2.025" data-y="-1.6000000000000003" cx="318.5204755614267" cy="471.7745486569793" r="3" fill="hsl(110, 100%, 50%, 0.8)" />
314
- </g>
315
- <g>
316
- <circle data-type="point" data-label="C11.2
317
- y-" data-x="-2.025" data-y="-2.7" cx="318.5204755614267" cy="526.0237780713342" r="3" fill="hsl(111, 100%, 50%, 0.8)" />
318
- </g>
319
- <g>
320
- <circle data-type="point" data-label="anchorPoint
321
- orientation: y+" data-x="-1.3099999999999998" data-y="1.2000000000000015" cx="353.7824746807574" cy="333.6856010568031" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
322
- </g>
323
- <g>
324
- <circle data-type="point" data-label="anchorPoint
325
- orientation: y+" data-x="0.29250000000000076" data-y="6.705000000000002" cx="432.8137384412153" cy="62.19286657859976" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
326
- </g>
327
- <g>
328
- <circle data-type="point" data-label="anchorPoint
329
- orientation: y+" data-x="-1.3099999999999998" data-y="2.8000000000000016" cx="353.7824746807574" cy="254.77763099955962" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
330
- </g>
331
- <g>
332
- <circle data-type="point" data-label="anchorPoint
333
- orientation: y+" data-x="-3.7550000000000003" data-y="3.9683333333333355" cx="233.2012329370322" cy="197.15837369734325" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
334
- </g>
335
- <g>
336
- <circle data-type="point" data-label="anchorPoint
337
- orientation: x-" data-x="-2.025" data-y="-1.4000000000000004" cx="318.5204755614267" cy="461.9110523998238" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
338
- </g>
339
- <g>
340
- <circle data-type="point" data-label="anchorPoint
341
- orientation: x-" data-x="-2.025" data-y="2.200000000000001" cx="318.5204755614267" cy="284.36811977102593" r="3" fill="hsl(40, 100%, 50%, 0.9)" />
342
- </g>
343
- <g>
344
- <circle data-type="point" data-label="anchorPoint
345
- orientation: y-" data-x="0.29250000000000076" data-y="5.205000000000002" cx="432.8137384412153" cy="136.16908850726549" r="3" fill="hsl(80, 100%, 50%, 0.9)" />
346
- </g>
347
- <g>
348
- <circle data-type="point" data-label="anchorPoint
349
- orientation: y-" data-x="-3.7550000000000003" data-y="2.4683333333333346" cx="233.2012329370322" cy="271.13459562600906" r="3" fill="hsl(80, 100%, 50%, 0.9)" />
350
- </g>
351
- <g>
352
- <circle data-type="point" data-label="anchorPoint
353
- orientation: y-" data-x="-2.49" data-y="-2.9000000000000004" cx="295.5878467635403" cy="535.8872743284896" r="3" fill="hsl(80, 100%, 50%, 0.9)" />
354
- </g>
355
- <g>
356
- <polyline data-points="-1.1099999999999999,1.2000000000000015 -1.5675,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 341.08322324966974,72.05636283575518" fill="none" stroke="hsl(280, 100%, 50%, 0.8)" stroke-width="1" />
357
- </g>
358
- <g>
359
- <polyline data-points="-1.1099999999999999,1.0000000000000013 -0.6374999999999998,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 386.94848084544253,72.05636283575518" fill="none" stroke="hsl(280, 100%, 50%, 0.8)" stroke-width="1" />
360
- </g>
361
- <g>
362
- <polyline data-points="-1.1099999999999999,0.8000000000000012 -2.4975,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,353.412593571114 295.21796565389695,72.05636283575518" fill="none" stroke="hsl(16, 100%, 50%, 0.8)" stroke-width="1" />
363
- </g>
364
- <g>
365
- <polyline data-points="-1.1099999999999999,0.600000000000001 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,363.2760898282694 432.8137384412153,72.05636283575518" fill="none" stroke="hsl(280, 100%, 50%, 0.8)" stroke-width="1" />
366
- </g>
367
- <g>
368
- <polyline data-points="-1.1099999999999999,0.4000000000000008 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,373.13958608542487 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(280, 100%, 50%, 0.8)" stroke-width="1" />
369
- </g>
370
- <g>
371
- <polyline data-points="-1.1099999999999999,0.20000000000000062 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,383.0030823425803 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(280, 100%, 50%, 0.8)" stroke-width="1" />
372
- </g>
373
- <g>
374
- <polyline data-points="-1.1099999999999999,2.8000000000000016 -4.6850000000000005,3.7683333333333353" data-type="line" data-label="" points="363.6459709379128,254.77763099955962 187.3359753412594,207.0218699544987" fill="none" stroke="hsl(280, 100%, 50%, 0.8)" stroke-width="1" />
375
- </g>
376
- <g>
377
- <polyline data-points="-1.1099999999999999,2.600000000000002 -3.7550000000000003,3.7683333333333353" data-type="line" data-label="" points="363.6459709379128,264.64112725671504 233.2012329370322,207.0218699544987" fill="none" stroke="hsl(168, 100%, 50%, 0.8)" stroke-width="1" />
378
- </g>
379
- <g>
380
- <polyline data-points="-2.025,2.000000000000001 -1.1099999999999999,2.0000000000000018" data-type="line" data-label="" points="318.5204755614267,294.2316160281814 363.6459709379128,294.23161602818135" fill="none" stroke="hsl(240, 100%, 50%, 0.8)" stroke-width="1" />
381
- </g>
382
- <g>
383
- <polyline data-points="-2.025,-1.6000000000000003 -1.1099999999999999,-1.6000000000000005" data-type="line" data-label="" points="318.5204755614267,471.7745486569793 363.6459709379128,471.7745486569793" fill="none" stroke="hsl(240, 100%, 50%, 0.8)" stroke-width="1" />
384
- </g>
385
- <g>
386
- <polyline data-points="-1.1099999999999999,1.2000000000000015 -1.1099999999999999,1.0000000000000013" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 363.6459709379128,343.54909731395855" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
387
- </g>
388
- <g>
389
- <polyline data-points="-1.1099999999999999,1.2000000000000015 -1.1099999999999999,0.8000000000000012" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 363.6459709379128,353.412593571114" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
390
- </g>
391
- <g>
392
- <polyline data-points="-1.1099999999999999,1.2000000000000015 -1.1099999999999999,0.600000000000001" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 363.6459709379128,363.2760898282694" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
393
- </g>
394
- <g>
395
- <polyline data-points="-1.1099999999999999,1.2000000000000015 -1.1099999999999999,0.4000000000000008" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 363.6459709379128,373.13958608542487" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
396
- </g>
397
- <g>
398
- <polyline data-points="-1.1099999999999999,1.2000000000000015 -1.1099999999999999,0.20000000000000062" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 363.6459709379128,383.0030823425803" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
399
- </g>
400
- <g>
401
- <polyline data-points="-1.1099999999999999,1.2000000000000015 -1.5675,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 341.08322324966974,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
402
- </g>
403
- <g>
404
- <polyline data-points="-1.1099999999999999,1.2000000000000015 -0.6374999999999998,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 386.94848084544253,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
405
- </g>
406
- <g>
407
- <polyline data-points="-1.1099999999999999,1.2000000000000015 -2.4975,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 295.21796565389695,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
408
- </g>
409
- <g>
410
- <polyline data-points="-1.1099999999999999,1.2000000000000015 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 432.8137384412153,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
411
- </g>
412
- <g>
413
- <polyline data-points="-1.1099999999999999,1.2000000000000015 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
414
- </g>
415
- <g>
416
- <polyline data-points="-1.1099999999999999,1.2000000000000015 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
417
- </g>
418
- <g>
419
- <polyline data-points="-1.1099999999999999,1.0000000000000013 -1.1099999999999999,0.8000000000000012" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 363.6459709379128,353.412593571114" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
420
- </g>
421
- <g>
422
- <polyline data-points="-1.1099999999999999,1.0000000000000013 -1.1099999999999999,0.600000000000001" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 363.6459709379128,363.2760898282694" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
423
- </g>
424
- <g>
425
- <polyline data-points="-1.1099999999999999,1.0000000000000013 -1.1099999999999999,0.4000000000000008" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 363.6459709379128,373.13958608542487" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
426
- </g>
427
- <g>
428
- <polyline data-points="-1.1099999999999999,1.0000000000000013 -1.1099999999999999,0.20000000000000062" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 363.6459709379128,383.0030823425803" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
429
- </g>
430
- <g>
431
- <polyline data-points="-1.1099999999999999,1.0000000000000013 -1.5675,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 341.08322324966974,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
432
- </g>
433
- <g>
434
- <polyline data-points="-1.1099999999999999,1.0000000000000013 -0.6374999999999998,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 386.94848084544253,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
435
- </g>
436
- <g>
437
- <polyline data-points="-1.1099999999999999,1.0000000000000013 -2.4975,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 295.21796565389695,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
438
- </g>
439
- <g>
440
- <polyline data-points="-1.1099999999999999,1.0000000000000013 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 432.8137384412153,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
441
- </g>
442
- <g>
443
- <polyline data-points="-1.1099999999999999,1.0000000000000013 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
444
- </g>
445
- <g>
446
- <polyline data-points="-1.1099999999999999,1.0000000000000013 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
447
- </g>
448
- <g>
449
- <polyline data-points="-1.1099999999999999,0.8000000000000012 -1.1099999999999999,0.600000000000001" data-type="line" data-label="" points="363.6459709379128,353.412593571114 363.6459709379128,363.2760898282694" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
450
- </g>
451
- <g>
452
- <polyline data-points="-1.1099999999999999,0.8000000000000012 -1.1099999999999999,0.4000000000000008" data-type="line" data-label="" points="363.6459709379128,353.412593571114 363.6459709379128,373.13958608542487" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
453
- </g>
454
- <g>
455
- <polyline data-points="-1.1099999999999999,0.8000000000000012 -1.1099999999999999,0.20000000000000062" data-type="line" data-label="" points="363.6459709379128,353.412593571114 363.6459709379128,383.0030823425803" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
456
- </g>
457
- <g>
458
- <polyline data-points="-1.1099999999999999,0.8000000000000012 -1.5675,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,353.412593571114 341.08322324966974,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
459
- </g>
460
- <g>
461
- <polyline data-points="-1.1099999999999999,0.8000000000000012 -0.6374999999999998,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,353.412593571114 386.94848084544253,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
462
- </g>
463
- <g>
464
- <polyline data-points="-1.1099999999999999,0.8000000000000012 -2.4975,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,353.412593571114 295.21796565389695,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
465
- </g>
466
- <g>
467
- <polyline data-points="-1.1099999999999999,0.8000000000000012 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,353.412593571114 432.8137384412153,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
468
- </g>
469
- <g>
470
- <polyline data-points="-1.1099999999999999,0.8000000000000012 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,353.412593571114 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
471
- </g>
472
- <g>
473
- <polyline data-points="-1.1099999999999999,0.8000000000000012 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,353.412593571114 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
474
- </g>
475
- <g>
476
- <polyline data-points="-1.1099999999999999,0.600000000000001 -1.1099999999999999,0.4000000000000008" data-type="line" data-label="" points="363.6459709379128,363.2760898282694 363.6459709379128,373.13958608542487" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
477
- </g>
478
- <g>
479
- <polyline data-points="-1.1099999999999999,0.600000000000001 -1.1099999999999999,0.20000000000000062" data-type="line" data-label="" points="363.6459709379128,363.2760898282694 363.6459709379128,383.0030823425803" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
480
- </g>
481
- <g>
482
- <polyline data-points="-1.1099999999999999,0.600000000000001 -1.5675,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,363.2760898282694 341.08322324966974,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
483
- </g>
484
- <g>
485
- <polyline data-points="-1.1099999999999999,0.600000000000001 -0.6374999999999998,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,363.2760898282694 386.94848084544253,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
486
- </g>
487
- <g>
488
- <polyline data-points="-1.1099999999999999,0.600000000000001 -2.4975,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,363.2760898282694 295.21796565389695,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
489
- </g>
490
- <g>
491
- <polyline data-points="-1.1099999999999999,0.600000000000001 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,363.2760898282694 432.8137384412153,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
492
- </g>
493
- <g>
494
- <polyline data-points="-1.1099999999999999,0.600000000000001 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,363.2760898282694 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
495
- </g>
496
- <g>
497
- <polyline data-points="-1.1099999999999999,0.600000000000001 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,363.2760898282694 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
498
- </g>
499
- <g>
500
- <polyline data-points="-1.1099999999999999,0.4000000000000008 -1.1099999999999999,0.20000000000000062" data-type="line" data-label="" points="363.6459709379128,373.13958608542487 363.6459709379128,383.0030823425803" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
501
- </g>
502
- <g>
503
- <polyline data-points="-1.1099999999999999,0.4000000000000008 -1.5675,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,373.13958608542487 341.08322324966974,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
504
- </g>
505
- <g>
506
- <polyline data-points="-1.1099999999999999,0.4000000000000008 -0.6374999999999998,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,373.13958608542487 386.94848084544253,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
507
- </g>
508
- <g>
509
- <polyline data-points="-1.1099999999999999,0.4000000000000008 -2.4975,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,373.13958608542487 295.21796565389695,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
510
- </g>
511
- <g>
512
- <polyline data-points="-1.1099999999999999,0.4000000000000008 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,373.13958608542487 432.8137384412153,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
513
- </g>
514
- <g>
515
- <polyline data-points="-1.1099999999999999,0.4000000000000008 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,373.13958608542487 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
516
- </g>
517
- <g>
518
- <polyline data-points="-1.1099999999999999,0.4000000000000008 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,373.13958608542487 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
519
- </g>
520
- <g>
521
- <polyline data-points="-1.1099999999999999,0.20000000000000062 -1.5675,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,383.0030823425803 341.08322324966974,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
522
- </g>
523
- <g>
524
- <polyline data-points="-1.1099999999999999,0.20000000000000062 -0.6374999999999998,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,383.0030823425803 386.94848084544253,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
525
- </g>
526
- <g>
527
- <polyline data-points="-1.1099999999999999,0.20000000000000062 -2.4975,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,383.0030823425803 295.21796565389695,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
528
- </g>
529
- <g>
530
- <polyline data-points="-1.1099999999999999,0.20000000000000062 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,383.0030823425803 432.8137384412153,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
531
- </g>
532
- <g>
533
- <polyline data-points="-1.1099999999999999,0.20000000000000062 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,383.0030823425803 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
534
- </g>
535
- <g>
536
- <polyline data-points="-1.1099999999999999,0.20000000000000062 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,383.0030823425803 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
537
- </g>
538
- <g>
539
- <polyline data-points="-1.5675,6.505000000000002 -0.6374999999999998,6.505000000000002" data-type="line" data-label="" points="341.08322324966974,72.05636283575518 386.94848084544253,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
540
- </g>
541
- <g>
542
- <polyline data-points="-1.5675,6.505000000000002 -2.4975,6.505000000000002" data-type="line" data-label="" points="341.08322324966974,72.05636283575518 295.21796565389695,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
543
- </g>
544
- <g>
545
- <polyline data-points="-1.5675,6.505000000000002 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="341.08322324966974,72.05636283575518 432.8137384412153,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
546
- </g>
547
- <g>
548
- <polyline data-points="-1.5675,6.505000000000002 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="341.08322324966974,72.05636283575518 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
549
- </g>
550
- <g>
551
- <polyline data-points="-1.5675,6.505000000000002 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="341.08322324966974,72.05636283575518 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
552
- </g>
553
- <g>
554
- <polyline data-points="-0.6374999999999998,6.505000000000002 -2.4975,6.505000000000002" data-type="line" data-label="" points="386.94848084544253,72.05636283575518 295.21796565389695,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
555
- </g>
556
- <g>
557
- <polyline data-points="-0.6374999999999998,6.505000000000002 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="386.94848084544253,72.05636283575518 432.8137384412153,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
558
- </g>
559
- <g>
560
- <polyline data-points="-0.6374999999999998,6.505000000000002 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="386.94848084544253,72.05636283575518 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
561
- </g>
562
- <g>
563
- <polyline data-points="-0.6374999999999998,6.505000000000002 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="386.94848084544253,72.05636283575518 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
564
- </g>
565
- <g>
566
- <polyline data-points="-2.4975,6.505000000000002 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="295.21796565389695,72.05636283575518 432.8137384412153,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
567
- </g>
568
- <g>
569
- <polyline data-points="-2.4975,6.505000000000002 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="295.21796565389695,72.05636283575518 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
570
- </g>
571
- <g>
572
- <polyline data-points="-2.4975,6.505000000000002 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="295.21796565389695,72.05636283575518 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
573
- </g>
574
- <g>
575
- <polyline data-points="0.29250000000000037,6.505000000000002 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="432.8137384412153,72.05636283575518 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
576
- </g>
577
- <g>
578
- <polyline data-points="0.29250000000000037,6.505000000000002 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="432.8137384412153,72.05636283575518 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
579
- </g>
580
- <g>
581
- <polyline data-points="1.2225000000000006,6.505000000000002 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="478.6789960369881,72.05636283575518 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
582
- </g>
583
- <g>
584
- <polyline data-points="-1.1099999999999999,2.8000000000000016 -1.1099999999999999,2.600000000000002" data-type="line" data-label="" points="363.6459709379128,254.77763099955962 363.6459709379128,264.64112725671504" fill="none" stroke="hsl(309, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
585
- </g>
586
- <g>
587
- <polyline data-points="-1.1099999999999999,2.8000000000000016 -4.6850000000000005,3.7683333333333353" data-type="line" data-label="" points="363.6459709379128,254.77763099955962 187.3359753412594,207.0218699544987" fill="none" stroke="hsl(309, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
588
- </g>
589
- <g>
590
- <polyline data-points="-1.1099999999999999,2.8000000000000016 -3.7550000000000003,3.7683333333333353" data-type="line" data-label="" points="363.6459709379128,254.77763099955962 233.2012329370322,207.0218699544987" fill="none" stroke="hsl(309, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
591
- </g>
592
- <g>
593
- <polyline data-points="-1.1099999999999999,2.8000000000000016 -6.415,3.7683333333333353" data-type="line" data-label="" points="363.6459709379128,254.77763099955962 102.01673271686491,207.0218699544987" fill="none" stroke="hsl(309, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
594
- </g>
595
- <g>
596
- <polyline data-points="-1.1099999999999999,2.600000000000002 -4.6850000000000005,3.7683333333333353" data-type="line" data-label="" points="363.6459709379128,264.64112725671504 187.3359753412594,207.0218699544987" fill="none" stroke="hsl(309, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
597
- </g>
598
- <g>
599
- <polyline data-points="-1.1099999999999999,2.600000000000002 -3.7550000000000003,3.7683333333333353" data-type="line" data-label="" points="363.6459709379128,264.64112725671504 233.2012329370322,207.0218699544987" fill="none" stroke="hsl(309, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
600
- </g>
601
- <g>
602
- <polyline data-points="-1.1099999999999999,2.600000000000002 -6.415,3.7683333333333353" data-type="line" data-label="" points="363.6459709379128,264.64112725671504 102.01673271686491,207.0218699544987" fill="none" stroke="hsl(309, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
603
- </g>
604
- <g>
605
- <polyline data-points="-4.6850000000000005,3.7683333333333353 -3.7550000000000003,3.7683333333333353" data-type="line" data-label="" points="187.3359753412594,207.0218699544987 233.2012329370322,207.0218699544987" fill="none" stroke="hsl(309, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
606
- </g>
607
- <g>
608
- <polyline data-points="-4.6850000000000005,3.7683333333333353 -6.415,3.7683333333333353" data-type="line" data-label="" points="187.3359753412594,207.0218699544987 102.01673271686491,207.0218699544987" fill="none" stroke="hsl(309, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
609
- </g>
610
- <g>
611
- <polyline data-points="-3.7550000000000003,3.7683333333333353 -6.415,3.7683333333333353" data-type="line" data-label="" points="233.2012329370322,207.0218699544987 102.01673271686491,207.0218699544987" fill="none" stroke="hsl(309, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
612
- </g>
613
- <g>
614
- <polyline data-points="-1.5675,5.405000000000002 -0.6374999999999998,5.405000000000002" data-type="line" data-label="" points="341.08322324966974,126.30559225011007 386.94848084544253,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
615
- </g>
616
- <g>
617
- <polyline data-points="-1.5675,5.405000000000002 -2.4975,5.405000000000002" data-type="line" data-label="" points="341.08322324966974,126.30559225011007 295.21796565389695,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
618
- </g>
619
- <g>
620
- <polyline data-points="-1.5675,5.405000000000002 0.2925000000000005,5.405000000000002" data-type="line" data-label="" points="341.08322324966974,126.30559225011007 432.8137384412153,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
621
- </g>
622
- <g>
623
- <polyline data-points="-1.5675,5.405000000000002 1.2225000000000006,5.405000000000002" data-type="line" data-label="" points="341.08322324966974,126.30559225011007 478.6789960369881,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
624
- </g>
625
- <g>
626
- <polyline data-points="-1.5675,5.405000000000002 2.1525000000000007,5.405000000000002" data-type="line" data-label="" points="341.08322324966974,126.30559225011007 524.5442536327608,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
627
- </g>
628
- <g>
629
- <polyline data-points="-1.5675,5.405000000000002 -4.6850000000000005,2.668333333333335" data-type="line" data-label="" points="341.08322324966974,126.30559225011007 187.3359753412594,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
630
- </g>
631
- <g>
632
- <polyline data-points="-1.5675,5.405000000000002 -3.7550000000000003,2.668333333333335" data-type="line" data-label="" points="341.08322324966974,126.30559225011007 233.2012329370322,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
633
- </g>
634
- <g>
635
- <polyline data-points="-1.5675,5.405000000000002 -6.415,2.6683333333333357" data-type="line" data-label="" points="341.08322324966974,126.30559225011007 102.01673271686491,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
636
- </g>
637
- <g>
638
- <polyline data-points="-1.5675,5.405000000000002 -2.025,0.900000000000001" data-type="line" data-label="" points="341.08322324966974,126.30559225011007 318.5204755614267,348.48084544253624" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
639
- </g>
640
- <g>
641
- <polyline data-points="-1.5675,5.405000000000002 -2.025,-2.7" data-type="line" data-label="" points="341.08322324966974,126.30559225011007 318.5204755614267,526.0237780713342" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
642
- </g>
643
- <g>
644
- <polyline data-points="-0.6374999999999998,5.405000000000002 -2.4975,5.405000000000002" data-type="line" data-label="" points="386.94848084544253,126.30559225011007 295.21796565389695,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
645
- </g>
646
- <g>
647
- <polyline data-points="-0.6374999999999998,5.405000000000002 0.2925000000000005,5.405000000000002" data-type="line" data-label="" points="386.94848084544253,126.30559225011007 432.8137384412153,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
648
- </g>
649
- <g>
650
- <polyline data-points="-0.6374999999999998,5.405000000000002 1.2225000000000006,5.405000000000002" data-type="line" data-label="" points="386.94848084544253,126.30559225011007 478.6789960369881,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
651
- </g>
652
- <g>
653
- <polyline data-points="-0.6374999999999998,5.405000000000002 2.1525000000000007,5.405000000000002" data-type="line" data-label="" points="386.94848084544253,126.30559225011007 524.5442536327608,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
654
- </g>
655
- <g>
656
- <polyline data-points="-0.6374999999999998,5.405000000000002 -4.6850000000000005,2.668333333333335" data-type="line" data-label="" points="386.94848084544253,126.30559225011007 187.3359753412594,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
657
- </g>
658
- <g>
659
- <polyline data-points="-0.6374999999999998,5.405000000000002 -3.7550000000000003,2.668333333333335" data-type="line" data-label="" points="386.94848084544253,126.30559225011007 233.2012329370322,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
660
- </g>
661
- <g>
662
- <polyline data-points="-0.6374999999999998,5.405000000000002 -6.415,2.6683333333333357" data-type="line" data-label="" points="386.94848084544253,126.30559225011007 102.01673271686491,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
663
- </g>
664
- <g>
665
- <polyline data-points="-0.6374999999999998,5.405000000000002 -2.025,0.900000000000001" data-type="line" data-label="" points="386.94848084544253,126.30559225011007 318.5204755614267,348.48084544253624" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
666
- </g>
667
- <g>
668
- <polyline data-points="-0.6374999999999998,5.405000000000002 -2.025,-2.7" data-type="line" data-label="" points="386.94848084544253,126.30559225011007 318.5204755614267,526.0237780713342" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
669
- </g>
670
- <g>
671
- <polyline data-points="-2.4975,5.405000000000002 0.2925000000000005,5.405000000000002" data-type="line" data-label="" points="295.21796565389695,126.30559225011007 432.8137384412153,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
672
- </g>
673
- <g>
674
- <polyline data-points="-2.4975,5.405000000000002 1.2225000000000006,5.405000000000002" data-type="line" data-label="" points="295.21796565389695,126.30559225011007 478.6789960369881,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
675
- </g>
676
- <g>
677
- <polyline data-points="-2.4975,5.405000000000002 2.1525000000000007,5.405000000000002" data-type="line" data-label="" points="295.21796565389695,126.30559225011007 524.5442536327608,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
678
- </g>
679
- <g>
680
- <polyline data-points="-2.4975,5.405000000000002 -4.6850000000000005,2.668333333333335" data-type="line" data-label="" points="295.21796565389695,126.30559225011007 187.3359753412594,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
681
- </g>
682
- <g>
683
- <polyline data-points="-2.4975,5.405000000000002 -3.7550000000000003,2.668333333333335" data-type="line" data-label="" points="295.21796565389695,126.30559225011007 233.2012329370322,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
684
- </g>
685
- <g>
686
- <polyline data-points="-2.4975,5.405000000000002 -6.415,2.6683333333333357" data-type="line" data-label="" points="295.21796565389695,126.30559225011007 102.01673271686491,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
687
- </g>
688
- <g>
689
- <polyline data-points="-2.4975,5.405000000000002 -2.025,0.900000000000001" data-type="line" data-label="" points="295.21796565389695,126.30559225011007 318.5204755614267,348.48084544253624" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
690
- </g>
691
- <g>
692
- <polyline data-points="-2.4975,5.405000000000002 -2.025,-2.7" data-type="line" data-label="" points="295.21796565389695,126.30559225011007 318.5204755614267,526.0237780713342" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
693
- </g>
694
- <g>
695
- <polyline data-points="0.2925000000000005,5.405000000000002 1.2225000000000006,5.405000000000002" data-type="line" data-label="" points="432.8137384412153,126.30559225011007 478.6789960369881,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
696
- </g>
697
- <g>
698
- <polyline data-points="0.2925000000000005,5.405000000000002 2.1525000000000007,5.405000000000002" data-type="line" data-label="" points="432.8137384412153,126.30559225011007 524.5442536327608,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
699
- </g>
700
- <g>
701
- <polyline data-points="0.2925000000000005,5.405000000000002 -4.6850000000000005,2.668333333333335" data-type="line" data-label="" points="432.8137384412153,126.30559225011007 187.3359753412594,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
702
- </g>
703
- <g>
704
- <polyline data-points="0.2925000000000005,5.405000000000002 -3.7550000000000003,2.668333333333335" data-type="line" data-label="" points="432.8137384412153,126.30559225011007 233.2012329370322,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
705
- </g>
706
- <g>
707
- <polyline data-points="0.2925000000000005,5.405000000000002 -6.415,2.6683333333333357" data-type="line" data-label="" points="432.8137384412153,126.30559225011007 102.01673271686491,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
708
- </g>
709
- <g>
710
- <polyline data-points="0.2925000000000005,5.405000000000002 -2.025,0.900000000000001" data-type="line" data-label="" points="432.8137384412153,126.30559225011007 318.5204755614267,348.48084544253624" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
711
- </g>
712
- <g>
713
- <polyline data-points="0.2925000000000005,5.405000000000002 -2.025,-2.7" data-type="line" data-label="" points="432.8137384412153,126.30559225011007 318.5204755614267,526.0237780713342" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
714
- </g>
715
- <g>
716
- <polyline data-points="1.2225000000000006,5.405000000000002 2.1525000000000007,5.405000000000002" data-type="line" data-label="" points="478.6789960369881,126.30559225011007 524.5442536327608,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
717
- </g>
718
- <g>
719
- <polyline data-points="1.2225000000000006,5.405000000000002 -4.6850000000000005,2.668333333333335" data-type="line" data-label="" points="478.6789960369881,126.30559225011007 187.3359753412594,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
720
- </g>
721
- <g>
722
- <polyline data-points="1.2225000000000006,5.405000000000002 -3.7550000000000003,2.668333333333335" data-type="line" data-label="" points="478.6789960369881,126.30559225011007 233.2012329370322,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
723
- </g>
724
- <g>
725
- <polyline data-points="1.2225000000000006,5.405000000000002 -6.415,2.6683333333333357" data-type="line" data-label="" points="478.6789960369881,126.30559225011007 102.01673271686491,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
726
- </g>
727
- <g>
728
- <polyline data-points="1.2225000000000006,5.405000000000002 -2.025,0.900000000000001" data-type="line" data-label="" points="478.6789960369881,126.30559225011007 318.5204755614267,348.48084544253624" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
729
- </g>
730
- <g>
731
- <polyline data-points="1.2225000000000006,5.405000000000002 -2.025,-2.7" data-type="line" data-label="" points="478.6789960369881,126.30559225011007 318.5204755614267,526.0237780713342" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
732
- </g>
733
- <g>
734
- <polyline data-points="2.1525000000000007,5.405000000000002 -4.6850000000000005,2.668333333333335" data-type="line" data-label="" points="524.5442536327608,126.30559225011007 187.3359753412594,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
735
- </g>
736
- <g>
737
- <polyline data-points="2.1525000000000007,5.405000000000002 -3.7550000000000003,2.668333333333335" data-type="line" data-label="" points="524.5442536327608,126.30559225011007 233.2012329370322,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
738
- </g>
739
- <g>
740
- <polyline data-points="2.1525000000000007,5.405000000000002 -6.415,2.6683333333333357" data-type="line" data-label="" points="524.5442536327608,126.30559225011007 102.01673271686491,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
741
- </g>
742
- <g>
743
- <polyline data-points="2.1525000000000007,5.405000000000002 -2.025,0.900000000000001" data-type="line" data-label="" points="524.5442536327608,126.30559225011007 318.5204755614267,348.48084544253624" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
744
- </g>
745
- <g>
746
- <polyline data-points="2.1525000000000007,5.405000000000002 -2.025,-2.7" data-type="line" data-label="" points="524.5442536327608,126.30559225011007 318.5204755614267,526.0237780713342" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
747
- </g>
748
- <g>
749
- <polyline data-points="-4.6850000000000005,2.668333333333335 -3.7550000000000003,2.668333333333335" data-type="line" data-label="" points="187.3359753412594,261.2710993688536 233.2012329370322,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
750
- </g>
751
- <g>
752
- <polyline data-points="-4.6850000000000005,2.668333333333335 -6.415,2.6683333333333357" data-type="line" data-label="" points="187.3359753412594,261.2710993688536 102.01673271686491,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
753
- </g>
754
- <g>
755
- <polyline data-points="-4.6850000000000005,2.668333333333335 -2.025,0.900000000000001" data-type="line" data-label="" points="187.3359753412594,261.2710993688536 318.5204755614267,348.48084544253624" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
756
- </g>
757
- <g>
758
- <polyline data-points="-4.6850000000000005,2.668333333333335 -2.025,-2.7" data-type="line" data-label="" points="187.3359753412594,261.2710993688536 318.5204755614267,526.0237780713342" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
759
- </g>
760
- <g>
761
- <polyline data-points="-3.7550000000000003,2.668333333333335 -6.415,2.6683333333333357" data-type="line" data-label="" points="233.2012329370322,261.2710993688536 102.01673271686491,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
762
- </g>
763
- <g>
764
- <polyline data-points="-3.7550000000000003,2.668333333333335 -2.025,0.900000000000001" data-type="line" data-label="" points="233.2012329370322,261.2710993688536 318.5204755614267,348.48084544253624" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
765
- </g>
766
- <g>
767
- <polyline data-points="-3.7550000000000003,2.668333333333335 -2.025,-2.7" data-type="line" data-label="" points="233.2012329370322,261.2710993688536 318.5204755614267,526.0237780713342" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
768
- </g>
769
- <g>
770
- <polyline data-points="-6.415,2.6683333333333357 -2.025,0.900000000000001" data-type="line" data-label="" points="102.01673271686491,261.2710993688536 318.5204755614267,348.48084544253624" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
771
- </g>
772
- <g>
773
- <polyline data-points="-6.415,2.6683333333333357 -2.025,-2.7" data-type="line" data-label="" points="102.01673271686491,261.2710993688536 318.5204755614267,526.0237780713342" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
774
- </g>
775
- <g>
776
- <polyline data-points="-2.025,0.900000000000001 -2.025,-2.7" data-type="line" data-label="" points="318.5204755614267,348.48084544253624 318.5204755614267,526.0237780713342" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1" stroke-dasharray="4 2" />
777
- </g>
778
- <g>
779
- <polyline data-points="-0.6375000000000002,6.505000000000002 -0.6375000000000002,6.705000000000002 -1.5675,6.705000000000002 -1.5675,6.505000000000002" data-type="line" data-label="" points="386.94848084544253,72.05636283575518 386.94848084544253,62.19286657859976 341.08322324966974,62.19286657859976 341.08322324966974,72.05636283575518" fill="none" stroke="purple" stroke-width="1" />
780
- </g>
781
- <g>
782
- <polyline data-points="0.29250000000000076,6.505000000000002 0.29250000000000076,6.705000000000002 -0.6374999999999998,6.705000000000002 -0.6374999999999998,6.505000000000002" data-type="line" data-label="" points="432.8137384412153,72.05636283575518 432.8137384412153,62.19286657859976 386.94848084544253,62.19286657859976 386.94848084544253,72.05636283575518" fill="none" stroke="purple" stroke-width="1" />
783
- </g>
784
- <g>
785
- <polyline data-points="1.222500000000001,6.505000000000002 1.222500000000001,6.705000000000002 0.29250000000000037,6.705000000000002 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="478.6789960369881,72.05636283575518 478.6789960369881,62.19286657859976 432.8137384412153,62.19286657859976 432.8137384412153,72.05636283575518" fill="none" stroke="purple" stroke-width="1" />
786
- </g>
787
- <g>
788
- <polyline data-points="2.152500000000001,6.505000000000002 2.152500000000001,6.705000000000002 1.2225000000000006,6.705000000000002 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="524.5442536327608,72.05636283575518 524.5442536327608,62.19286657859976 478.6789960369881,62.19286657859976 478.6789960369881,72.05636283575518" fill="none" stroke="purple" stroke-width="1" />
789
- </g>
790
- <g>
791
- <polyline data-points="-2.4975,6.505000000000002 -2.4975,6.705000000000002 -1.5674999999999994,6.705000000000002 -1.5674999999999994,6.505000000000002" data-type="line" data-label="" points="295.21796565389695,72.05636283575518 295.21796565389695,62.19286657859976 341.0832232496698,62.19286657859976 341.0832232496698,72.05636283575518" fill="none" stroke="purple" stroke-width="1" />
792
- </g>
793
- <g>
794
- <polyline data-points="-1.1099999999999999,1.0000000000000013 -1.3099999999999998,1.0000000000000013 -1.3099999999999998,1.2000000000000015 -1.1099999999999999,1.2000000000000015" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 353.7824746807574,343.54909731395855 353.7824746807574,333.6856010568031 363.6459709379128,333.6856010568031" fill="none" stroke="purple" stroke-width="1" />
795
- </g>
796
- <g>
797
- <polyline data-points="-1.1099999999999999,0.8000000000000012 -1.3099999999999998,0.8000000000000012 -1.3099999999999998,1.0000000000000013 -1.1099999999999999,1.0000000000000013" data-type="line" data-label="" points="363.6459709379128,353.412593571114 353.7824746807574,353.412593571114 353.7824746807574,343.54909731395855 363.6459709379128,343.54909731395855" fill="none" stroke="purple" stroke-width="1" />
798
- </g>
799
- <g>
800
- <polyline data-points="-1.1099999999999999,0.600000000000001 -1.3099999999999998,0.600000000000001 -1.3099999999999998,0.8000000000000012 -1.1099999999999999,0.8000000000000012" data-type="line" data-label="" points="363.6459709379128,363.2760898282694 353.7824746807574,363.2760898282694 353.7824746807574,353.412593571114 363.6459709379128,353.412593571114" fill="none" stroke="purple" stroke-width="1" />
801
- </g>
802
- <g>
803
- <polyline data-points="-1.1099999999999999,0.4000000000000008 -1.3099999999999998,0.4000000000000008 -1.3099999999999998,0.600000000000001 -1.1099999999999999,0.600000000000001" data-type="line" data-label="" points="363.6459709379128,373.13958608542487 353.7824746807574,373.13958608542487 353.7824746807574,363.2760898282694 363.6459709379128,363.2760898282694" fill="none" stroke="purple" stroke-width="1" />
804
- </g>
805
- <g>
806
- <polyline data-points="-1.1099999999999999,0.20000000000000062 -1.3099999999999998,0.20000000000000062 -1.3099999999999998,0.4000000000000008 -1.1099999999999999,0.4000000000000008" data-type="line" data-label="" points="363.6459709379128,383.0030823425803 353.7824746807574,383.0030823425803 353.7824746807574,373.13958608542487 363.6459709379128,373.13958608542487" fill="none" stroke="purple" stroke-width="1" />
807
- </g>
808
- <g>
809
- <polyline data-points="-3.7550000000000003,3.7683333333333353 -3.7550000000000003,3.9683333333333355 -4.6850000000000005,3.9683333333333355 -4.6850000000000005,3.7683333333333353" data-type="line" data-label="" points="233.2012329370322,207.0218699544987 233.2012329370322,197.15837369734325 187.3359753412594,197.15837369734325 187.3359753412594,207.0218699544987" fill="none" stroke="purple" stroke-width="1" />
810
- </g>
811
- <g>
812
- <polyline data-points="-6.415,3.7683333333333353 -6.415,3.9683333333333355 -4.6850000000000005,3.9683333333333355 -4.6850000000000005,3.7683333333333353" data-type="line" data-label="" points="102.01673271686491,207.0218699544987 102.01673271686491,197.15837369734325 187.3359753412594,197.15837369734325 187.3359753412594,207.0218699544987" fill="none" stroke="purple" stroke-width="1" />
813
- </g>
814
- <g>
815
- <polyline data-points="-1.1099999999999999,2.600000000000002 -1.3099999999999998,2.600000000000002 -1.3099999999999998,2.8000000000000016 -1.1099999999999999,2.8000000000000016" data-type="line" data-label="" points="363.6459709379128,264.64112725671504 353.7824746807574,264.64112725671504 353.7824746807574,254.77763099955962 363.6459709379128,254.77763099955962" fill="none" stroke="purple" stroke-width="1" />
816
- </g>
817
- <g>
818
- <polyline data-points="-2.025,2.000000000000001 -2.025,2.200000000000001 -1.3099999999999998,2.200000000000001 -1.3099999999999998,2.0000000000000018 -1.1099999999999999,2.0000000000000018" data-type="line" data-label="" points="318.5204755614267,294.2316160281814 318.5204755614267,284.36811977102593 353.7824746807574,284.36811977102593 353.7824746807574,294.23161602818135 363.6459709379128,294.23161602818135" fill="none" stroke="purple" stroke-width="1" />
819
- </g>
820
- <g>
821
- <polyline data-points="-2.025,-1.6000000000000003 -2.025,-1.4000000000000004 -1.3099999999999998,-1.4000000000000004 -1.3099999999999998,-1.6000000000000008 -1.1099999999999997,-1.6000000000000008" data-type="line" data-label="" points="318.5204755614267,471.7745486569793 318.5204755614267,461.9110523998238 353.7824746807574,461.9110523998238 353.7824746807574,471.7745486569793 363.6459709379128,471.7745486569793" fill="none" stroke="purple" stroke-width="1" />
822
- </g>
823
- <g>
824
- <polyline data-points="-0.6375000000000002,5.405000000000002 -0.6375000000000002,5.205000000000002 -1.5675,5.205000000000002 -1.5675,5.405000000000002" data-type="line" data-label="" points="386.94848084544253,126.30559225011007 386.94848084544253,136.16908850726549 341.08322324966974,136.16908850726549 341.08322324966974,126.30559225011007" fill="none" stroke="purple" stroke-width="1" />
825
- </g>
826
- <g>
827
- <polyline data-points="-2.4975,5.405000000000002 -2.4975,5.205000000000002 -1.5674999999999994,5.205000000000002 -1.5674999999999994,5.405000000000002" data-type="line" data-label="" points="295.21796565389695,126.30559225011007 295.21796565389695,136.16908850726549 341.0832232496698,136.16908850726549 341.0832232496698,126.30559225011007" fill="none" stroke="purple" stroke-width="1" />
828
- </g>
829
- <g>
830
- <polyline data-points="0.29250000000000076,5.405000000000002 0.29250000000000076,5.205000000000002 -0.6374999999999998,5.205000000000002 -0.6374999999999998,5.405000000000002" data-type="line" data-label="" points="432.8137384412153,126.30559225011007 432.8137384412153,136.16908850726549 386.94848084544253,136.16908850726549 386.94848084544253,126.30559225011007" fill="none" stroke="purple" stroke-width="1" />
831
- </g>
832
- <g>
833
- <polyline data-points="1.222500000000001,5.405000000000002 1.222500000000001,5.205000000000002 0.2925000000000005,5.205000000000002 0.2925000000000005,5.405000000000002" data-type="line" data-label="" points="478.6789960369881,126.30559225011007 478.6789960369881,136.16908850726549 432.8137384412153,136.16908850726549 432.8137384412153,126.30559225011007" fill="none" stroke="purple" stroke-width="1" />
834
- </g>
835
- <g>
836
- <polyline data-points="2.152500000000001,5.405000000000002 2.152500000000001,5.205000000000002 1.2225000000000006,5.205000000000002 1.2225000000000006,5.405000000000002" data-type="line" data-label="" points="524.5442536327608,126.30559225011007 524.5442536327608,136.16908850726549 478.6789960369881,136.16908850726549 478.6789960369881,126.30559225011007" fill="none" stroke="purple" stroke-width="1" />
837
- </g>
838
- <g>
839
- <polyline data-points="-3.7550000000000003,2.668333333333335 -3.7550000000000003,2.4683333333333346 -4.6850000000000005,2.4683333333333346 -4.6850000000000005,2.668333333333335" data-type="line" data-label="" points="233.2012329370322,261.2710993688536 233.2012329370322,271.13459562600906 187.3359753412594,271.13459562600906 187.3359753412594,261.2710993688536" fill="none" stroke="purple" stroke-width="1" />
840
- </g>
841
- <g>
842
- <polyline data-points="-6.415,2.6683333333333357 -6.415,2.4683333333333346 -4.6850000000000005,2.4683333333333346 -4.6850000000000005,2.668333333333335" data-type="line" data-label="" points="102.01673271686491,261.2710993688536 102.01673271686491,271.13459562600906 187.3359753412594,271.13459562600906 187.3359753412594,261.2710993688536" fill="none" stroke="purple" stroke-width="1" />
843
- </g>
844
- <g>
845
- <polyline data-points="-2.025,0.9000000000000021 -2.025,0.7000000000000011 -2.49,0.7000000000000011 -2.49,-2.9000000000000004 -2.025,-2.9000000000000004 -2.025,-2.7" data-type="line" data-label="" points="318.5204755614267,348.4808454425362 318.5204755614267,358.3443416996917 295.5878467635403,358.3443416996917 295.5878467635403,535.8872743284896 318.5204755614267,535.8872743284896 318.5204755614267,526.0237780713342" fill="none" stroke="purple" stroke-width="1" />
846
- </g>
847
- <g>
848
- <rect data-type="rect" data-label="schematic_component_0" data-x="0.79" data-y="0" x="363.6459709379128" y="185.73315719947155" width="187.40642888595323" height="414.2668428005285" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723" />
849
- </g>
850
- <g>
851
- <rect data-type="rect" data-label="schematic_component_1" data-x="-1.5675" data-y="5.955000000000002" x="328.0140907089388" y="72.05636283575518" width="26.138265081461952" height="54.249229414354886" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723" />
852
- </g>
853
- <g>
854
- <rect data-type="rect" data-label="schematic_component_2" data-x="-0.6374999999999998" data-y="5.955000000000002" x="373.8793483047116" y="72.05636283575518" width="26.138265081461896" height="54.249229414354886" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723" />
855
- </g>
856
- <g>
857
- <rect data-type="rect" data-label="schematic_component_3" data-x="-2.4975" data-y="5.955000000000002" x="282.148833113166" y="72.05636283575518" width="26.138265081461952" height="54.249229414354886" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723" />
858
- </g>
859
- <g>
860
- <rect data-type="rect" data-label="schematic_component_4" data-x="0.2925000000000004" data-y="5.955000000000002" x="419.7446059004844" y="72.05636283575518" width="26.138265081461896" height="54.249229414354886" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723" />
861
- </g>
862
- <g>
863
- <rect data-type="rect" data-label="schematic_component_5" data-x="1.2225000000000006" data-y="5.955000000000002" x="465.60986349625716" y="72.05636283575518" width="26.138265081461896" height="54.249229414354886" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723" />
864
- </g>
865
- <g>
866
- <rect data-type="rect" data-label="schematic_component_6" data-x="2.1525000000000007" data-y="5.955000000000002" x="511.4751210920299" y="72.05636283575518" width="26.138265081461896" height="54.249229414354886" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723" />
867
- </g>
868
- <g>
869
- <rect data-type="rect" data-label="schematic_component_7" data-x="-4.6850000000000005" data-y="3.218333333333335" x="174.26684280052848" y="207.0218699544987" width="26.138265081461867" height="54.249229414354886" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723" />
870
- </g>
871
- <g>
872
- <rect data-type="rect" data-label="schematic_component_8" data-x="-3.7550000000000003" data-y="3.218333333333335" x="220.1321003963012" y="207.0218699544987" width="26.138265081461924" height="54.249229414354886" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723" />
873
- </g>
874
- <g>
875
- <rect data-type="rect" data-label="schematic_component_9" data-x="-6.415" data-y="3.2183333333333355" x="88.94760017613396" y="207.0218699544987" width="26.138265081461896" height="54.249229414354886" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723" />
876
- </g>
877
- <g>
878
- <rect data-type="rect" data-label="schematic_component_10" data-x="-2.025" data-y="1.450000000000001" x="305.45134302069573" y="294.2316160281814" width="26.138265081461896" height="54.24922941435483" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723" />
879
- </g>
880
- <g>
881
- <rect data-type="rect" data-label="schematic_component_11" data-x="-2.025" data-y="-2.1500000000000004" x="305.45134302069573" y="471.7745486569793" width="26.138265081461896" height="54.249229414354886" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723" />
882
- </g>
883
- <g>
884
- <rect data-type="rect" data-label="netId: V3_3
885
- globalConnNetId: connectivity_net0
886
- available orientations: y+" data-x="-1.3099999999999998" data-y="1.4250000000000016" x="348.85072655217965" y="311.4927344782034" width="9.863496257155475" height="22.192866578599705" fill="#ef444466" stroke="#ef4444" stroke-width="0.020276785714285723" />
887
- </g>
888
- <g>
889
- <rect data-type="rect" data-label="netId: V3_3
890
- globalConnNetId: connectivity_net0
891
- available orientations: y+" data-x="0.29250000000000076" data-y="6.9300000000000015" x="427.8819903126376" y="40.00000000000006" width="9.863496257155475" height="22.192866578599705" fill="#ef444466" stroke="#ef4444" stroke-width="0.020276785714285723" />
892
- </g>
893
- <g>
894
- <rect data-type="rect" data-label="netId: V1_1
895
- globalConnNetId: connectivity_net6
896
- available orientations: y+" data-x="-1.3099999999999998" data-y="3.0250000000000017" x="348.85072655217965" y="232.58476442095986" width="9.863496257155475" height="22.192866578599762" fill="#ef444466" stroke="#ef4444" stroke-width="0.020276785714285723" />
897
- </g>
898
- <g>
899
- <rect data-type="rect" data-label="netId: V1_1
900
- globalConnNetId: connectivity_net6
901
- available orientations: y+" data-x="-3.7550000000000003" data-y="4.193333333333335" x="228.26948480845445" y="174.96550711874357" width="9.863496257155447" height="22.192866578599705" fill="#ef444466" stroke="#ef4444" stroke-width="0.020276785714285723" />
902
- </g>
903
- <g>
904
- <rect data-type="rect" data-label="netId: capacitor.C11 &gt; port.pin1 to U3.ADC_AVDD
905
- globalConnNetId: connectivity_net9
906
- available orientations: any" data-x="-2.25" data-y="-1.4000000000000004" x="296.327608982827" y="456.97930427124606" width="22.192866578599705" height="9.863496257155475" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.020276785714285723" />
907
- </g>
908
- <g>
909
- <rect data-type="rect" data-label="netId: capacitor.C10 &gt; port.pin1 to U3.VREG_VIN
910
- globalConnNetId: connectivity_net8
911
- available orientations: any" data-x="-2.25" data-y="2.200000000000001" x="296.327608982827" y="279.4363716424482" width="22.192866578599705" height="9.863496257155475" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.020276785714285723" />
912
- </g>
913
- <g>
914
- <rect data-type="rect" data-label="netId: GND
915
- globalConnNetId: connectivity_net10
916
- available orientations: y-" data-x="0.29250000000000076" data-y="4.980000000000002" x="427.8819903126376" y="136.16908850726549" width="9.863496257155475" height="22.192866578599705" fill="#00000066" stroke="#000000" stroke-width="0.020276785714285723" />
917
- </g>
918
- <g>
919
- <rect data-type="rect" data-label="netId: GND
920
- globalConnNetId: connectivity_net10
921
- available orientations: y-" data-x="-3.7550000000000003" data-y="2.2433333333333345" x="228.26948480845445" y="271.13459562600906" width="9.863496257155447" height="22.192866578599705" fill="#00000066" stroke="#000000" stroke-width="0.020276785714285723" />
922
- </g>
923
- <g>
924
- <rect data-type="rect" data-label="netId: GND
925
- globalConnNetId: connectivity_net10
926
- available orientations: y-" data-x="-2.49" data-y="-3.1250000000000004" x="290.6560986349626" y="535.8872743284896" width="9.863496257155418" height="22.192866578599705" fill="#00000066" stroke="#000000" stroke-width="0.020276785714285723" />
927
- </g>
928
- <g id="crosshair" style="display: none">
929
- <line id="crosshair-h" y1="0" y2="640" stroke="#666" stroke-width="0.5" />
930
- <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>
931
- </g>
932
- <script>
933
- <![CDATA[
934
- document.currentScript.parentElement.addEventListener('mousemove', (e) => {
935
- const svg = e.currentTarget;
936
- const rect = svg.getBoundingClientRect();
937
- const x = e.clientX - rect.left;
938
- const y = e.clientY - rect.top;
939
- const crosshair = svg.getElementById('crosshair');
940
- const h = svg.getElementById('crosshair-h');
941
- const v = svg.getElementById('crosshair-v');
942
- const coords = svg.getElementById('coordinates');
1
+ <svg width="640" height="640" viewBox="0 0 640 640" xmlns="http://www.w3.org/2000/svg"><rect width="100%" height="100%" fill="white"/><g><polyline data-points="-1.1099999999999999,1.2000000000000015 -1.5675,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 341.08322324966974,72.05636283575518" fill="none" stroke="hsl(280, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.1099999999999999,1.0000000000000013 -0.6374999999999998,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 386.94848084544253,72.05636283575518" fill="none" stroke="hsl(280, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.1099999999999999,0.8000000000000012 -2.4975,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,353.412593571114 295.21796565389695,72.05636283575518" fill="none" stroke="hsl(16, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.1099999999999999,0.600000000000001 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,363.2760898282694 432.8137384412153,72.05636283575518" fill="none" stroke="hsl(280, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.1099999999999999,0.4000000000000008 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,373.13958608542487 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(280, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.1099999999999999,0.20000000000000062 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,383.0030823425803 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(280, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.1099999999999999,2.8000000000000016 -4.6850000000000005,3.7683333333333353" data-type="line" data-label="" points="363.6459709379128,254.77763099955962 187.3359753412594,207.0218699544987" fill="none" stroke="hsl(280, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.1099999999999999,2.600000000000002 -3.7550000000000003,3.7683333333333353" data-type="line" data-label="" points="363.6459709379128,264.64112725671504 233.2012329370322,207.0218699544987" fill="none" stroke="hsl(168, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-2.025,2.000000000000001 -1.1099999999999999,2.0000000000000018" data-type="line" data-label="" points="318.5204755614267,294.2316160281814 363.6459709379128,294.23161602818135" fill="none" stroke="hsl(240, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-2.025,-1.6000000000000003 -1.1099999999999999,-1.6000000000000005" data-type="line" data-label="" points="318.5204755614267,471.7745486569793 363.6459709379128,471.7745486569793" fill="none" stroke="hsl(240, 100%, 50%, 0.8)" stroke-width="1px"/></g><g><polyline data-points="-1.1099999999999999,1.2000000000000015 -1.1099999999999999,1.0000000000000013" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 363.6459709379128,343.54909731395855" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,1.2000000000000015 -1.1099999999999999,0.8000000000000012" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 363.6459709379128,353.412593571114" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,1.2000000000000015 -1.1099999999999999,0.600000000000001" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 363.6459709379128,363.2760898282694" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,1.2000000000000015 -1.1099999999999999,0.4000000000000008" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 363.6459709379128,373.13958608542487" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,1.2000000000000015 -1.1099999999999999,0.20000000000000062" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 363.6459709379128,383.0030823425803" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,1.2000000000000015 -1.5675,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 341.08322324966974,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,1.2000000000000015 -0.6374999999999998,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 386.94848084544253,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,1.2000000000000015 -2.4975,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 295.21796565389695,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,1.2000000000000015 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 432.8137384412153,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,1.2000000000000015 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,1.2000000000000015 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,333.6856010568031 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,1.0000000000000013 -1.1099999999999999,0.8000000000000012" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 363.6459709379128,353.412593571114" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,1.0000000000000013 -1.1099999999999999,0.600000000000001" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 363.6459709379128,363.2760898282694" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,1.0000000000000013 -1.1099999999999999,0.4000000000000008" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 363.6459709379128,373.13958608542487" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,1.0000000000000013 -1.1099999999999999,0.20000000000000062" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 363.6459709379128,383.0030823425803" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,1.0000000000000013 -1.5675,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 341.08322324966974,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,1.0000000000000013 -0.6374999999999998,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 386.94848084544253,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,1.0000000000000013 -2.4975,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 295.21796565389695,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,1.0000000000000013 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 432.8137384412153,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,1.0000000000000013 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,1.0000000000000013 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.8000000000000012 -1.1099999999999999,0.600000000000001" data-type="line" data-label="" points="363.6459709379128,353.412593571114 363.6459709379128,363.2760898282694" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.8000000000000012 -1.1099999999999999,0.4000000000000008" data-type="line" data-label="" points="363.6459709379128,353.412593571114 363.6459709379128,373.13958608542487" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.8000000000000012 -1.1099999999999999,0.20000000000000062" data-type="line" data-label="" points="363.6459709379128,353.412593571114 363.6459709379128,383.0030823425803" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.8000000000000012 -1.5675,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,353.412593571114 341.08322324966974,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.8000000000000012 -0.6374999999999998,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,353.412593571114 386.94848084544253,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.8000000000000012 -2.4975,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,353.412593571114 295.21796565389695,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.8000000000000012 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,353.412593571114 432.8137384412153,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.8000000000000012 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,353.412593571114 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.8000000000000012 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,353.412593571114 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.600000000000001 -1.1099999999999999,0.4000000000000008" data-type="line" data-label="" points="363.6459709379128,363.2760898282694 363.6459709379128,373.13958608542487" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.600000000000001 -1.1099999999999999,0.20000000000000062" data-type="line" data-label="" points="363.6459709379128,363.2760898282694 363.6459709379128,383.0030823425803" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.600000000000001 -1.5675,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,363.2760898282694 341.08322324966974,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.600000000000001 -0.6374999999999998,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,363.2760898282694 386.94848084544253,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.600000000000001 -2.4975,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,363.2760898282694 295.21796565389695,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.600000000000001 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,363.2760898282694 432.8137384412153,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.600000000000001 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,363.2760898282694 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.600000000000001 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,363.2760898282694 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.4000000000000008 -1.1099999999999999,0.20000000000000062" data-type="line" data-label="" points="363.6459709379128,373.13958608542487 363.6459709379128,383.0030823425803" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.4000000000000008 -1.5675,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,373.13958608542487 341.08322324966974,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.4000000000000008 -0.6374999999999998,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,373.13958608542487 386.94848084544253,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.4000000000000008 -2.4975,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,373.13958608542487 295.21796565389695,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.4000000000000008 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,373.13958608542487 432.8137384412153,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.4000000000000008 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,373.13958608542487 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.4000000000000008 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,373.13958608542487 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.20000000000000062 -1.5675,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,383.0030823425803 341.08322324966974,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.20000000000000062 -0.6374999999999998,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,383.0030823425803 386.94848084544253,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.20000000000000062 -2.4975,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,383.0030823425803 295.21796565389695,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.20000000000000062 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,383.0030823425803 432.8137384412153,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.20000000000000062 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,383.0030823425803 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,0.20000000000000062 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="363.6459709379128,383.0030823425803 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.5675,6.505000000000002 -0.6374999999999998,6.505000000000002" data-type="line" data-label="" points="341.08322324966974,72.05636283575518 386.94848084544253,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.5675,6.505000000000002 -2.4975,6.505000000000002" data-type="line" data-label="" points="341.08322324966974,72.05636283575518 295.21796565389695,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.5675,6.505000000000002 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="341.08322324966974,72.05636283575518 432.8137384412153,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.5675,6.505000000000002 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="341.08322324966974,72.05636283575518 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.5675,6.505000000000002 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="341.08322324966974,72.05636283575518 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.6374999999999998,6.505000000000002 -2.4975,6.505000000000002" data-type="line" data-label="" points="386.94848084544253,72.05636283575518 295.21796565389695,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.6374999999999998,6.505000000000002 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="386.94848084544253,72.05636283575518 432.8137384412153,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.6374999999999998,6.505000000000002 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="386.94848084544253,72.05636283575518 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.6374999999999998,6.505000000000002 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="386.94848084544253,72.05636283575518 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.4975,6.505000000000002 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="295.21796565389695,72.05636283575518 432.8137384412153,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.4975,6.505000000000002 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="295.21796565389695,72.05636283575518 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.4975,6.505000000000002 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="295.21796565389695,72.05636283575518 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.29250000000000037,6.505000000000002 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="432.8137384412153,72.05636283575518 478.6789960369881,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.29250000000000037,6.505000000000002 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="432.8137384412153,72.05636283575518 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2225000000000006,6.505000000000002 2.1525000000000007,6.505000000000002" data-type="line" data-label="" points="478.6789960369881,72.05636283575518 524.5442536327608,72.05636283575518" fill="none" stroke="hsl(73, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,2.8000000000000016 -1.1099999999999999,2.600000000000002" data-type="line" data-label="" points="363.6459709379128,254.77763099955962 363.6459709379128,264.64112725671504" fill="none" stroke="hsl(309, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,2.8000000000000016 -4.6850000000000005,3.7683333333333353" data-type="line" data-label="" points="363.6459709379128,254.77763099955962 187.3359753412594,207.0218699544987" fill="none" stroke="hsl(309, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,2.8000000000000016 -3.7550000000000003,3.7683333333333353" data-type="line" data-label="" points="363.6459709379128,254.77763099955962 233.2012329370322,207.0218699544987" fill="none" stroke="hsl(309, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,2.8000000000000016 -6.415,3.7683333333333353" data-type="line" data-label="" points="363.6459709379128,254.77763099955962 102.01673271686491,207.0218699544987" fill="none" stroke="hsl(309, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,2.600000000000002 -4.6850000000000005,3.7683333333333353" data-type="line" data-label="" points="363.6459709379128,264.64112725671504 187.3359753412594,207.0218699544987" fill="none" stroke="hsl(309, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,2.600000000000002 -3.7550000000000003,3.7683333333333353" data-type="line" data-label="" points="363.6459709379128,264.64112725671504 233.2012329370322,207.0218699544987" fill="none" stroke="hsl(309, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.1099999999999999,2.600000000000002 -6.415,3.7683333333333353" data-type="line" data-label="" points="363.6459709379128,264.64112725671504 102.01673271686491,207.0218699544987" fill="none" stroke="hsl(309, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.6850000000000005,3.7683333333333353 -3.7550000000000003,3.7683333333333353" data-type="line" data-label="" points="187.3359753412594,207.0218699544987 233.2012329370322,207.0218699544987" fill="none" stroke="hsl(309, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.6850000000000005,3.7683333333333353 -6.415,3.7683333333333353" data-type="line" data-label="" points="187.3359753412594,207.0218699544987 102.01673271686491,207.0218699544987" fill="none" stroke="hsl(309, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.7550000000000003,3.7683333333333353 -6.415,3.7683333333333353" data-type="line" data-label="" points="233.2012329370322,207.0218699544987 102.01673271686491,207.0218699544987" fill="none" stroke="hsl(309, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.5675,5.405000000000002 -0.6374999999999998,5.405000000000002" data-type="line" data-label="" points="341.08322324966974,126.30559225011007 386.94848084544253,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.5675,5.405000000000002 -2.4975,5.405000000000002" data-type="line" data-label="" points="341.08322324966974,126.30559225011007 295.21796565389695,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.5675,5.405000000000002 0.2925000000000005,5.405000000000002" data-type="line" data-label="" points="341.08322324966974,126.30559225011007 432.8137384412153,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.5675,5.405000000000002 1.2225000000000006,5.405000000000002" data-type="line" data-label="" points="341.08322324966974,126.30559225011007 478.6789960369881,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.5675,5.405000000000002 2.1525000000000007,5.405000000000002" data-type="line" data-label="" points="341.08322324966974,126.30559225011007 524.5442536327608,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.5675,5.405000000000002 -4.6850000000000005,2.668333333333335" data-type="line" data-label="" points="341.08322324966974,126.30559225011007 187.3359753412594,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.5675,5.405000000000002 -3.7550000000000003,2.668333333333335" data-type="line" data-label="" points="341.08322324966974,126.30559225011007 233.2012329370322,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.5675,5.405000000000002 -6.415,2.6683333333333357" data-type="line" data-label="" points="341.08322324966974,126.30559225011007 102.01673271686491,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.5675,5.405000000000002 -2.025,0.900000000000001" data-type="line" data-label="" points="341.08322324966974,126.30559225011007 318.5204755614267,348.48084544253624" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-1.5675,5.405000000000002 -2.025,-2.7" data-type="line" data-label="" points="341.08322324966974,126.30559225011007 318.5204755614267,526.0237780713342" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.6374999999999998,5.405000000000002 -2.4975,5.405000000000002" data-type="line" data-label="" points="386.94848084544253,126.30559225011007 295.21796565389695,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.6374999999999998,5.405000000000002 0.2925000000000005,5.405000000000002" data-type="line" data-label="" points="386.94848084544253,126.30559225011007 432.8137384412153,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.6374999999999998,5.405000000000002 1.2225000000000006,5.405000000000002" data-type="line" data-label="" points="386.94848084544253,126.30559225011007 478.6789960369881,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.6374999999999998,5.405000000000002 2.1525000000000007,5.405000000000002" data-type="line" data-label="" points="386.94848084544253,126.30559225011007 524.5442536327608,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.6374999999999998,5.405000000000002 -4.6850000000000005,2.668333333333335" data-type="line" data-label="" points="386.94848084544253,126.30559225011007 187.3359753412594,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.6374999999999998,5.405000000000002 -3.7550000000000003,2.668333333333335" data-type="line" data-label="" points="386.94848084544253,126.30559225011007 233.2012329370322,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.6374999999999998,5.405000000000002 -6.415,2.6683333333333357" data-type="line" data-label="" points="386.94848084544253,126.30559225011007 102.01673271686491,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.6374999999999998,5.405000000000002 -2.025,0.900000000000001" data-type="line" data-label="" points="386.94848084544253,126.30559225011007 318.5204755614267,348.48084544253624" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.6374999999999998,5.405000000000002 -2.025,-2.7" data-type="line" data-label="" points="386.94848084544253,126.30559225011007 318.5204755614267,526.0237780713342" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.4975,5.405000000000002 0.2925000000000005,5.405000000000002" data-type="line" data-label="" points="295.21796565389695,126.30559225011007 432.8137384412153,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.4975,5.405000000000002 1.2225000000000006,5.405000000000002" data-type="line" data-label="" points="295.21796565389695,126.30559225011007 478.6789960369881,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.4975,5.405000000000002 2.1525000000000007,5.405000000000002" data-type="line" data-label="" points="295.21796565389695,126.30559225011007 524.5442536327608,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.4975,5.405000000000002 -4.6850000000000005,2.668333333333335" data-type="line" data-label="" points="295.21796565389695,126.30559225011007 187.3359753412594,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.4975,5.405000000000002 -3.7550000000000003,2.668333333333335" data-type="line" data-label="" points="295.21796565389695,126.30559225011007 233.2012329370322,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.4975,5.405000000000002 -6.415,2.6683333333333357" data-type="line" data-label="" points="295.21796565389695,126.30559225011007 102.01673271686491,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.4975,5.405000000000002 -2.025,0.900000000000001" data-type="line" data-label="" points="295.21796565389695,126.30559225011007 318.5204755614267,348.48084544253624" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.4975,5.405000000000002 -2.025,-2.7" data-type="line" data-label="" points="295.21796565389695,126.30559225011007 318.5204755614267,526.0237780713342" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.2925000000000005,5.405000000000002 1.2225000000000006,5.405000000000002" data-type="line" data-label="" points="432.8137384412153,126.30559225011007 478.6789960369881,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.2925000000000005,5.405000000000002 2.1525000000000007,5.405000000000002" data-type="line" data-label="" points="432.8137384412153,126.30559225011007 524.5442536327608,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.2925000000000005,5.405000000000002 -4.6850000000000005,2.668333333333335" data-type="line" data-label="" points="432.8137384412153,126.30559225011007 187.3359753412594,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.2925000000000005,5.405000000000002 -3.7550000000000003,2.668333333333335" data-type="line" data-label="" points="432.8137384412153,126.30559225011007 233.2012329370322,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.2925000000000005,5.405000000000002 -6.415,2.6683333333333357" data-type="line" data-label="" points="432.8137384412153,126.30559225011007 102.01673271686491,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.2925000000000005,5.405000000000002 -2.025,0.900000000000001" data-type="line" data-label="" points="432.8137384412153,126.30559225011007 318.5204755614267,348.48084544253624" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="0.2925000000000005,5.405000000000002 -2.025,-2.7" data-type="line" data-label="" points="432.8137384412153,126.30559225011007 318.5204755614267,526.0237780713342" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2225000000000006,5.405000000000002 2.1525000000000007,5.405000000000002" data-type="line" data-label="" points="478.6789960369881,126.30559225011007 524.5442536327608,126.30559225011007" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2225000000000006,5.405000000000002 -4.6850000000000005,2.668333333333335" data-type="line" data-label="" points="478.6789960369881,126.30559225011007 187.3359753412594,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2225000000000006,5.405000000000002 -3.7550000000000003,2.668333333333335" data-type="line" data-label="" points="478.6789960369881,126.30559225011007 233.2012329370322,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2225000000000006,5.405000000000002 -6.415,2.6683333333333357" data-type="line" data-label="" points="478.6789960369881,126.30559225011007 102.01673271686491,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2225000000000006,5.405000000000002 -2.025,0.900000000000001" data-type="line" data-label="" points="478.6789960369881,126.30559225011007 318.5204755614267,348.48084544253624" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="1.2225000000000006,5.405000000000002 -2.025,-2.7" data-type="line" data-label="" points="478.6789960369881,126.30559225011007 318.5204755614267,526.0237780713342" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.1525000000000007,5.405000000000002 -4.6850000000000005,2.668333333333335" data-type="line" data-label="" points="524.5442536327608,126.30559225011007 187.3359753412594,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.1525000000000007,5.405000000000002 -3.7550000000000003,2.668333333333335" data-type="line" data-label="" points="524.5442536327608,126.30559225011007 233.2012329370322,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.1525000000000007,5.405000000000002 -6.415,2.6683333333333357" data-type="line" data-label="" points="524.5442536327608,126.30559225011007 102.01673271686491,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.1525000000000007,5.405000000000002 -2.025,0.900000000000001" data-type="line" data-label="" points="524.5442536327608,126.30559225011007 318.5204755614267,348.48084544253624" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="2.1525000000000007,5.405000000000002 -2.025,-2.7" data-type="line" data-label="" points="524.5442536327608,126.30559225011007 318.5204755614267,526.0237780713342" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.6850000000000005,2.668333333333335 -3.7550000000000003,2.668333333333335" data-type="line" data-label="" points="187.3359753412594,261.2710993688536 233.2012329370322,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.6850000000000005,2.668333333333335 -6.415,2.6683333333333357" data-type="line" data-label="" points="187.3359753412594,261.2710993688536 102.01673271686491,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.6850000000000005,2.668333333333335 -2.025,0.900000000000001" data-type="line" data-label="" points="187.3359753412594,261.2710993688536 318.5204755614267,348.48084544253624" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-4.6850000000000005,2.668333333333335 -2.025,-2.7" data-type="line" data-label="" points="187.3359753412594,261.2710993688536 318.5204755614267,526.0237780713342" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.7550000000000003,2.668333333333335 -6.415,2.6683333333333357" data-type="line" data-label="" points="233.2012329370322,261.2710993688536 102.01673271686491,261.2710993688536" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.7550000000000003,2.668333333333335 -2.025,0.900000000000001" data-type="line" data-label="" points="233.2012329370322,261.2710993688536 318.5204755614267,348.48084544253624" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-3.7550000000000003,2.668333333333335 -2.025,-2.7" data-type="line" data-label="" points="233.2012329370322,261.2710993688536 318.5204755614267,526.0237780713342" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-6.415,2.6683333333333357 -2.025,0.900000000000001" data-type="line" data-label="" points="102.01673271686491,261.2710993688536 318.5204755614267,348.48084544253624" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-6.415,2.6683333333333357 -2.025,-2.7" data-type="line" data-label="" points="102.01673271686491,261.2710993688536 318.5204755614267,526.0237780713342" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-2.025,0.900000000000001 -2.025,-2.7" data-type="line" data-label="" points="318.5204755614267,348.48084544253624 318.5204755614267,526.0237780713342" fill="none" stroke="hsl(157, 100%, 50%, 0.8)" stroke-width="1px" stroke-dasharray="4 2"/></g><g><polyline data-points="-0.6375000000000002,6.505000000000002 -0.6375000000000002,6.705000000000002 -1.5675,6.705000000000002 -1.5675,6.505000000000002" data-type="line" data-label="" points="386.94848084544253,72.05636283575518 386.94848084544253,62.19286657859976 341.08322324966974,62.19286657859976 341.08322324966974,72.05636283575518" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="0.29250000000000076,6.505000000000002 0.29250000000000076,6.705000000000002 -0.6374999999999998,6.705000000000002 -0.6374999999999998,6.505000000000002" data-type="line" data-label="" points="432.8137384412153,72.05636283575518 432.8137384412153,62.19286657859976 386.94848084544253,62.19286657859976 386.94848084544253,72.05636283575518" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.222500000000001,6.505000000000002 1.222500000000001,6.705000000000002 0.29250000000000037,6.705000000000002 0.29250000000000037,6.505000000000002" data-type="line" data-label="" points="478.6789960369881,72.05636283575518 478.6789960369881,62.19286657859976 432.8137384412153,62.19286657859976 432.8137384412153,72.05636283575518" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="2.152500000000001,6.505000000000002 2.152500000000001,6.705000000000002 1.2225000000000006,6.705000000000002 1.2225000000000006,6.505000000000002" data-type="line" data-label="" points="524.5442536327608,72.05636283575518 524.5442536327608,62.19286657859976 478.6789960369881,62.19286657859976 478.6789960369881,72.05636283575518" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-2.4975,6.505000000000002 -2.4975,6.705000000000002 -1.5674999999999994,6.705000000000002 -1.5674999999999994,6.505000000000002" data-type="line" data-label="" points="295.21796565389695,72.05636283575518 295.21796565389695,62.19286657859976 341.0832232496698,62.19286657859976 341.0832232496698,72.05636283575518" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.1099999999999999,1.0000000000000013 -1.3099999999999998,1.0000000000000013 -1.3099999999999998,1.2000000000000015 -1.1099999999999999,1.2000000000000015" data-type="line" data-label="" points="363.6459709379128,343.54909731395855 353.7824746807574,343.54909731395855 353.7824746807574,333.6856010568031 363.6459709379128,333.6856010568031" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.1099999999999999,0.8000000000000012 -1.3099999999999998,0.8000000000000012 -1.3099999999999998,1.0000000000000013 -1.1099999999999999,1.0000000000000013" data-type="line" data-label="" points="363.6459709379128,353.412593571114 353.7824746807574,353.412593571114 353.7824746807574,343.54909731395855 363.6459709379128,343.54909731395855" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.1099999999999999,0.600000000000001 -1.3099999999999998,0.600000000000001 -1.3099999999999998,0.8000000000000012 -1.1099999999999999,0.8000000000000012" data-type="line" data-label="" points="363.6459709379128,363.2760898282694 353.7824746807574,363.2760898282694 353.7824746807574,353.412593571114 363.6459709379128,353.412593571114" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.1099999999999999,0.4000000000000008 -1.3099999999999998,0.4000000000000008 -1.3099999999999998,0.600000000000001 -1.1099999999999999,0.600000000000001" data-type="line" data-label="" points="363.6459709379128,373.13958608542487 353.7824746807574,373.13958608542487 353.7824746807574,363.2760898282694 363.6459709379128,363.2760898282694" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.1099999999999999,0.20000000000000062 -1.3099999999999998,0.20000000000000062 -1.3099999999999998,0.4000000000000008 -1.1099999999999999,0.4000000000000008" data-type="line" data-label="" points="363.6459709379128,383.0030823425803 353.7824746807574,383.0030823425803 353.7824746807574,373.13958608542487 363.6459709379128,373.13958608542487" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-3.7550000000000003,3.7683333333333353 -3.7550000000000003,3.9683333333333355 -4.6850000000000005,3.9683333333333355 -4.6850000000000005,3.7683333333333353" data-type="line" data-label="" points="233.2012329370322,207.0218699544987 233.2012329370322,197.15837369734325 187.3359753412594,197.15837369734325 187.3359753412594,207.0218699544987" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-6.415,3.7683333333333353 -6.415,3.9683333333333355 -4.6850000000000005,3.9683333333333355 -4.6850000000000005,3.7683333333333353" data-type="line" data-label="" points="102.01673271686491,207.0218699544987 102.01673271686491,197.15837369734325 187.3359753412594,197.15837369734325 187.3359753412594,207.0218699544987" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-1.1099999999999999,2.600000000000002 -1.3099999999999998,2.600000000000002 -1.3099999999999998,2.8000000000000016 -1.1099999999999999,2.8000000000000016" data-type="line" data-label="" points="363.6459709379128,264.64112725671504 353.7824746807574,264.64112725671504 353.7824746807574,254.77763099955962 363.6459709379128,254.77763099955962" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-2.025,2.000000000000001 -2.025,2.200000000000001 -1.3099999999999998,2.200000000000001 -1.3099999999999998,2.0000000000000018 -1.1099999999999999,2.0000000000000018" data-type="line" data-label="" points="318.5204755614267,294.2316160281814 318.5204755614267,284.36811977102593 353.7824746807574,284.36811977102593 353.7824746807574,294.23161602818135 363.6459709379128,294.23161602818135" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-2.025,-1.6000000000000003 -2.025,-1.4000000000000004 -1.3099999999999998,-1.4000000000000004 -1.3099999999999998,-1.6000000000000008 -1.1099999999999997,-1.6000000000000008" data-type="line" data-label="" points="318.5204755614267,471.7745486569793 318.5204755614267,461.9110523998238 353.7824746807574,461.9110523998238 353.7824746807574,471.7745486569793 363.6459709379128,471.7745486569793" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-0.6375000000000002,5.405000000000002 -0.6375000000000002,5.205000000000002 -1.5675,5.205000000000002 -1.5675,5.405000000000002" data-type="line" data-label="" points="386.94848084544253,126.30559225011007 386.94848084544253,136.16908850726549 341.08322324966974,136.16908850726549 341.08322324966974,126.30559225011007" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-2.4975,5.405000000000002 -2.4975,5.205000000000002 -1.5674999999999994,5.205000000000002 -1.5674999999999994,5.405000000000002" data-type="line" data-label="" points="295.21796565389695,126.30559225011007 295.21796565389695,136.16908850726549 341.0832232496698,136.16908850726549 341.0832232496698,126.30559225011007" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="0.29250000000000076,5.405000000000002 0.29250000000000076,5.205000000000002 -0.6374999999999998,5.205000000000002 -0.6374999999999998,5.405000000000002" data-type="line" data-label="" points="432.8137384412153,126.30559225011007 432.8137384412153,136.16908850726549 386.94848084544253,136.16908850726549 386.94848084544253,126.30559225011007" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="1.222500000000001,5.405000000000002 1.222500000000001,5.205000000000002 0.2925000000000005,5.205000000000002 0.2925000000000005,5.405000000000002" data-type="line" data-label="" points="478.6789960369881,126.30559225011007 478.6789960369881,136.16908850726549 432.8137384412153,136.16908850726549 432.8137384412153,126.30559225011007" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="2.152500000000001,5.405000000000002 2.152500000000001,5.205000000000002 1.2225000000000006,5.205000000000002 1.2225000000000006,5.405000000000002" data-type="line" data-label="" points="524.5442536327608,126.30559225011007 524.5442536327608,136.16908850726549 478.6789960369881,136.16908850726549 478.6789960369881,126.30559225011007" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-3.7550000000000003,2.668333333333335 -3.7550000000000003,2.4683333333333346 -4.6850000000000005,2.4683333333333346 -4.6850000000000005,2.668333333333335" data-type="line" data-label="" points="233.2012329370322,261.2710993688536 233.2012329370322,271.13459562600906 187.3359753412594,271.13459562600906 187.3359753412594,261.2710993688536" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-6.415,2.6683333333333357 -6.415,2.4683333333333346 -4.6850000000000005,2.4683333333333346 -4.6850000000000005,2.668333333333335" data-type="line" data-label="" points="102.01673271686491,261.2710993688536 102.01673271686491,271.13459562600906 187.3359753412594,271.13459562600906 187.3359753412594,261.2710993688536" fill="none" stroke="purple" stroke-width="1px"/></g><g><polyline data-points="-2.025,0.9000000000000021 -2.025,0.7000000000000011 -2.49,0.7000000000000011 -2.49,-2.9000000000000004 -2.025,-2.9000000000000004 -2.025,-2.7" data-type="line" data-label="" points="318.5204755614267,348.4808454425362 318.5204755614267,358.3443416996917 295.5878467635403,358.3443416996917 295.5878467635403,535.8872743284896 318.5204755614267,535.8872743284896 318.5204755614267,526.0237780713342" fill="none" stroke="purple" stroke-width="1px"/></g><g><rect data-type="rect" data-label="schematic_component_0" data-x="0.79" data-y="0" x="363.6459709379128" y="185.73315719947152" width="187.40642888595323" height="414.2668428005285" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723"/></g><g><rect data-type="rect" data-label="schematic_component_1" data-x="-1.5675" data-y="5.955000000000002" x="328.01409070893874" y="72.05636283575518" width="26.138265081461952" height="54.249229414354886" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723"/></g><g><rect data-type="rect" data-label="schematic_component_2" data-x="-0.6374999999999998" data-y="5.955000000000002" x="373.8793483047116" y="72.05636283575518" width="26.138265081461896" height="54.249229414354886" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723"/></g><g><rect data-type="rect" data-label="schematic_component_3" data-x="-2.4975" data-y="5.955000000000002" x="282.148833113166" y="72.05636283575518" width="26.138265081461952" height="54.249229414354886" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723"/></g><g><rect data-type="rect" data-label="schematic_component_4" data-x="0.2925000000000004" data-y="5.955000000000002" x="419.7446059004844" y="72.05636283575518" width="26.138265081461896" height="54.249229414354886" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723"/></g><g><rect data-type="rect" data-label="schematic_component_5" data-x="1.2225000000000006" data-y="5.955000000000002" x="465.60986349625716" y="72.05636283575518" width="26.138265081461896" height="54.249229414354886" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723"/></g><g><rect data-type="rect" data-label="schematic_component_6" data-x="2.1525000000000007" data-y="5.955000000000002" x="511.4751210920299" y="72.05636283575518" width="26.138265081461896" height="54.249229414354886" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723"/></g><g><rect data-type="rect" data-label="schematic_component_7" data-x="-4.6850000000000005" data-y="3.218333333333335" x="174.26684280052848" y="207.0218699544987" width="26.138265081461867" height="54.249229414354886" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723"/></g><g><rect data-type="rect" data-label="schematic_component_8" data-x="-3.7550000000000003" data-y="3.218333333333335" x="220.1321003963012" y="207.0218699544987" width="26.138265081461924" height="54.249229414354886" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723"/></g><g><rect data-type="rect" data-label="schematic_component_9" data-x="-6.415" data-y="3.2183333333333355" x="88.94760017613396" y="207.0218699544987" width="26.138265081461896" height="54.249229414354886" fill="hsl(24, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723"/></g><g><rect data-type="rect" data-label="schematic_component_10" data-x="-2.025" data-y="1.450000000000001" x="305.45134302069573" y="294.2316160281814" width="26.138265081461896" height="54.24922941435483" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723"/></g><g><rect data-type="rect" data-label="schematic_component_11" data-x="-2.025" data-y="-2.1500000000000004" x="305.45134302069573" y="471.7745486569793" width="26.138265081461896" height="54.249229414354886" fill="hsl(320, 100%, 50%, 0.8)" stroke="black" stroke-width="0.020276785714285723"/></g><g><rect data-type="rect" data-label="netId: V3_3
2
+ globalConnNetId: connectivity_net0" data-x="-1.3099999999999998" data-y="1.4250000000000016" x="348.85072655217965" y="311.4927344782034" width="9.863496257155475" height="22.192866578599705" fill="#ef444466" stroke="#ef4444" stroke-width="0.020276785714285723"/></g><g><rect data-type="rect" data-label="netId: V3_3
3
+ globalConnNetId: connectivity_net0" data-x="0.29250000000000076" data-y="6.9300000000000015" x="427.8819903126376" y="40.00000000000006" width="9.863496257155475" height="22.192866578599705" fill="#ef444466" stroke="#ef4444" stroke-width="0.020276785714285723"/></g><g><rect data-type="rect" data-label="netId: V1_1
4
+ globalConnNetId: connectivity_net6" data-x="-1.3099999999999998" data-y="3.0250000000000017" x="348.85072655217965" y="232.58476442095986" width="9.863496257155475" height="22.192866578599762" fill="#ef444466" stroke="#ef4444" stroke-width="0.020276785714285723"/></g><g><rect data-type="rect" data-label="netId: V1_1
5
+ globalConnNetId: connectivity_net6" data-x="-3.7550000000000003" data-y="4.193333333333335" x="228.26948480845448" y="174.96550711874355" width="9.863496257155447" height="22.192866578599705" fill="#ef444466" stroke="#ef4444" stroke-width="0.020276785714285723"/></g><g><rect data-type="rect" data-label="netId: capacitor.C11 &gt; port.pin1 to U3.ADC_AVDD
6
+ globalConnNetId: connectivity_net9" data-x="-2.25" data-y="-1.4000000000000004" x="296.327608982827" y="456.97930427124606" width="22.192866578599705" height="9.863496257155475" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.020276785714285723"/></g><g><rect data-type="rect" data-label="netId: capacitor.C10 &gt; port.pin1 to U3.VREG_VIN
7
+ globalConnNetId: connectivity_net8" data-x="-2.25" data-y="2.200000000000001" x="296.327608982827" y="279.4363716424482" width="22.192866578599705" height="9.863496257155475" fill="hsl(40, 100%, 50%, 0.35)" stroke="black" stroke-width="0.020276785714285723"/></g><g><rect data-type="rect" data-label="netId: GND
8
+ globalConnNetId: connectivity_net10" data-x="0.29250000000000076" data-y="4.980000000000002" x="427.8819903126376" y="136.16908850726549" width="9.863496257155475" height="22.192866578599705" fill="#00000066" stroke="#000000" stroke-width="0.020276785714285723"/></g><g><rect data-type="rect" data-label="netId: GND
9
+ globalConnNetId: connectivity_net10" data-x="-3.7550000000000003" data-y="2.2433333333333345" x="228.26948480845448" y="271.13459562600906" width="9.863496257155447" height="22.192866578599705" fill="#00000066" stroke="#000000" stroke-width="0.020276785714285723"/></g><g><rect data-type="rect" data-label="netId: GND
10
+ globalConnNetId: connectivity_net10" data-x="-2.49" data-y="-3.1250000000000004" x="290.65609863496263" y="535.8872743284895" width="9.863496257155418" height="22.192866578599705" fill="#00000066" stroke="#000000" stroke-width="0.020276785714285723"/></g><g><circle data-type="point" data-label="U3.1
11
+ x-" data-x="-1.1099999999999999" data-y="1.2000000000000015" cx="363.6459709379128" cy="333.6856010568031" r="3" fill="hsl(81, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.2
12
+ x-" data-x="-1.1099999999999999" data-y="-1.8000000000000007" cx="363.6459709379128" cy="481.6380449141347" r="3" fill="hsl(82, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.3
13
+ x-" data-x="-1.1099999999999999" data-y="-2.000000000000001" cx="363.6459709379128" cy="491.5015411712901" r="3" fill="hsl(83, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.4
14
+ x-" data-x="-1.1099999999999999" data-y="-2.200000000000001" cx="363.6459709379128" cy="501.3650374284456" r="3" fill="hsl(84, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.5
15
+ x-" data-x="-1.1099999999999999" data-y="-2.4000000000000012" cx="363.6459709379128" cy="511.22853368560106" r="3" fill="hsl(85, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.6
16
+ x-" data-x="-1.1099999999999999" data-y="-2.6000000000000014" cx="363.6459709379128" cy="521.0920299427564" r="3" fill="hsl(86, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.7
17
+ x-" data-x="-1.1099999999999999" data-y="-2.8000000000000016" cx="363.6459709379128" cy="530.9555261999119" r="3" fill="hsl(87, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.8
18
+ x-" data-x="-1.1099999999999999" data-y="-3.0000000000000018" cx="363.6459709379128" cy="540.8190224570674" r="3" fill="hsl(88, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.9
19
+ x-" data-x="-1.1099999999999999" data-y="-3.200000000000002" cx="363.6459709379128" cy="550.6825187142229" r="3" fill="hsl(89, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.10
20
+ x-" data-x="-1.1099999999999999" data-y="1.0000000000000013" cx="363.6459709379128" cy="343.54909731395855" r="3" fill="hsl(39, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.11
21
+ x-" data-x="-1.1099999999999999" data-y="-3.400000000000002" cx="363.6459709379128" cy="560.5460149713782" r="3" fill="hsl(40, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.12
22
+ x-" data-x="-1.1099999999999999" data-y="-3.6000000000000023" cx="363.6459709379128" cy="570.4095112285337" r="3" fill="hsl(41, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.13
23
+ x-" data-x="-1.1099999999999999" data-y="-3.8000000000000025" cx="363.6459709379128" cy="580.2730074856892" r="3" fill="hsl(42, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.14
24
+ x-" data-x="-1.1099999999999999" data-y="-4.000000000000002" cx="363.6459709379128" cy="590.1365037428445" r="3" fill="hsl(43, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.15
25
+ x+" data-x="2.69" data-y="-0.5000000000000009" cx="551.052399823866" cy="417.5253192426244" r="3" fill="hsl(44, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.16
26
+ x+" data-x="2.69" data-y="-0.7000000000000011" cx="551.052399823866" cy="427.3888154997798" r="3" fill="hsl(45, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.17
27
+ x+" data-x="2.69" data-y="-0.9000000000000012" cx="551.052399823866" cy="437.2523117569353" r="3" fill="hsl(46, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.18
28
+ x+" data-x="2.69" data-y="-1.1000000000000014" cx="551.052399823866" cy="447.1158080140907" r="3" fill="hsl(47, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.19
29
+ x+" data-x="2.69" data-y="-1.3000000000000014" cx="551.052399823866" cy="456.9793042712462" r="3" fill="hsl(48, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.20
30
+ x+" data-x="2.69" data-y="-1.9000000000000015" cx="551.052399823866" cy="486.5697930427125" r="3" fill="hsl(70, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.21
31
+ x+" data-x="2.69" data-y="-2.1000000000000014" cx="551.052399823866" cy="496.43328929986785" r="3" fill="hsl(71, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.22
32
+ x-" data-x="-1.1099999999999999" data-y="0.8000000000000012" cx="363.6459709379128" cy="353.412593571114" r="3" fill="hsl(72, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.23
33
+ x-" data-x="-1.1099999999999999" data-y="2.8000000000000016" cx="363.6459709379128" cy="254.77763099955962" r="3" fill="hsl(73, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.24
34
+ x+" data-x="2.69" data-y="-2.7000000000000015" cx="551.052399823866" cy="526.0237780713342" r="3" fill="hsl(74, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.25
35
+ x+" data-x="2.69" data-y="-2.9000000000000012" cx="551.052399823866" cy="535.8872743284896" r="3" fill="hsl(75, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.26
36
+ x+" data-x="2.69" data-y="-3.1000000000000014" cx="551.052399823866" cy="545.7507705856451" r="3" fill="hsl(76, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.27
37
+ x+" data-x="2.69" data-y="0.0999999999999992" cx="551.052399823866" cy="387.9348304711581" r="3" fill="hsl(77, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.28
38
+ x+" data-x="2.69" data-y="0.2999999999999994" cx="551.052399823866" cy="378.07133421400266" r="3" fill="hsl(78, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.29
39
+ x+" data-x="2.69" data-y="0.49999999999999956" cx="551.052399823866" cy="368.2078379568472" r="3" fill="hsl(79, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.30
40
+ x+" data-x="2.69" data-y="0.6999999999999997" cx="551.052399823866" cy="358.34434169969177" r="3" fill="hsl(101, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.31
41
+ x+" data-x="2.69" data-y="0.8999999999999995" cx="551.052399823866" cy="348.48084544253635" r="3" fill="hsl(102, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.32
42
+ x+" data-x="2.69" data-y="1.0999999999999996" cx="551.052399823866" cy="338.6173491853809" r="3" fill="hsl(103, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.33
43
+ x-" data-x="-1.1099999999999999" data-y="0.600000000000001" cx="363.6459709379128" cy="363.2760898282694" r="3" fill="hsl(104, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.34
44
+ x+" data-x="2.69" data-y="1.2999999999999998" cx="551.052399823866" cy="328.75385292822546" r="3" fill="hsl(105, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.35
45
+ x+" data-x="2.69" data-y="1.5" cx="551.052399823866" cy="318.89035667107" r="3" fill="hsl(106, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.36
46
+ x+" data-x="2.69" data-y="1.7000000000000002" cx="551.052399823866" cy="309.02686041391456" r="3" fill="hsl(107, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.37
47
+ x+" data-x="2.69" data-y="1.9000000000000004" cx="551.052399823866" cy="299.16336415675914" r="3" fill="hsl(108, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.38
48
+ x+" data-x="2.69" data-y="2.500000000000001" cx="551.052399823866" cy="269.5728753852928" r="3" fill="hsl(109, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.39
49
+ x+" data-x="2.69" data-y="2.700000000000001" cx="551.052399823866" cy="259.70937912813736" r="3" fill="hsl(110, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.40
50
+ x+" data-x="2.69" data-y="2.9000000000000012" cx="551.052399823866" cy="249.8458828709819" r="3" fill="hsl(132, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.41
51
+ x+" data-x="2.69" data-y="3.1000000000000014" cx="551.052399823866" cy="239.98238661382646" r="3" fill="hsl(133, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.42
52
+ x-" data-x="-1.1099999999999999" data-y="0.4000000000000008" cx="363.6459709379128" cy="373.13958608542487" r="3" fill="hsl(134, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.43
53
+ x-" data-x="-1.1099999999999999" data-y="-1.6000000000000005" cx="363.6459709379128" cy="471.7745486569793" r="3" fill="hsl(135, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.44
54
+ x-" data-x="-1.1099999999999999" data-y="2.0000000000000018" cx="363.6459709379128" cy="294.23161602818135" r="3" fill="hsl(136, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.45
55
+ x-" data-x="-1.1099999999999999" data-y="1.8000000000000016" cx="363.6459709379128" cy="304.09511228533677" r="3" fill="hsl(137, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.46
56
+ x-" data-x="-1.1099999999999999" data-y="-1.4000000000000004" cx="363.6459709379128" cy="461.9110523998238" r="3" fill="hsl(138, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.47
57
+ x-" data-x="-1.1099999999999999" data-y="-1.2000000000000002" cx="363.6459709379128" cy="452.0475561426684" r="3" fill="hsl(139, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.48
58
+ x-" data-x="-1.1099999999999999" data-y="-1" cx="363.6459709379128" cy="442.1840598855129" r="3" fill="hsl(140, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.49
59
+ x-" data-x="-1.1099999999999999" data-y="0.20000000000000062" cx="363.6459709379128" cy="383.0030823425803" r="3" fill="hsl(141, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.50
60
+ x-" data-x="-1.1099999999999999" data-y="2.600000000000002" cx="363.6459709379128" cy="264.64112725671504" r="3" fill="hsl(163, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.51
61
+ x-" data-x="-1.1099999999999999" data-y="3.0000000000000018" cx="363.6459709379128" cy="244.91413474240417" r="3" fill="hsl(164, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.52
62
+ x-" data-x="-1.1099999999999999" data-y="3.200000000000002" cx="363.6459709379128" cy="235.05063848524873" r="3" fill="hsl(165, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.53
63
+ x-" data-x="-1.1099999999999999" data-y="3.4000000000000017" cx="363.6459709379128" cy="225.1871422280933" r="3" fill="hsl(166, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.54
64
+ x-" data-x="-1.1099999999999999" data-y="3.600000000000002" cx="363.6459709379128" cy="215.32364597093786" r="3" fill="hsl(167, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.55
65
+ x-" data-x="-1.1099999999999999" data-y="3.8000000000000016" cx="363.6459709379128" cy="205.46014971378244" r="3" fill="hsl(168, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.56
66
+ x-" data-x="-1.1099999999999999" data-y="4.000000000000002" cx="363.6459709379128" cy="195.596653456627" r="3" fill="hsl(169, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="U3.57
67
+ x-" data-x="-1.1099999999999999" data-y="-0.39999999999999947" cx="363.6459709379128" cy="412.5935711140466" r="3" fill="hsl(170, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C12.1
68
+ y+" data-x="-1.5675" data-y="6.505000000000002" cx="341.08322324966974" cy="72.05636283575518" r="3" fill="hsl(351, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C12.2
69
+ y-" data-x="-1.5675" data-y="5.405000000000002" cx="341.08322324966974" cy="126.30559225011007" r="3" fill="hsl(352, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C14.1
70
+ y+" data-x="-0.6374999999999998" data-y="6.505000000000002" cx="386.94848084544253" cy="72.05636283575518" r="3" fill="hsl(113, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C14.2
71
+ y-" data-x="-0.6374999999999998" data-y="5.405000000000002" cx="386.94848084544253" cy="126.30559225011007" r="3" fill="hsl(114, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C8.1
72
+ y+" data-x="-2.4975" data-y="6.505000000000002" cx="295.21796565389695" cy="72.05636283575518" r="3" fill="hsl(8, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C8.2
73
+ y-" data-x="-2.4975" data-y="5.405000000000002" cx="295.21796565389695" cy="126.30559225011007" r="3" fill="hsl(9, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C13.1
74
+ y+" data-x="0.29250000000000037" data-y="6.505000000000002" cx="432.8137384412153" cy="72.05636283575518" r="3" fill="hsl(232, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C13.2
75
+ y-" data-x="0.2925000000000005" data-y="5.405000000000002" cx="432.8137384412153" cy="126.30559225011007" r="3" fill="hsl(233, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C15.1
76
+ y+" data-x="1.2225000000000006" data-y="6.505000000000002" cx="478.6789960369881" cy="72.05636283575518" r="3" fill="hsl(354, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C15.2
77
+ y-" data-x="1.2225000000000006" data-y="5.405000000000002" cx="478.6789960369881" cy="126.30559225011007" r="3" fill="hsl(355, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C19.1
78
+ y+" data-x="2.1525000000000007" data-y="6.505000000000002" cx="524.5442536327608" cy="72.05636283575518" r="3" fill="hsl(238, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C19.2
79
+ y-" data-x="2.1525000000000007" data-y="5.405000000000002" cx="524.5442536327608" cy="126.30559225011007" r="3" fill="hsl(239, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C18.1
80
+ y+" data-x="-4.6850000000000005" data-y="3.7683333333333353" cx="187.3359753412594" cy="207.0218699544987" r="3" fill="hsl(357, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C18.2
81
+ y-" data-x="-4.6850000000000005" data-y="2.668333333333335" cx="187.3359753412594" cy="261.2710993688536" r="3" fill="hsl(358, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C7.1
82
+ y+" data-x="-3.7550000000000003" data-y="3.7683333333333353" cx="233.2012329370322" cy="207.0218699544987" r="3" fill="hsl(127, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C7.2
83
+ y-" data-x="-3.7550000000000003" data-y="2.668333333333335" cx="233.2012329370322" cy="261.2710993688536" r="3" fill="hsl(128, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C9.1
84
+ y+" data-x="-6.415" data-y="3.7683333333333353" cx="102.01673271686491" cy="207.0218699544987" r="3" fill="hsl(249, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C9.2
85
+ y-" data-x="-6.415" data-y="2.6683333333333357" cx="102.01673271686491" cy="261.2710993688536" r="3" fill="hsl(250, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C10.1
86
+ y+" data-x="-2.025" data-y="2.000000000000001" cx="318.5204755614267" cy="294.2316160281814" r="3" fill="hsl(229, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C10.2
87
+ y-" data-x="-2.025" data-y="0.900000000000001" cx="318.5204755614267" cy="348.48084544253624" r="3" fill="hsl(230, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C11.1
88
+ y+" data-x="-2.025" data-y="-1.6000000000000003" cx="318.5204755614267" cy="471.7745486569793" r="3" fill="hsl(110, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="C11.2
89
+ y-" data-x="-2.025" data-y="-2.7" cx="318.5204755614267" cy="526.0237780713342" r="3" fill="hsl(111, 100%, 50%, 0.8)"/></g><g><circle data-type="point" data-label="anchorPoint
90
+ orientation: y+" data-x="-1.3099999999999998" data-y="1.2000000000000015" cx="353.7824746807574" cy="333.6856010568031" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
91
+ orientation: y+" data-x="0.29250000000000076" data-y="6.705000000000002" cx="432.8137384412153" cy="62.19286657859976" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
92
+ orientation: y+" data-x="-1.3099999999999998" data-y="2.8000000000000016" cx="353.7824746807574" cy="254.77763099955962" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
93
+ orientation: y+" data-x="-3.7550000000000003" data-y="3.9683333333333355" cx="233.2012329370322" cy="197.15837369734325" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
94
+ orientation: x-" data-x="-2.025" data-y="-1.4000000000000004" cx="318.5204755614267" cy="461.9110523998238" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
95
+ orientation: x-" data-x="-2.025" data-y="2.200000000000001" cx="318.5204755614267" cy="284.36811977102593" r="3" fill="hsl(40, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
96
+ orientation: y-" data-x="0.29250000000000076" data-y="5.205000000000002" cx="432.8137384412153" cy="136.16908850726549" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
97
+ orientation: y-" data-x="-3.7550000000000003" data-y="2.4683333333333346" cx="233.2012329370322" cy="271.13459562600906" r="3" fill="hsl(80, 100%, 50%, 0.9)"/></g><g><circle data-type="point" data-label="anchorPoint
98
+ orientation: y-" data-x="-2.49" data-y="-2.9000000000000004" cx="295.5878467635403" cy="535.8872743284896" 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[
99
+ document.currentScript.parentElement.addEventListener('mousemove', (e) => {
100
+ const svg = e.currentTarget;
101
+ const rect = svg.getBoundingClientRect();
102
+ const x = e.clientX - rect.left;
103
+ const y = e.clientY - rect.top;
104
+ const crosshair = svg.getElementById('crosshair');
105
+ const h = svg.getElementById('crosshair-h');
106
+ const v = svg.getElementById('crosshair-v');
107
+ const coords = svg.getElementById('coordinates');
108
+
109
+ crosshair.style.display = 'block';
110
+ h.setAttribute('x1', '0');
111
+ h.setAttribute('x2', '640');
112
+ h.setAttribute('y1', y);
113
+ h.setAttribute('y2', y);
114
+ v.setAttribute('x1', x);
115
+ v.setAttribute('x2', x);
116
+ v.setAttribute('y1', '0');
117
+ v.setAttribute('y2', '640');
943
118
 
944
- crosshair.style.display = 'block';
945
- h.setAttribute('x1', '0');
946
- h.setAttribute('x2', '640');
947
- h.setAttribute('y1', y);
948
- h.setAttribute('y2', y);
949
- v.setAttribute('x1', x);
950
- v.setAttribute('x2', x);
951
- v.setAttribute('y1', '0');
952
- v.setAttribute('y2', '640');
953
-
954
- // Calculate real coordinates using inverse transformation
955
- const matrix = {
956
- "a": 49.31748128577717,
957
- "c": 0,
958
- "e": 418.38837516512547,
959
- "b": 0,
960
- "d": -49.31748128577717,
961
- "f": 392.86657859973576
962
- };
963
- // Manually invert and apply the affine transform
964
- // Since we only use translate and scale, we can directly compute:
965
- // x' = (x - tx) / sx
966
- // y' = (y - ty) / sy
967
- const sx = matrix.a;
968
- const sy = matrix.d;
969
- const tx = matrix.e;
970
- const ty = matrix.f;
971
- const realPoint = {
972
- x: (x - tx) / sx,
973
- y: (y - ty) / sy // Flip y back since we used negative scale
974
- }
975
-
976
- coords.textContent = `(${realPoint.x.toFixed(2)}, ${realPoint.y.toFixed(2)})`;
977
- coords.setAttribute('x', (x + 5).toString());
978
- coords.setAttribute('y', (y - 5).toString());
979
- });
980
- document.currentScript.parentElement.addEventListener('mouseleave', () => {
981
- document.currentScript.parentElement.getElementById('crosshair').style.display = 'none';
982
- });
983
- ]]>
984
- </script>
985
- </svg>
119
+ // Calculate real coordinates using inverse transformation
120
+ const matrix = {"a":49.31748128577717,"c":0,"e":418.38837516512547,"b":0,"d":-49.31748128577717,"f":392.86657859973576};
121
+ // Manually invert and apply the affine transform
122
+ // Since we only use translate and scale, we can directly compute:
123
+ // x' = (x - tx) / sx
124
+ // y' = (y - ty) / sy
125
+ const sx = matrix.a;
126
+ const sy = matrix.d;
127
+ const tx = matrix.e;
128
+ const ty = matrix.f;
129
+ const realPoint = {
130
+ x: (x - tx) / sx,
131
+ y: (y - ty) / sy // Flip y back since we used negative scale
132
+ }
133
+
134
+ coords.textContent = `(${realPoint.x.toFixed(2)}, ${realPoint.y.toFixed(2)})`;
135
+ coords.setAttribute('x', (x + 5).toString());
136
+ coords.setAttribute('y', (y - 5).toString());
137
+ });
138
+ document.currentScript.parentElement.addEventListener('mouseleave', () => {
139
+ document.currentScript.parentElement.getElementById('crosshair').style.display = 'none';
140
+ });
141
+ ]]></script></svg>