@tscircuit/copper-pour-solver 0.0.14 → 0.0.16

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.
package/dist/index.d.ts CHANGED
@@ -50,6 +50,7 @@ declare class CopperPourPipelineSolver extends BasePipelineSolver<InputProblem>
50
50
  input: InputProblem;
51
51
  pipelineDef: never[];
52
52
  constructor(input: InputProblem);
53
+ getSolverName(): string;
53
54
  getOutput(): PipelineOutput;
54
55
  }
55
56
 
package/dist/index.js CHANGED
@@ -295,6 +295,9 @@ var CopperPourPipelineSolver = class extends BasePipelineSolver {
295
295
  this.input = input;
296
296
  }
297
297
  pipelineDef = [];
298
+ getSolverName() {
299
+ return "CopperPourPipelineSolver";
300
+ }
298
301
  getOutput() {
299
302
  const brep_shapes = [];
300
303
  for (const region of this.input.regionsForPour) {
@@ -339,75 +342,20 @@ var CopperPourPipelineSolver = class extends BasePipelineSolver {
339
342
  };
340
343
 
341
344
  // lib/circuit-json/convert-circuit-json-to-input-problem.ts
345
+ import { getFullConnectivityMapFromCircuitJson } from "circuit-json-to-connectivity-map";
342
346
  var convertCircuitJsonToInputProblem = (circuitJson, options) => {
343
- const source_ports = circuitJson.filter(
344
- (e) => e.type === "source_port"
345
- );
346
- const pcb_ports = circuitJson.filter(
347
- (e) => e.type === "pcb_port"
348
- );
349
- const source_traces = circuitJson.filter(
350
- (e) => e.type === "source_trace"
351
- );
352
- const pcb_traces = circuitJson.filter(
353
- (e) => e.type === "pcb_trace"
354
- );
355
- const source_nets = circuitJson.filter(
356
- (e) => e.type === "source_net"
357
- );
358
347
  const pcb_board = circuitJson.find((e) => e.type === "pcb_board");
359
348
  if (!pcb_board) throw new Error("No pcb_board found in circuit json");
360
- const sourcePortIdToConnectivityKey = Object.fromEntries(
361
- source_ports.map((sp) => [
362
- sp.source_port_id,
363
- sp.subcircuit_connectivity_map_key
364
- ])
365
- );
366
- const pcbPortIdToConnectivityKey = Object.fromEntries(
367
- pcb_ports.map((pp) => [
368
- pp.pcb_port_id,
369
- sourcePortIdToConnectivityKey[pp.source_port_id]
370
- ])
371
- );
372
- const pcbPlatedHoleIdToConnectivityKey = {};
373
- for (const pcb_port of pcb_ports) {
374
- if (pcb_port.pcb_port_id) {
375
- pcbPlatedHoleIdToConnectivityKey[pcb_port.pcb_port_id] = pcbPortIdToConnectivityKey[pcb_port.pcb_port_id];
376
- }
377
- }
378
- const sourceTraceIdToConnectivityKey = Object.fromEntries(
379
- source_traces.map((st) => [
380
- st.source_trace_id,
381
- st.subcircuit_connectivity_map_key
382
- ])
383
- );
384
- const sourceNetIdToConnectivityKey = Object.fromEntries(
385
- source_nets.map((sn) => [
386
- sn.source_net_id,
387
- sn.subcircuit_connectivity_map_key
388
- ])
389
- );
390
- const idToConnectivityKey = {
391
- ...sourceTraceIdToConnectivityKey,
392
- ...sourceNetIdToConnectivityKey
393
- };
394
- const pcbTraceIdToConnectivityKey = Object.fromEntries(
395
- pcb_traces.map(
396
- (trace) => [
397
- trace.pcb_trace_id,
398
- trace.source_trace_id ? idToConnectivityKey[trace.source_trace_id] : void 0
399
- ]
400
- ).filter((entry) => Boolean(entry[1]))
401
- );
349
+ const connectivityMap = getFullConnectivityMapFromCircuitJson(circuitJson);
402
350
  const pads = [];
403
351
  for (const elm of circuitJson) {
404
352
  if (elm.type === "pcb_smtpad") {
405
353
  const smtpad = elm;
406
354
  if (smtpad.layer !== options.layer) continue;
407
355
  let connectivityKey;
408
- if (smtpad.pcb_port_id) {
409
- connectivityKey = pcbPortIdToConnectivityKey[smtpad.pcb_port_id];
410
- }
356
+ connectivityKey = connectivityMap.getNetConnectedToId(
357
+ smtpad.pcb_smtpad_id
358
+ );
411
359
  if (!connectivityKey) {
412
360
  connectivityKey = `unconnected:${smtpad.pcb_smtpad_id}`;
413
361
  }
@@ -439,7 +387,9 @@ var convertCircuitJsonToInputProblem = (circuitJson, options) => {
439
387
  const platedHole = elm;
440
388
  if (platedHole.shape !== "circle") continue;
441
389
  if (!platedHole.layers.includes(options.layer)) continue;
442
- let connectivityKey = pcbPlatedHoleIdToConnectivityKey[platedHole.pcb_plated_hole_id];
390
+ let connectivityKey = connectivityMap.getNetConnectedToId(
391
+ platedHole.pcb_plated_hole_id
392
+ );
443
393
  if (!connectivityKey) {
444
394
  connectivityKey = `unconnected-plated-hole:${platedHole.pcb_plated_hole_id}`;
445
395
  }
@@ -505,7 +455,7 @@ var convertCircuitJsonToInputProblem = (circuitJson, options) => {
505
455
  } else if (elm.type === "pcb_via") {
506
456
  const via = elm;
507
457
  if (!via.layers.includes(options.layer)) continue;
508
- const connectivityKey = via.subcircuit_connectivity_map_key ?? pcbTraceIdToConnectivityKey[via.pcb_trace_id ?? ""] ?? `unconnected-via:${via.pcb_via_id}`;
458
+ const connectivityKey = connectivityMap.getNetConnectedToId(via.pcb_via_id) ?? `unconnected-via:${via.pcb_via_id}`;
509
459
  pads.push({
510
460
  shape: "circle",
511
461
  padId: via.pcb_via_id,
@@ -517,8 +467,9 @@ var convertCircuitJsonToInputProblem = (circuitJson, options) => {
517
467
  });
518
468
  } else if (elm.type === "pcb_trace") {
519
469
  const trace = elm;
520
- if (!trace.source_trace_id) continue;
521
- const connectivityKey = idToConnectivityKey[trace.source_trace_id];
470
+ const connectivityKey = connectivityMap.getNetConnectedToId(
471
+ trace.pcb_trace_id
472
+ );
522
473
  if (!connectivityKey) continue;
523
474
  let currentSegmentGroup = [];
524
475
  let currentWidth = null;
@@ -13,6 +13,7 @@ import type {
13
13
  SourcePort,
14
14
  SourceTrace,
15
15
  } from "circuit-json"
16
+ import { getFullConnectivityMapFromCircuitJson } from "circuit-json-to-connectivity-map"
16
17
  import type {
17
18
  InputCircularPad,
18
19
  InputPad,
@@ -33,81 +34,13 @@ export const convertCircuitJsonToInputProblem = (
33
34
  cutout_margin?: number
34
35
  },
35
36
  ): InputProblem => {
36
- const source_ports = circuitJson.filter(
37
- (e) => e.type === "source_port",
38
- ) as SourcePort[]
39
- const pcb_ports = circuitJson.filter(
40
- (e) => e.type === "pcb_port",
41
- ) as PcbPort[]
42
- const source_traces = circuitJson.filter(
43
- (e) => e.type === "source_trace",
44
- ) as SourceTrace[]
45
- const pcb_traces = circuitJson.filter(
46
- (e) => e.type === "pcb_trace",
47
- ) as PcbTrace[]
48
- const source_nets = circuitJson.filter(
49
- (e) => e.type === "source_net",
50
- ) as SourceNet[]
51
37
  const pcb_board = circuitJson.find((e) => e.type === "pcb_board") as
52
38
  | PcbBoard
53
39
  | undefined
54
40
 
55
41
  if (!pcb_board) throw new Error("No pcb_board found in circuit json")
56
42
 
57
- const sourcePortIdToConnectivityKey = Object.fromEntries(
58
- source_ports.map((sp) => [
59
- sp.source_port_id,
60
- sp.subcircuit_connectivity_map_key,
61
- ]),
62
- )
63
- const pcbPortIdToConnectivityKey: Record<string, string | undefined> =
64
- Object.fromEntries(
65
- pcb_ports.map((pp) => [
66
- pp.pcb_port_id,
67
- sourcePortIdToConnectivityKey[pp.source_port_id],
68
- ]),
69
- )
70
- const pcbPlatedHoleIdToConnectivityKey: Record<string, string | undefined> =
71
- {}
72
- for (const pcb_port of pcb_ports) {
73
- if (pcb_port.pcb_port_id) {
74
- pcbPlatedHoleIdToConnectivityKey[pcb_port.pcb_port_id] =
75
- pcbPortIdToConnectivityKey[pcb_port.pcb_port_id]
76
- }
77
- }
78
-
79
- const sourceTraceIdToConnectivityKey = Object.fromEntries(
80
- source_traces.map((st) => [
81
- st.source_trace_id,
82
- st.subcircuit_connectivity_map_key,
83
- ]),
84
- )
85
- const sourceNetIdToConnectivityKey = Object.fromEntries(
86
- source_nets.map((sn) => [
87
- sn.source_net_id,
88
- sn.subcircuit_connectivity_map_key,
89
- ]),
90
- )
91
-
92
- const idToConnectivityKey = {
93
- ...sourceTraceIdToConnectivityKey,
94
- ...sourceNetIdToConnectivityKey,
95
- }
96
-
97
- const pcbTraceIdToConnectivityKey: Record<string, string> =
98
- Object.fromEntries(
99
- pcb_traces
100
- .map(
101
- (trace) =>
102
- [
103
- trace.pcb_trace_id,
104
- trace.source_trace_id
105
- ? idToConnectivityKey[trace.source_trace_id]
106
- : undefined,
107
- ] as const,
108
- )
109
- .filter((entry): entry is [string, string] => Boolean(entry[1])),
110
- )
43
+ const connectivityMap = getFullConnectivityMapFromCircuitJson(circuitJson)
111
44
 
112
45
  const pads: InputPad[] = []
113
46
 
@@ -117,9 +50,9 @@ export const convertCircuitJsonToInputProblem = (
117
50
  if (smtpad.layer !== options.layer) continue
118
51
 
119
52
  let connectivityKey: string | undefined
120
- if (smtpad.pcb_port_id) {
121
- connectivityKey = pcbPortIdToConnectivityKey[smtpad.pcb_port_id]
122
- }
53
+ connectivityKey = connectivityMap.getNetConnectedToId(
54
+ smtpad.pcb_smtpad_id,
55
+ )
123
56
  if (!connectivityKey) {
124
57
  connectivityKey = `unconnected:${smtpad.pcb_smtpad_id}`
125
58
  }
@@ -153,9 +86,9 @@ export const convertCircuitJsonToInputProblem = (
153
86
  if (platedHole.shape !== "circle") continue
154
87
  if (!platedHole.layers.includes(options.layer)) continue
155
88
 
156
- // TODO better connectivity check
157
- let connectivityKey =
158
- pcbPlatedHoleIdToConnectivityKey[platedHole.pcb_plated_hole_id]
89
+ let connectivityKey = connectivityMap.getNetConnectedToId(
90
+ platedHole.pcb_plated_hole_id,
91
+ )
159
92
  if (!connectivityKey) {
160
93
  connectivityKey = `unconnected-plated-hole:${platedHole.pcb_plated_hole_id}`
161
94
  }
@@ -221,8 +154,7 @@ export const convertCircuitJsonToInputProblem = (
221
154
  if (!via.layers.includes(options.layer)) continue
222
155
 
223
156
  const connectivityKey: string =
224
- via.subcircuit_connectivity_map_key ??
225
- pcbTraceIdToConnectivityKey[via.pcb_trace_id ?? ""] ??
157
+ connectivityMap.getNetConnectedToId(via.pcb_via_id) ??
226
158
  `unconnected-via:${via.pcb_via_id}`
227
159
 
228
160
  pads.push({
@@ -236,8 +168,9 @@ export const convertCircuitJsonToInputProblem = (
236
168
  } as InputCircularPad)
237
169
  } else if (elm.type === "pcb_trace") {
238
170
  const trace = elm as PcbTrace
239
- if (!trace.source_trace_id) continue
240
- const connectivityKey = idToConnectivityKey[trace.source_trace_id]
171
+ const connectivityKey = connectivityMap.getNetConnectedToId(
172
+ trace.pcb_trace_id,
173
+ )
241
174
  if (!connectivityKey) continue
242
175
 
243
176
  let currentSegmentGroup: Point[] = []
@@ -12,6 +12,10 @@ export class CopperPourPipelineSolver extends BasePipelineSolver<InputProblem> {
12
12
  super(input)
13
13
  }
14
14
 
15
+ override getSolverName(): string {
16
+ return "CopperPourPipelineSolver"
17
+ }
18
+
15
19
  override getOutput(): PipelineOutput {
16
20
  const brep_shapes: BRepShape[] = []
17
21
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tscircuit/copper-pour-solver",
3
3
  "main": "dist/index.js",
4
- "version": "0.0.14",
4
+ "version": "0.0.16",
5
5
  "scripts": {
6
6
  "format": "biome format . --write",
7
7
  "format:check": "biome format .",
@@ -12,14 +12,15 @@
12
12
  "@biomejs/biome": "^2.2.4",
13
13
  "@flatten-js/core": "^1.6.2",
14
14
  "@tscircuit/math-utils": "^0.0.25",
15
- "@tscircuit/solver-utils": "^0.0.3",
15
+ "@tscircuit/solver-utils": "^0.0.14",
16
+ "circuit-json-to-connectivity-map": "^0.0.23",
16
17
  "@types/bun": "latest",
17
18
  "bun-match-svg": "^0.0.13",
18
19
  "circuit-json": "^0.0.306",
19
20
  "circuit-to-svg": "^0.0.262",
20
21
  "react-cosmos": "^7.0.0",
21
22
  "react-cosmos-plugin-vite": "^7.0.0",
22
- "tscircuit": "^0.0.863",
23
+ "tscircuit": "^0.0.1209",
23
24
  "tsup": "^8.5.0",
24
25
  "vite": "^7.1.5"
25
26
  },
@@ -1 +1 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="800" height="600" data-software-used-string="@tscircuit/core@0.0.855"><style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="10.389610389610368" y="14.285714285714278" width="779.2207792207791" height="571.4285714285716" data-type="pcb_boundary" data-pcb-layer="global"/><path class="pcb-board" d="M 31.16883116883116 585.7142857142858 L 768.8311688311688 585.7142857142858 L 769.8507568691412 585.6892562328347 L 770.8678886302246 585.614228086695 L 771.8801137549166 585.4893820252422 L 772.8849937042312 585.3150188135736 L 773.8801076343535 585.0915585079385 L 774.8630582286642 584.8195394437862 L 775.831477473085 584.499616938868 L 776.7830323608331 584.1325617145203 L 777.715430512837 583.7192580389287 L 778.6264257002805 583.260701596849 L 779.513823255963 582.7579970909147 L 780.3754853614462 582.2123555803126 L 781.2093361972454 581.6250915632342 L 782.0133669436602 580.9976198101348 L 782.7856406201978 580.3314519554277 L 783.5242967519282 579.6281928558244 L 784.2275558515316 578.8895367240939 L 784.8937237062387 578.1172630475562 L 785.5211954593381 577.3132323011414 L 786.1084594764166 576.4793814653424 L 786.6541009870186 575.6177193598592 L 787.1568054929528 574.7303218041766 L 787.6153619350326 573.8193266167332 L 788.0286656106241 572.8869284647292 L 788.3957208349718 571.9353735769812 L 788.71564333989 570.9669543325602 L 788.9876624040426 569.9840037382496 L 789.2111227096775 568.9888898081274 L 789.3854859213461 567.9840098588127 L 789.5103319827989 566.9717847341208 L 789.5853601289386 565.9546529730372 L 789.6103896103896 564.9350649350649 L 789.6103896103896 35.06493506493507 L 789.5853601289386 34.04534702696276 L 789.5103319827989 33.02821526587928 L 789.3854859213461 32.015990141187274 L 789.2111227096775 31.01111019187266 L 788.9876624040426 30.015996261750388 L 788.71564333989 29.03304566743975 L 788.3957208349718 28.064626423018808 L 788.0286656106241 27.113071535270876 L 787.6153619350326 26.18067338326688 L 787.1568054929528 25.269678195823417 L 786.6541009870186 24.382280640140834 L 786.1084594764166 23.520618534657615 L 785.5211954593381 22.686767698858546 L 784.8937237062387 21.882736952443736 L 784.2275558515316 21.110463275906113 L 783.5242967519282 20.371807144175648 L 782.7856406201978 19.668548044572276 L 782.0133669436602 19.00238018986522 L 781.2093361972454 18.37490843676585 L 780.3754853614462 17.787644419687354 L 779.513823255963 17.242002909085272 L 778.6264257002805 16.739298403151054 L 777.715430512837 16.280741961071328 L 776.7830323608331 15.86743828547975 L 775.831477473085 15.500383061132027 L 774.8630582286642 15.180460556213859 L 773.8801076343535 14.908441492061456 L 772.8849937042312 14.684981186426398 L 771.8801137549166 14.510617974757793 L 770.8678886302246 14.385771913305007 L 769.8507568691412 14.310743767165263 L 768.8311688311688 14.285714285714278 L 31.16883116883116 14.285714285714278 L 30.14924313085885 14.310743767165263 L 29.132111369775373 14.385771913305007 L 28.11988624508342 14.510617974757793 L 27.11500629576875 14.684981186426398 L 26.11989236564648 14.908441492061456 L 25.13694177133584 15.180460556213859 L 24.168522526914956 15.500383061132027 L 23.21696763916691 15.86743828547975 L 22.28456948716297 16.280741961071328 L 21.373574299719508 16.739298403151054 L 20.48617674403698 17.242002909085272 L 19.624514638553762 17.787644419687354 L 18.790663802754636 18.37490843676585 L 17.986633056339826 19.00238018986522 L 17.214359379802204 19.668548044572276 L 16.475703248071795 20.371807144175648 L 15.772444148468423 21.110463275906113 L 15.106276293761312 21.882736952443736 L 14.47880454066194 22.686767698858546 L 13.891540523583501 23.520618534657615 L 13.345899012981363 24.382280640140834 L 12.843194507047144 25.269678195823417 L 12.384638064967362 26.18067338326688 L 11.971334389375897 27.113071535270876 L 11.604279165028174 28.064626423018808 L 11.28435666010995 29.03304566743975 L 11.01233759595749 30.01599626175033 L 10.788877290322432 31.01111019187266 L 10.614514078653883 32.015990141187274 L 10.489668017201097 33.02821526587928 L 10.414639871061354 34.04534702696276 L 10.389610389610368 35.06493506493507 L 10.389610389610368 564.9350649350649 L 10.414639871061354 565.9546529730372 L 10.489668017201097 566.9717847341208 L 10.614514078653883 567.9840098588127 L 10.788877290322432 568.9888898081274 L 11.01233759595749 569.9840037382496 L 11.28435666010995 570.9669543325602 L 11.604279165028174 571.9353735769812 L 11.971334389375897 572.8869284647292 L 12.384638064967362 573.8193266167332 L 12.843194507047144 574.7303218041766 L 13.345899012981363 575.6177193598592 L 13.891540523583501 576.4793814653424 L 14.47880454066194 577.3132323011414 L 15.106276293761312 578.1172630475562 L 15.772444148468423 578.8895367240939 L 16.475703248071795 579.6281928558244 L 17.214359379802204 580.3314519554277 L 17.986633056339826 580.9976198101348 L 18.790663802754636 581.6250915632342 L 19.624514638553762 582.2123555803126 L 20.48617674403698 582.7579970909147 L 21.373574299719508 583.260701596849 L 22.28456948716297 583.7192580389287 L 23.21696763916691 584.1325617145203 L 24.168522526914956 584.499616938868 L 25.13694177133584 584.8195394437862 L 26.11989236564648 585.0915585079385 L 27.11500629576875 585.3150188135736 L 28.11988624508342 585.4893820252422 L 29.132111369775373 585.614228086695 L 30.14924313085885 585.6892562328347 L 31.16883116883116 585.7142857142858 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="1.038961038961039" data-type="pcb_board" data-pcb-layer="board"/><path class="pcb-copper-pour pcb-copper-pour-brep" d="M 31.16883116883116 585.7142857142858 L 30.14924313085885 585.6892562328347 L 29.132111369775373 585.614228086695 L 28.11988624508342 585.4893820252422 L 27.11500629576875 585.3150188135736 L 26.11989236564648 585.0915585079385 L 25.13694177133584 584.8195394437862 L 24.168522526914956 584.499616938868 L 23.21696763916691 584.1325617145203 L 22.28456948716297 583.7192580389287 L 21.373574299719508 583.260701596849 L 20.48617674403698 582.7579970909147 L 19.624514638553762 582.2123555803126 L 18.790663802754636 581.6250915632342 L 17.986633056339826 580.9976198101348 L 17.214359379802204 580.3314519554277 L 16.475703248071795 579.6281928558244 L 15.772444148468423 578.8895367240939 L 15.106276293761312 578.1172630475562 L 14.47880454066194 577.3132323011414 L 13.891540523583501 576.4793814653424 L 13.345899012981363 575.6177193598592 L 12.843194507047144 574.7303218041766 L 12.384638064967362 573.8193266167332 L 11.971334389375897 572.8869284647292 L 11.604279165028174 571.9353735769812 L 11.28435666010995 570.9669543325602 L 11.01233759595749 569.9840037382496 L 10.788877290322432 568.9888898081274 L 10.614514078653883 567.9840098588127 L 10.489668017201097 566.9717847341208 L 10.414639871061354 565.9546529730372 L 10.389610389610368 564.9350649350649 L 10.389610389610368 35.06493506493507 L 10.414639871061354 34.04534702696276 L 10.489668017201097 33.02821526587928 L 10.614514078653883 32.015990141187274 L 10.788877290322432 31.01111019187266 L 11.01233759595749 30.01599626175033 L 11.28435666010995 29.03304566743975 L 11.604279165028174 28.064626423018808 L 11.971334389375897 27.113071535270876 L 12.384638064967362 26.18067338326688 L 12.843194507047144 25.269678195823417 L 13.345899012981363 24.382280640140834 L 13.891540523583501 23.520618534657615 L 14.47880454066194 22.686767698858546 L 15.106276293761312 21.882736952443736 L 15.772444148468423 21.110463275906113 L 16.475703248071795 20.371807144175648 L 17.214359379802204 19.668548044572276 L 17.986633056339826 19.00238018986522 L 18.790663802754636 18.37490843676585 L 19.624514638553762 17.787644419687354 L 20.48617674403698 17.242002909085272 L 21.373574299719508 16.739298403151054 L 22.28456948716297 16.280741961071328 L 23.21696763916691 15.86743828547975 L 24.168522526914956 15.500383061132027 L 25.13694177133584 15.180460556213859 L 26.11989236564648 14.908441492061456 L 27.11500629576875 14.684981186426398 L 28.11988624508342 14.510617974757793 L 29.132111369775373 14.385771913305007 L 30.14924313085885 14.310743767165263 L 31.16883116883116 14.285714285714278 L 768.8311688311688 14.285714285714278 L 769.8507568691412 14.310743767165263 L 770.8678886302246 14.385771913305007 L 771.8801137549166 14.510617974757793 L 772.8849937042312 14.684981186426398 L 773.8801076343535 14.908441492061456 L 774.8630582286642 15.180460556213859 L 775.831477473085 15.500383061132027 L 776.7830323608331 15.86743828547975 L 777.715430512837 16.280741961071328 L 778.6264257002805 16.739298403151054 L 779.513823255963 17.242002909085272 L 780.3754853614462 17.787644419687354 L 781.2093361972454 18.37490843676585 L 782.0133669436602 19.00238018986522 L 782.7856406201978 19.668548044572276 L 783.5242967519282 20.371807144175648 L 784.2275558515316 21.110463275906113 L 784.8937237062387 21.882736952443736 L 785.5211954593381 22.686767698858546 L 786.1084594764166 23.520618534657615 L 786.6541009870186 24.382280640140834 L 787.1568054929528 25.269678195823417 L 787.6153619350326 26.18067338326688 L 788.0286656106241 27.113071535270876 L 788.3957208349718 28.064626423018808 L 788.71564333989 29.03304566743975 L 788.9876624040426 30.015996261750388 L 789.2111227096775 31.01111019187266 L 789.3854859213461 32.015990141187274 L 789.5103319827989 33.02821526587928 L 789.5853601289386 34.04534702696276 L 789.6103896103896 35.06493506493507 L 789.6103896103896 564.9350649350649 L 789.5853601289386 565.9546529730372 L 789.5103319827989 566.9717847341208 L 789.3854859213461 567.9840098588127 L 789.2111227096775 568.9888898081274 L 788.9876624040426 569.9840037382496 L 788.71564333989 570.9669543325602 L 788.3957208349718 571.9353735769812 L 788.0286656106241 572.8869284647292 L 787.6153619350326 573.8193266167332 L 787.1568054929528 574.7303218041766 L 786.6541009870186 575.6177193598592 L 786.1084594764166 576.4793814653424 L 785.5211954593381 577.3132323011414 L 784.8937237062387 578.1172630475562 L 784.2275558515316 578.8895367240939 L 783.5242967519282 579.6281928558244 L 782.7856406201978 580.3314519554277 L 782.0133669436602 580.9976198101348 L 781.2093361972454 581.6250915632342 L 780.3754853614462 582.2123555803126 L 779.513823255963 582.7579970909147 L 778.6264257002805 583.260701596849 L 777.715430512837 583.7192580389287 L 776.7830323608331 584.1325617145203 L 775.831477473085 584.499616938868 L 774.8630582286642 584.8195394437862 L 773.8801076343535 585.0915585079385 L 772.8849937042312 585.3150188135736 L 771.8801137549166 585.4893820252422 L 770.8678886302246 585.614228086695 L 769.8507568691412 585.6892562328347 L 768.8311688311688 585.7142857142858 L 31.16883116883116 585.7142857142858 Z M 733.5064935064936 40.25974025974028 L 733.2868967111018 38.03013657955597 L 732.6365453066225 35.886215318424945 L 731.5804319328083 33.91036616808765 L 730.1591424343397 32.17851990332258 L 728.4272961695747 30.757230404854 L 726.4514470192373 29.701117031039814 L 724.3075257581064 29.050765626560462 L 722.077922077922 28.83116883116884 L 719.8483183977378 29.050765626560462 L 717.7043971366068 29.701117031039814 L 715.7285479862694 30.757230404854 L 713.9967017215045 32.17851990332258 L 712.5754122230358 33.91036616808765 L 711.5192988492216 35.886215318424945 L 710.8689474447423 38.030136579555915 L 710.6493506493507 40.25974025974028 L 710.8689474447423 42.489343939924595 L 711.5192988492216 44.633265201055565 L 712.5754122230358 46.60911435139286 L 713.9967017215045 48.34096061615793 L 715.7285479862694 49.76225011462651 L 717.7043971366068 50.818363488440696 L 719.8483183977378 51.46871489292005 L 722.077922077922 51.6883116883117 L 724.3075257581064 51.46871489292005 L 726.4514470192373 50.818363488440696 L 728.4272961695747 49.76225011462651 L 730.1591424343397 48.34096061615796 L 731.5804319328083 46.60911435139286 L 732.6365453066225 44.63326520105559 L 733.2868967111018 42.489343939924595 L 733.5064935064936 40.25974025974028 Z M 775.0649350649351 40.25974025974028 L 774.8453382695434 38.03013657955597 L 774.194986865064 35.886215318424945 L 773.1388734912498 33.91036616808765 L 771.7175839927813 32.17851990332258 L 769.9857377280161 30.757230404854 L 768.009888577679 29.701117031039814 L 765.865967316548 29.050765626560462 L 763.6363636363636 28.83116883116884 L 761.4067599561793 29.050765626560462 L 759.2628386950482 29.701117031039814 L 757.2869895447111 30.757230404854 L 755.5551432799459 32.17851990332258 L 754.1338537814775 33.91036616808765 L 753.0777404076632 35.886215318424945 L 752.4273890031839 38.030136579555915 L 752.2077922077922 40.25974025974028 L 752.4273890031839 42.489343939924595 L 753.0777404076632 44.633265201055565 L 754.1338537814775 46.60911435139286 L 755.5551432799459 48.34096061615793 L 757.2869895447111 49.76225011462651 L 759.2628386950482 50.818363488440696 L 761.4067599561793 51.46871489292005 L 763.6363636363636 51.6883116883117 L 765.865967316548 51.46871489292005 L 768.009888577679 50.818363488440696 L 769.9857377280161 49.76225011462651 L 771.7175839927813 48.34096061615796 L 773.1388734912498 46.60911435139286 L 774.194986865064 44.63326520105559 L 774.8453382695434 42.489343939924595 L 775.0649350649351 40.25974025974028 Z M 775.0649350649351 559.7402597402597 L 774.8453382695434 557.5106560600755 L 774.194986865064 555.3667347989444 L 773.1388734912498 553.3908856486071 L 771.7175839927813 551.6590393838421 L 769.9857377280161 550.2377498853734 L 768.009888577679 549.1816365115593 L 765.865967316548 548.53128510708 L 763.6363636363636 548.3116883116883 L 761.4067599561793 548.53128510708 L 759.2628386950482 549.1816365115593 L 757.2869895447111 550.2377498853734 L 755.5551432799459 551.6590393838421 L 754.1338537814775 553.3908856486071 L 753.0777404076632 555.3667347989444 L 752.4273890031839 557.5106560600755 L 752.2077922077922 559.7402597402597 L 752.4273890031839 561.9698634204441 L 753.0777404076632 564.113784681575 L 754.1338537814775 566.0896338319124 L 755.5551432799459 567.8214800966774 L 757.2869895447111 569.242769595146 L 759.2628386950482 570.2988829689602 L 761.4067599561793 570.9492343734396 L 763.6363636363636 571.1688311688312 L 765.865967316548 570.9492343734396 L 768.009888577679 570.2988829689602 L 769.9857377280161 569.242769595146 L 771.7175839927813 567.8214800966774 L 773.1388734912498 566.0896338319124 L 774.194986865064 564.113784681575 L 774.8453382695434 561.9698634204441 L 775.0649350649351 559.7402597402597 Z M 47.79220779220782 559.7402597402597 L 47.57261099681614 557.5106560600755 L 46.92225959233673 555.3667347989444 L 45.866146218522545 553.3908856486071 L 44.44485672005408 551.6590393838421 L 42.71301045528895 550.2377498853734 L 40.73716130495171 549.1816365115593 L 38.593240043820686 548.53128510708 L 36.363636363636374 548.3116883116883 L 34.13403268345206 548.53128510708 L 31.990111422321036 549.1816365115593 L 30.014262271983796 550.2377498853734 L 28.28241600721867 551.6590393838421 L 26.861126508750147 553.3908856486071 L 25.80501313493596 555.3667347989444 L 25.15466173045661 557.5106560600755 L 24.93506493506493 559.7402597402597 L 25.15466173045661 561.9698634204441 L 25.80501313493596 564.113784681575 L 26.861126508750147 566.0896338319124 L 28.28241600721867 567.8214800966774 L 30.014262271983796 569.242769595146 L 31.990111422321036 570.2988829689602 L 34.13403268345206 570.9492343734396 L 36.363636363636374 571.1688311688312 L 38.593240043820686 570.9492343734396 L 40.73716130495171 570.2988829689602 L 42.71301045528895 569.242769595146 L 44.44485672005408 567.8214800966774 L 45.866146218522545 566.0896338319124 L 46.92225959233673 564.113784681575 L 47.57261099681614 561.9698634204441 L 47.79220779220782 559.7402597402597 Z M 47.79220779220782 40.25974025974028 L 47.57261099681614 38.03013657955597 L 46.92225959233673 35.886215318424945 L 45.866146218522545 33.91036616808765 L 44.44485672005408 32.17851990332258 L 42.71301045528895 30.757230404854 L 40.73716130495171 29.701117031039814 L 38.593240043820686 29.050765626560462 L 36.363636363636374 28.83116883116884 L 34.13403268345206 29.050765626560462 L 31.990111422321036 29.701117031039814 L 30.014262271983796 30.757230404854 L 28.28241600721867 32.17851990332258 L 26.861126508750147 33.91036616808765 L 25.80501313493596 35.886215318424945 L 25.15466173045661 38.030136579555915 L 24.93506493506493 40.25974025974028 L 25.15466173045661 42.489343939924595 L 25.80501313493596 44.633265201055565 L 26.861126508750147 46.60911435139286 L 28.28241600721867 48.34096061615793 L 30.014262271983796 49.76225011462651 L 31.990111422321036 50.818363488440696 L 34.13403268345206 51.46871489292005 L 36.363636363636374 51.6883116883117 L 38.593240043820686 51.46871489292005 L 40.73716130495171 50.818363488440696 L 42.71301045528895 49.76225011462651 L 44.44485672005408 48.34096061615796 L 45.866146218522545 46.60911435139286 L 46.92225959233673 44.63326520105559 L 47.57261099681614 42.489343939924595 L 47.79220779220782 40.25974025974028 Z" fill="rgb(200, 52, 52)" fill-rule="evenodd" fill-opacity="0.5" data-type="pcb_copper_pour" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="20.77922077922078" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,685.7142857142858,35.06493506493507)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="null" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">UP</text><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="41.55844155844159" cy="554.5454545454545" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="41.55844155844159" cy="554.5454545454545" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="41.55844155844159" cy="533.7662337662338" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="41.55844155844159" cy="533.7662337662338" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="41.55844155844159" cy="512.987012987013" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="41.55844155844159" cy="512.987012987013" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="41.55844155844159" cy="492.2077922077922" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="41.55844155844159" cy="492.2077922077922" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="62.33766233766232" cy="554.5454545454545" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="62.33766233766232" cy="554.5454545454545" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="62.33766233766232" cy="533.7662337662338" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="62.33766233766232" cy="533.7662337662338" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="62.33766233766232" cy="512.987012987013" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="62.33766233766232" cy="512.987012987013" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="62.33766233766232" cy="492.2077922077922" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="62.33766233766232" cy="492.2077922077922" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="83.11688311688312" cy="554.5454545454545" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="83.11688311688312" cy="554.5454545454545" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="83.11688311688312" cy="533.7662337662338" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="83.11688311688312" cy="533.7662337662338" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="83.11688311688312" cy="512.987012987013" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="83.11688311688312" cy="512.987012987013" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="83.11688311688312" cy="492.2077922077922" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="83.11688311688312" cy="492.2077922077922" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="103.89610389610391" cy="554.5454545454545" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="103.89610389610391" cy="554.5454545454545" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="103.89610389610391" cy="533.7662337662338" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="103.89610389610391" cy="533.7662337662338" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="103.89610389610391" cy="512.987012987013" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="103.89610389610391" cy="512.987012987013" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="103.89610389610391" cy="492.2077922077922" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="103.89610389610391" cy="492.2077922077922" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="41.55844155844159" cy="107.79220779220779" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="41.55844155844159" cy="107.79220779220779" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="41.55844155844159" cy="87.01298701298703" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="41.55844155844159" cy="87.01298701298703" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="41.55844155844159" cy="66.23376623376623" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="41.55844155844159" cy="66.23376623376623" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="41.55844155844159" cy="45.45454545454547" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="41.55844155844159" cy="45.45454545454547" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="62.33766233766232" cy="107.79220779220779" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="62.33766233766232" cy="107.79220779220779" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="62.33766233766232" cy="87.01298701298703" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="62.33766233766232" cy="87.01298701298703" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="62.33766233766232" cy="66.23376623376623" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="62.33766233766232" cy="66.23376623376623" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="62.33766233766232" cy="45.45454545454547" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="62.33766233766232" cy="45.45454545454547" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="83.11688311688312" cy="107.79220779220779" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="83.11688311688312" cy="107.79220779220779" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="83.11688311688312" cy="87.01298701298703" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="83.11688311688312" cy="87.01298701298703" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="83.11688311688312" cy="66.23376623376623" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="83.11688311688312" cy="66.23376623376623" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="83.11688311688312" cy="45.45454545454547" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="83.11688311688312" cy="45.45454545454547" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="103.89610389610391" cy="107.79220779220779" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="103.89610389610391" cy="107.79220779220779" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="103.89610389610391" cy="87.01298701298703" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="103.89610389610391" cy="87.01298701298703" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="103.89610389610391" cy="66.23376623376623" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="103.89610389610391" cy="66.23376623376623" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="103.89610389610391" cy="45.45454545454547" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="103.89610389610391" cy="45.45454545454547" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="532.4675324675325" cy="92.20779220779221" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="532.4675324675325" cy="92.20779220779221" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="532.4675324675325" cy="61.03896103896105" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="532.4675324675325" cy="61.03896103896105" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="563.6363636363636" cy="92.20779220779221" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="563.6363636363636" cy="92.20779220779221" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="563.6363636363636" cy="61.03896103896105" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="563.6363636363636" cy="61.03896103896105" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="594.8051948051948" cy="92.20779220779221" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="594.8051948051948" cy="92.20779220779221" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="594.8051948051948" cy="61.03896103896105" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="594.8051948051948" cy="61.03896103896105" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="625.974025974026" cy="92.20779220779221" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="625.974025974026" cy="92.20779220779221" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="625.974025974026" cy="61.03896103896105" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="625.974025974026" cy="61.03896103896105" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="657.1428571428571" cy="92.20779220779221" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="657.1428571428571" cy="92.20779220779221" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="657.1428571428571" cy="61.03896103896105" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="657.1428571428571" cy="61.03896103896105" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="518.1818181818182" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="518.1818181818182" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="497.4025974025974" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="497.4025974025974" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="476.62337662337666" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="476.62337662337666" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="455.8441558441558" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="455.8441558441558" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="435.06493506493507" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="435.06493506493507" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="414.2857142857143" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="414.2857142857143" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="393.5064935064935" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="393.5064935064935" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="372.72727272727275" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="372.72727272727275" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="351.94805194805195" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="351.94805194805195" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="331.16883116883116" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="331.16883116883116" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="310.38961038961037" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="310.38961038961037" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="289.61038961038963" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="289.61038961038963" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="268.83116883116884" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="268.83116883116884" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="248.05194805194805" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="248.05194805194805" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="227.27272727272728" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="227.27272727272728" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="206.4935064935065" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="206.4935064935065" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="185.71428571428572" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="185.71428571428572" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="164.93506493506493" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="164.93506493506493" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="144.15584415584416" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="144.15584415584416" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="123.37662337662337" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="123.37662337662337" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="102.5974025974026" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="102.5974025974026" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="81.81818181818181" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="81.81818181818181" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="518.1818181818182" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="518.1818181818182" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="497.4025974025974" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="497.4025974025974" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="476.62337662337666" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="476.62337662337666" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="455.8441558441558" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="455.8441558441558" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="435.06493506493507" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="435.06493506493507" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="414.2857142857143" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="414.2857142857143" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="393.5064935064935" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="393.5064935064935" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="372.72727272727275" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="372.72727272727275" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="351.94805194805195" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="351.94805194805195" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="331.16883116883116" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="331.16883116883116" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="310.38961038961037" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="310.38961038961037" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="289.61038961038963" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="289.61038961038963" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="268.83116883116884" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="268.83116883116884" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="248.05194805194805" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="248.05194805194805" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="227.27272727272728" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="227.27272727272728" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="206.4935064935065" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="206.4935064935065" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="185.71428571428572" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="185.71428571428572" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="164.93506493506493" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="164.93506493506493" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="144.15584415584416" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="144.15584415584416" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="123.37662337662337" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="123.37662337662337" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="102.5974025974026" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="102.5974025974026" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="81.81818181818181" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="81.81818181818181" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="212.98701298701297" cy="362.3376623376623" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="212.98701298701297" cy="362.3376623376623" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="212.98701298701297" cy="320.7792207792208" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="212.98701298701297" cy="320.7792207792208" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="212.98701298701297" cy="279.2207792207792" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="212.98701298701297" cy="279.2207792207792" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="212.98701298701297" cy="237.66233766233768" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="212.98701298701297" cy="237.66233766233768" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="254.54545454545456" cy="362.3376623376623" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="254.54545454545456" cy="362.3376623376623" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="254.54545454545456" cy="320.7792207792208" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="254.54545454545456" cy="320.7792207792208" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="254.54545454545456" cy="279.2207792207792" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="254.54545454545456" cy="279.2207792207792" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="254.54545454545456" cy="237.66233766233768" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="254.54545454545456" cy="237.66233766233768" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="296.1038961038961" cy="362.3376623376623" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="296.1038961038961" cy="362.3376623376623" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="296.1038961038961" cy="320.7792207792208" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="296.1038961038961" cy="320.7792207792208" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="296.1038961038961" cy="279.2207792207792" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="296.1038961038961" cy="279.2207792207792" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="296.1038961038961" cy="237.66233766233768" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="296.1038961038961" cy="237.66233766233768" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="337.6623376623377" cy="362.3376623376623" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="337.6623376623377" cy="362.3376623376623" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="337.6623376623377" cy="320.7792207792208" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="337.6623376623377" cy="320.7792207792208" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="337.6623376623377" cy="279.2207792207792" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="337.6623376623377" cy="279.2207792207792" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="337.6623376623377" cy="237.66233766233768" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="337.6623376623377" cy="237.66233766233768" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="379.2207792207792" cy="362.3376623376623" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="379.2207792207792" cy="362.3376623376623" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="379.2207792207792" cy="320.7792207792208" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="379.2207792207792" cy="320.7792207792208" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="379.2207792207792" cy="279.2207792207792" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="379.2207792207792" cy="279.2207792207792" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="379.2207792207792" cy="237.66233766233768" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="379.2207792207792" cy="237.66233766233768" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><circle class="pcb-hole" cx="763.6363636363636" cy="40.25974025974028" r="11.428571428571429" fill="#FF26E2" data-type="pcb_hole" data-pcb-layer="drill"/><circle class="pcb-hole" cx="722.077922077922" cy="40.25974025974028" r="11.428571428571429" fill="#FF26E2" data-type="pcb_hole" data-pcb-layer="drill"/><circle class="pcb-hole" cx="763.6363636363636" cy="559.7402597402597" r="11.428571428571429" fill="#FF26E2" data-type="pcb_hole" data-pcb-layer="drill"/><circle class="pcb-hole" cx="36.363636363636374" cy="559.7402597402597" r="11.428571428571429" fill="#FF26E2" data-type="pcb_hole" data-pcb-layer="drill"/><circle class="pcb-hole" cx="36.363636363636374" cy="40.25974025974028" r="11.428571428571429" fill="#FF26E2" data-type="pcb_hole" data-pcb-layer="drill"/><g class="pcb-note-dimension" data-type="pcb_note_dimension" data-pcb-note-dimension-id="pcb_note_dimension_0" data-pcb-layer="overlay"><path d="M 10.389610389610368 -11.688311688311671 L 10.389610389610368 -22.077922077922096" stroke="rgb(89, 148, 220)" fill="none" stroke-width="2.077922077922078" stroke-linecap="round" class="pcb-note-dimension-extension"/><path d="M 789.6103896103896 -11.688311688311671 L 789.6103896103896 -22.077922077922096" stroke="rgb(89, 148, 220)" fill="none" stroke-width="2.077922077922078" stroke-linecap="round" class="pcb-note-dimension-extension"/><path d="M 20.779220779220793 -11.688311688311671 L 779.2207792207791 -11.688311688311671" stroke="rgb(89, 148, 220)" fill="none" stroke-width="2.077922077922078" stroke-linecap="round" class="pcb-note-dimension-line"/><path d="M 10.389610389610368 -11.688311688311671 L 20.779220779220793 -16.883116883116884 L 20.779220779220793 -6.493506493506516 Z" fill="rgb(89, 148, 220)" class="pcb-note-dimension-arrow"/><path d="M 789.6103896103896 -11.688311688311671 L 779.2207792207791 -16.883116883116884 L 779.2207792207791 -6.493506493506516 Z" fill="rgb(89, 148, 220)" class="pcb-note-dimension-arrow"/><text x="400" y="-27.272727272727252" fill="rgb(89, 148, 220)" font-size="10.38961038961039" font-family="Arial, sans-serif" text-anchor="middle" dominant-baseline="central" class="pcb-note-dimension-text" transform="rotate(0 400 -27.272727272727252)">75mm</text></g><g class="pcb-note-dimension" data-type="pcb_note_dimension" data-pcb-note-dimension-id="pcb_note_dimension_1" data-pcb-layer="overlay"><path d="M 815.5844155844156 585.7142857142858 L 805.1948051948052 585.7142857142858" stroke="rgb(89, 148, 220)" fill="none" stroke-width="2.077922077922078" stroke-linecap="round" class="pcb-note-dimension-extension"/><path d="M 815.5844155844156 14.285714285714278 L 805.1948051948052 14.285714285714278" stroke="rgb(89, 148, 220)" fill="none" stroke-width="2.077922077922078" stroke-linecap="round" class="pcb-note-dimension-extension"/><path d="M 815.5844155844156 575.3246753246754 L 815.5844155844156 24.675324675324703" stroke="rgb(89, 148, 220)" fill="none" stroke-width="2.077922077922078" stroke-linecap="round" class="pcb-note-dimension-line"/><path d="M 815.5844155844156 585.7142857142858 L 810.3896103896104 575.3246753246754 L 820.7792207792209 575.3246753246754 Z" fill="rgb(89, 148, 220)" class="pcb-note-dimension-arrow"/><path d="M 815.5844155844156 14.285714285714278 L 810.3896103896104 24.675324675324703 L 820.7792207792209 24.675324675324703 Z" fill="rgb(89, 148, 220)" class="pcb-note-dimension-arrow"/><text x="800" y="300" fill="rgb(89, 148, 220)" font-size="10.38961038961039" font-family="Arial, sans-serif" text-anchor="middle" dominant-baseline="central" class="pcb-note-dimension-text" transform="rotate(-90 800 300)">55mm</text></g><rect x="31.16883116883116" y="481.8181818181818" width="83.11688311688312" height="83.11688311688312" class="pcb-note-rect" data-type="pcb_note_rect" data-pcb-note-rect-id="pcb_note_rect_0" data-pcb-layer="overlay" fill="none" stroke="blue" stroke-width="1.038961038961039"/><rect x="31.16883116883116" y="35.06493506493507" width="83.11688311688312" height="83.11688311688312" class="pcb-note-rect" data-type="pcb_note_rect" data-pcb-note-rect-id="pcb_note_rect_1" data-pcb-layer="overlay" fill="none" stroke="blue" stroke-width="1.038961038961039"/><rect x="503.8961038961039" y="35.06493506493507" width="181.81818181818187" height="83.11688311688312" class="pcb-note-rect" data-type="pcb_note_rect" data-pcb-note-rect-id="pcb_note_rect_2" data-pcb-layer="overlay" fill="none" stroke="blue" stroke-width="1.038961038961039"/><rect x="716.8831168831168" y="66.23376623376623" width="41.55844155844159" height="467.53246753246754" class="pcb-note-rect" data-type="pcb_note_rect" data-pcb-note-rect-id="pcb_note_rect_3" data-pcb-layer="overlay" fill="none" stroke="blue" stroke-width="1.038961038961039"/><rect x="192.2077922077922" y="216.88311688311688" width="207.7922077922078" height="166.23376623376623" class="pcb-note-rect" data-type="pcb_note_rect" data-pcb-note-rect-id="pcb_note_rect_4" data-pcb-layer="overlay" fill="none" stroke="blue" stroke-width="1.038961038961039"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="800" height="600" data-software-used-string="@tscircuit/core@0.0.855"><style></style><rect class="boundary" x="0" y="0" fill="#000" width="800" height="600" data-type="pcb_background" data-pcb-layer="global"/><rect class="pcb-boundary" fill="none" stroke="#fff" stroke-width="0.3" x="10.389610389610368" y="14.285714285714278" width="779.2207792207791" height="571.4285714285716" data-type="pcb_boundary" data-pcb-layer="global"/><path class="pcb-board" d="M 31.16883116883116 585.7142857142858 L 768.8311688311688 585.7142857142858 L 769.8507568691412 585.6892562328347 L 770.8678886302246 585.614228086695 L 771.8801137549166 585.4893820252422 L 772.8849937042312 585.3150188135736 L 773.8801076343535 585.0915585079385 L 774.8630582286642 584.8195394437862 L 775.831477473085 584.499616938868 L 776.7830323608331 584.1325617145203 L 777.715430512837 583.7192580389287 L 778.6264257002805 583.260701596849 L 779.513823255963 582.7579970909147 L 780.3754853614462 582.2123555803126 L 781.2093361972454 581.6250915632342 L 782.0133669436602 580.9976198101348 L 782.7856406201978 580.3314519554277 L 783.5242967519282 579.6281928558244 L 784.2275558515316 578.8895367240939 L 784.8937237062387 578.1172630475562 L 785.5211954593381 577.3132323011414 L 786.1084594764166 576.4793814653424 L 786.6541009870186 575.6177193598592 L 787.1568054929528 574.7303218041766 L 787.6153619350326 573.8193266167332 L 788.0286656106241 572.8869284647292 L 788.3957208349718 571.9353735769812 L 788.71564333989 570.9669543325602 L 788.9876624040426 569.9840037382496 L 789.2111227096775 568.9888898081274 L 789.3854859213461 567.9840098588127 L 789.5103319827989 566.9717847341208 L 789.5853601289386 565.9546529730372 L 789.6103896103896 564.9350649350649 L 789.6103896103896 35.06493506493507 L 789.5853601289386 34.04534702696276 L 789.5103319827989 33.02821526587928 L 789.3854859213461 32.015990141187274 L 789.2111227096775 31.01111019187266 L 788.9876624040426 30.015996261750388 L 788.71564333989 29.03304566743975 L 788.3957208349718 28.064626423018808 L 788.0286656106241 27.113071535270876 L 787.6153619350326 26.18067338326688 L 787.1568054929528 25.269678195823417 L 786.6541009870186 24.382280640140834 L 786.1084594764166 23.520618534657615 L 785.5211954593381 22.686767698858546 L 784.8937237062387 21.882736952443736 L 784.2275558515316 21.110463275906113 L 783.5242967519282 20.371807144175648 L 782.7856406201978 19.668548044572276 L 782.0133669436602 19.00238018986522 L 781.2093361972454 18.37490843676585 L 780.3754853614462 17.787644419687354 L 779.513823255963 17.242002909085272 L 778.6264257002805 16.739298403151054 L 777.715430512837 16.280741961071328 L 776.7830323608331 15.86743828547975 L 775.831477473085 15.500383061132027 L 774.8630582286642 15.180460556213859 L 773.8801076343535 14.908441492061456 L 772.8849937042312 14.684981186426398 L 771.8801137549166 14.510617974757793 L 770.8678886302246 14.385771913305007 L 769.8507568691412 14.310743767165263 L 768.8311688311688 14.285714285714278 L 31.16883116883116 14.285714285714278 L 30.14924313085885 14.310743767165263 L 29.132111369775373 14.385771913305007 L 28.11988624508342 14.510617974757793 L 27.11500629576875 14.684981186426398 L 26.11989236564648 14.908441492061456 L 25.13694177133584 15.180460556213859 L 24.168522526914956 15.500383061132027 L 23.21696763916691 15.86743828547975 L 22.28456948716297 16.280741961071328 L 21.373574299719508 16.739298403151054 L 20.48617674403698 17.242002909085272 L 19.624514638553762 17.787644419687354 L 18.790663802754636 18.37490843676585 L 17.986633056339826 19.00238018986522 L 17.214359379802204 19.668548044572276 L 16.475703248071795 20.371807144175648 L 15.772444148468423 21.110463275906113 L 15.106276293761312 21.882736952443736 L 14.47880454066194 22.686767698858546 L 13.891540523583501 23.520618534657615 L 13.345899012981363 24.382280640140834 L 12.843194507047144 25.269678195823417 L 12.384638064967362 26.18067338326688 L 11.971334389375897 27.113071535270876 L 11.604279165028174 28.064626423018808 L 11.28435666010995 29.03304566743975 L 11.01233759595749 30.01599626175033 L 10.788877290322432 31.01111019187266 L 10.614514078653883 32.015990141187274 L 10.489668017201097 33.02821526587928 L 10.414639871061354 34.04534702696276 L 10.389610389610368 35.06493506493507 L 10.389610389610368 564.9350649350649 L 10.414639871061354 565.9546529730372 L 10.489668017201097 566.9717847341208 L 10.614514078653883 567.9840098588127 L 10.788877290322432 568.9888898081274 L 11.01233759595749 569.9840037382496 L 11.28435666010995 570.9669543325602 L 11.604279165028174 571.9353735769812 L 11.971334389375897 572.8869284647292 L 12.384638064967362 573.8193266167332 L 12.843194507047144 574.7303218041766 L 13.345899012981363 575.6177193598592 L 13.891540523583501 576.4793814653424 L 14.47880454066194 577.3132323011414 L 15.106276293761312 578.1172630475562 L 15.772444148468423 578.8895367240939 L 16.475703248071795 579.6281928558244 L 17.214359379802204 580.3314519554277 L 17.986633056339826 580.9976198101348 L 18.790663802754636 581.6250915632342 L 19.624514638553762 582.2123555803126 L 20.48617674403698 582.7579970909147 L 21.373574299719508 583.260701596849 L 22.28456948716297 583.7192580389287 L 23.21696763916691 584.1325617145203 L 24.168522526914956 584.499616938868 L 25.13694177133584 584.8195394437862 L 26.11989236564648 585.0915585079385 L 27.11500629576875 585.3150188135736 L 28.11988624508342 585.4893820252422 L 29.132111369775373 585.614228086695 L 30.14924313085885 585.6892562328347 L 31.16883116883116 585.7142857142858 Z" fill="none" stroke="rgba(255, 255, 255, 0.5)" stroke-width="1.038961038961039" data-type="pcb_board" data-pcb-layer="board"/><path class="pcb-copper-pour pcb-copper-pour-brep" d="M 31.16883116883116 585.7142857142858 L 30.14924313085885 585.6892562328347 L 29.132111369775373 585.614228086695 L 28.11988624508342 585.4893820252422 L 27.11500629576875 585.3150188135736 L 26.11989236564648 585.0915585079385 L 25.13694177133584 584.8195394437862 L 24.168522526914956 584.499616938868 L 23.21696763916691 584.1325617145203 L 22.28456948716297 583.7192580389287 L 21.373574299719508 583.260701596849 L 20.48617674403698 582.7579970909147 L 19.624514638553762 582.2123555803126 L 18.790663802754636 581.6250915632342 L 17.986633056339826 580.9976198101348 L 17.214359379802204 580.3314519554277 L 16.475703248071795 579.6281928558244 L 15.772444148468423 578.8895367240939 L 15.106276293761312 578.1172630475562 L 14.47880454066194 577.3132323011414 L 13.891540523583501 576.4793814653424 L 13.345899012981363 575.6177193598592 L 12.843194507047144 574.7303218041766 L 12.384638064967362 573.8193266167332 L 11.971334389375897 572.8869284647292 L 11.604279165028174 571.9353735769812 L 11.28435666010995 570.9669543325602 L 11.01233759595749 569.9840037382496 L 10.788877290322432 568.9888898081274 L 10.614514078653883 567.9840098588127 L 10.489668017201097 566.9717847341208 L 10.414639871061354 565.9546529730372 L 10.389610389610368 564.9350649350649 L 10.389610389610368 35.06493506493507 L 10.414639871061354 34.04534702696276 L 10.489668017201097 33.02821526587928 L 10.614514078653883 32.015990141187274 L 10.788877290322432 31.01111019187266 L 11.01233759595749 30.01599626175033 L 11.28435666010995 29.03304566743975 L 11.604279165028174 28.064626423018808 L 11.971334389375897 27.113071535270876 L 12.384638064967362 26.18067338326688 L 12.843194507047144 25.269678195823417 L 13.345899012981363 24.382280640140834 L 13.891540523583501 23.520618534657615 L 14.47880454066194 22.686767698858546 L 15.106276293761312 21.882736952443736 L 15.772444148468423 21.110463275906113 L 16.475703248071795 20.371807144175648 L 17.214359379802204 19.668548044572276 L 17.986633056339826 19.00238018986522 L 18.790663802754636 18.37490843676585 L 19.624514638553762 17.787644419687354 L 20.48617674403698 17.242002909085272 L 21.373574299719508 16.739298403151054 L 22.28456948716297 16.280741961071328 L 23.21696763916691 15.86743828547975 L 24.168522526914956 15.500383061132027 L 25.13694177133584 15.180460556213859 L 26.11989236564648 14.908441492061456 L 27.11500629576875 14.684981186426398 L 28.11988624508342 14.510617974757793 L 29.132111369775373 14.385771913305007 L 30.14924313085885 14.310743767165263 L 31.16883116883116 14.285714285714278 L 768.8311688311688 14.285714285714278 L 769.8507568691412 14.310743767165263 L 770.8678886302246 14.385771913305007 L 771.8801137549166 14.510617974757793 L 772.8849937042312 14.684981186426398 L 773.8801076343535 14.908441492061456 L 774.8630582286642 15.180460556213859 L 775.831477473085 15.500383061132027 L 776.7830323608331 15.86743828547975 L 777.715430512837 16.280741961071328 L 778.6264257002805 16.739298403151054 L 779.513823255963 17.242002909085272 L 780.3754853614462 17.787644419687354 L 781.2093361972454 18.37490843676585 L 782.0133669436602 19.00238018986522 L 782.7856406201978 19.668548044572276 L 783.5242967519282 20.371807144175648 L 784.2275558515316 21.110463275906113 L 784.8937237062387 21.882736952443736 L 785.5211954593381 22.686767698858546 L 786.1084594764166 23.520618534657615 L 786.6541009870186 24.382280640140834 L 787.1568054929528 25.269678195823417 L 787.6153619350326 26.18067338326688 L 788.0286656106241 27.113071535270876 L 788.3957208349718 28.064626423018808 L 788.71564333989 29.03304566743975 L 788.9876624040426 30.015996261750388 L 789.2111227096775 31.01111019187266 L 789.3854859213461 32.015990141187274 L 789.5103319827989 33.02821526587928 L 789.5853601289386 34.04534702696276 L 789.6103896103896 35.06493506493507 L 789.6103896103896 564.9350649350649 L 789.5853601289386 565.9546529730372 L 789.5103319827989 566.9717847341208 L 789.3854859213461 567.9840098588127 L 789.2111227096775 568.9888898081274 L 788.9876624040426 569.9840037382496 L 788.71564333989 570.9669543325602 L 788.3957208349718 571.9353735769812 L 788.0286656106241 572.8869284647292 L 787.6153619350326 573.8193266167332 L 787.1568054929528 574.7303218041766 L 786.6541009870186 575.6177193598592 L 786.1084594764166 576.4793814653424 L 785.5211954593381 577.3132323011414 L 784.8937237062387 578.1172630475562 L 784.2275558515316 578.8895367240939 L 783.5242967519282 579.6281928558244 L 782.7856406201978 580.3314519554277 L 782.0133669436602 580.9976198101348 L 781.2093361972454 581.6250915632342 L 780.3754853614462 582.2123555803126 L 779.513823255963 582.7579970909147 L 778.6264257002805 583.260701596849 L 777.715430512837 583.7192580389287 L 776.7830323608331 584.1325617145203 L 775.831477473085 584.499616938868 L 774.8630582286642 584.8195394437862 L 773.8801076343535 585.0915585079385 L 772.8849937042312 585.3150188135736 L 771.8801137549166 585.4893820252422 L 770.8678886302246 585.614228086695 L 769.8507568691412 585.6892562328347 L 768.8311688311688 585.7142857142858 L 31.16883116883116 585.7142857142858 Z M 45.19145217219102 47.431231425541284 L 45.866146218522545 46.60911435139286 L 46.92225959233673 44.63326520105559 L 47.57261099681614 42.489343939924595 L 47.79220779220782 40.25974025974028 L 47.57261099681614 38.03013657955597 L 46.92225959233673 35.886215318424945 L 45.866146218522545 33.91036616808765 L 44.44485672005408 32.17851990332258 L 42.71301045528895 30.757230404854 L 40.73716130495171 29.701117031039814 L 38.593240043820686 29.050765626560462 L 36.363636363636374 28.83116883116884 L 34.13403268345206 29.050765626560462 L 31.990111422321036 29.701117031039814 L 30.014262271983796 30.757230404854 L 28.28241600721867 32.17851990332258 L 26.861126508750147 33.91036616808765 L 25.80501313493596 35.886215318424945 L 25.15466173045661 38.030136579555915 L 24.93506493506493 40.25974025974028 L 25.15466173045661 42.489343939924595 L 25.80501313493596 44.633265201055565 L 26.861126508750147 46.60911435139286 L 28.28241600721867 48.34096061615793 L 30.014262271983796 49.76225011462651 L 31.990111422321036 50.818363488440696 L 34.13403268345206 51.46871489292005 L 36.363636363636374 51.6883116883117 L 38.593240043820686 51.46871489292005 L 40.73716130495171 50.818363488440696 L 42.71301045528895 49.76225011462651 L 43.53512752943715 49.08755606829513 L 43.867304864497044 48.910003583595 L 44.49706714259344 48.393171038697346 L 45.01389968749106 47.763408760600925 L 45.19145217219102 47.431231425541284 Z M 43.53512752943686 550.9124439317048 L 42.71301045528895 550.2377498853734 L 40.73716130495171 549.1816365115593 L 38.593240043820686 548.53128510708 L 36.363636363636374 548.3116883116883 L 34.13403268345206 548.53128510708 L 31.990111422321036 549.1816365115593 L 30.014262271983796 550.2377498853734 L 28.28241600721867 551.6590393838421 L 26.861126508750147 553.3908856486071 L 25.80501313493596 555.3667347989444 L 25.15466173045661 557.5106560600755 L 24.93506493506493 559.7402597402597 L 25.15466173045661 561.9698634204441 L 25.80501313493596 564.113784681575 L 26.861126508750147 566.0896338319124 L 28.28241600721867 567.8214800966774 L 30.014262271983796 569.242769595146 L 31.990111422321036 570.2988829689602 L 34.13403268345206 570.9492343734396 L 36.363636363636374 571.1688311688312 L 38.593240043820686 570.9492343734396 L 40.73716130495171 570.2988829689602 L 42.71301045528895 569.242769595146 L 44.44485672005408 567.8214800966774 L 45.866146218522545 566.0896338319124 L 46.92225959233673 564.113784681575 L 47.57261099681614 561.9698634204441 L 47.79220779220782 559.7402597402597 L 47.57261099681614 557.5106560600755 L 46.92225959233673 555.3667347989444 L 45.866146218522545 553.3908856486071 L 45.19145217219091 552.5687685744587 L 45.01389968749106 552.2365912393991 L 44.49706714259344 551.6068289613027 L 43.867304864497044 551.089996416405 L 43.53512752943686 550.9124439317048 Z M 733.5064935064936 40.25974025974028 L 733.2868967111018 38.03013657955597 L 732.6365453066225 35.886215318424945 L 731.5804319328083 33.91036616808765 L 730.1591424343397 32.17851990332258 L 728.4272961695747 30.757230404854 L 726.4514470192373 29.701117031039814 L 724.3075257581064 29.050765626560462 L 722.077922077922 28.83116883116884 L 719.8483183977378 29.050765626560462 L 717.7043971366068 29.701117031039814 L 715.7285479862694 30.757230404854 L 713.9967017215045 32.17851990332258 L 712.5754122230358 33.91036616808765 L 711.5192988492216 35.886215318424945 L 710.8689474447423 38.030136579555915 L 710.6493506493507 40.25974025974028 L 710.8689474447423 42.489343939924595 L 711.5192988492216 44.633265201055565 L 712.5754122230358 46.60911435139286 L 713.9967017215045 48.34096061615793 L 715.7285479862694 49.76225011462651 L 717.7043971366068 50.818363488440696 L 719.8483183977378 51.46871489292005 L 722.077922077922 51.6883116883117 L 724.3075257581064 51.46871489292005 L 726.4514470192373 50.818363488440696 L 728.4272961695747 49.76225011462651 L 730.1591424343397 48.34096061615796 L 731.5804319328083 46.60911435139286 L 732.6365453066225 44.63326520105559 L 733.2868967111018 42.489343939924595 L 733.5064935064936 40.25974025974028 Z M 775.0649350649351 40.25974025974028 L 774.8453382695434 38.03013657955597 L 774.194986865064 35.886215318424945 L 773.1388734912498 33.91036616808765 L 771.7175839927813 32.17851990332258 L 769.9857377280161 30.757230404854 L 768.009888577679 29.701117031039814 L 765.865967316548 29.050765626560462 L 763.6363636363636 28.83116883116884 L 761.4067599561793 29.050765626560462 L 759.2628386950482 29.701117031039814 L 757.2869895447111 30.757230404854 L 755.5551432799459 32.17851990332258 L 754.1338537814775 33.91036616808765 L 753.0777404076632 35.886215318424945 L 752.4273890031839 38.030136579555915 L 752.2077922077922 40.25974025974028 L 752.4273890031839 42.489343939924595 L 753.0777404076632 44.633265201055565 L 754.1338537814775 46.60911435139286 L 755.5551432799459 48.34096061615793 L 757.2869895447111 49.76225011462651 L 759.2628386950482 50.818363488440696 L 761.4067599561793 51.46871489292005 L 763.6363636363636 51.6883116883117 L 765.865967316548 51.46871489292005 L 768.009888577679 50.818363488440696 L 769.9857377280161 49.76225011462651 L 771.7175839927813 48.34096061615796 L 773.1388734912498 46.60911435139286 L 774.194986865064 44.63326520105559 L 774.8453382695434 42.489343939924595 L 775.0649350649351 40.25974025974028 Z M 775.0649350649351 559.7402597402597 L 774.8453382695434 557.5106560600755 L 774.194986865064 555.3667347989444 L 773.1388734912498 553.3908856486071 L 771.7175839927813 551.6590393838421 L 769.9857377280161 550.2377498853734 L 768.009888577679 549.1816365115593 L 765.865967316548 548.53128510708 L 763.6363636363636 548.3116883116883 L 761.4067599561793 548.53128510708 L 759.2628386950482 549.1816365115593 L 757.2869895447111 550.2377498853734 L 755.5551432799459 551.6590393838421 L 754.1338537814775 553.3908856486071 L 753.0777404076632 555.3667347989444 L 752.4273890031839 557.5106560600755 L 752.2077922077922 559.7402597402597 L 752.4273890031839 561.9698634204441 L 753.0777404076632 564.113784681575 L 754.1338537814775 566.0896338319124 L 755.5551432799459 567.8214800966774 L 757.2869895447111 569.242769595146 L 759.2628386950482 570.2988829689602 L 761.4067599561793 570.9492343734396 L 763.6363636363636 571.1688311688312 L 765.865967316548 570.9492343734396 L 768.009888577679 570.2988829689602 L 769.9857377280161 569.242769595146 L 771.7175839927813 567.8214800966774 L 773.1388734912498 566.0896338319124 L 774.194986865064 564.113784681575 L 774.8453382695434 561.9698634204441 L 775.0649350649351 559.7402597402597 Z M 258.7012987012987 362.3376623376623 L 258.62144532115633 361.52689736304984 L 258.3849539013456 360.7472896317295 L 258.0009126745041 360.02879903160687 L 257.48408012960647 359.3990367535105 L 256.85431785151 358.8822042086128 L 256.13582725138735 358.49816298177126 L 255.35621952006701 358.2616715619606 L 254.54545454545456 358.1818181818182 L 253.73468957084208 358.2616715619606 L 252.9550818395217 358.49816298177126 L 252.23659123939905 358.8822042086128 L 251.60682896130265 359.3990367535105 L 251.089996416405 360.02879903160687 L 250.7059551895635 360.7472896317295 L 250.4694637697528 361.52689736304984 L 250.3896103896104 362.3376623376623 L 250.4694637697528 363.1484273122748 L 250.7059551895635 363.9280350435952 L 251.089996416405 364.64652564371784 L 251.60682896130265 365.27628792181423 L 252.23659123939905 365.79312046671185 L 252.9550818395217 366.1771616935534 L 253.73468957084208 366.4136531133641 L 254.54545454545456 366.4935064935065 L 255.35621952006701 366.4136531133641 L 256.13582725138735 366.1771616935534 L 256.85431785151 365.7931204667119 L 257.48408012960647 365.27628792181423 L 258.0009126745041 364.64652564371784 L 258.3849539013456 363.9280350435952 L 258.62144532115633 363.1484273122748 L 258.7012987012987 362.3376623376623 Z M 258.7012987012987 237.66233766233768 L 258.62144532115633 236.8515726877252 L 258.3849539013456 236.07196495640483 L 258.0009126745041 235.35347435628216 L 257.48408012960647 234.72371207818577 L 256.85431785151 234.20687953328815 L 256.13582725138735 233.8228383064466 L 255.35621952006701 233.5863468866359 L 254.54545454545456 233.50649350649348 L 253.73468957084208 233.5863468866359 L 252.9550818395217 233.8228383064466 L 252.23659123939905 234.20687953328815 L 251.60682896130265 234.72371207818577 L 251.089996416405 235.35347435628216 L 250.7059551895635 236.07196495640483 L 250.4694637697528 236.8515726877252 L 250.3896103896104 237.66233766233768 L 250.4694637697528 238.47310263695016 L 250.7059551895635 239.2527103682705 L 251.089996416405 239.97120096839316 L 251.60682896130265 240.60096324648956 L 252.23659123939905 241.1177957913872 L 252.9550818395217 241.50183701822874 L 253.73468957084208 241.7383284380394 L 254.54545454545456 241.8181818181818 L 255.35621952006701 241.7383284380394 L 256.13582725138735 241.50183701822874 L 256.85431785151 241.1177957913872 L 257.48408012960647 240.60096324648956 L 258.0009126745041 239.97120096839316 L 258.3849539013456 239.2527103682705 L 258.62144532115633 238.47310263695016 L 258.7012987012987 237.66233766233768 Z M 300.2597402597403 362.3376623376623 L 300.17988687959786 361.52689736304984 L 299.94339545978715 360.7472896317295 L 299.5593542329457 360.02879903160687 L 299.042521688048 359.3990367535105 L 298.4127594099516 358.8822042086128 L 297.69426880982894 358.49816298177126 L 296.9146610785086 358.2616715619606 L 296.1038961038961 358.1818181818182 L 295.2931311292836 358.2616715619606 L 294.51352339796324 358.49816298177126 L 293.79503279784063 358.8822042086128 L 293.16527051974424 359.3990367535105 L 292.64843797484656 360.02879903160687 L 292.264396748005 360.7472896317295 L 292.0279053281944 361.52689736304984 L 291.94805194805195 362.3376623376623 L 292.0279053281944 363.1484273122748 L 292.264396748005 363.9280350435952 L 292.64843797484656 364.64652564371784 L 293.16527051974424 365.27628792181423 L 293.79503279784063 365.79312046671185 L 294.51352339796324 366.1771616935534 L 295.2931311292836 366.4136531133641 L 296.1038961038961 366.4935064935065 L 296.9146610785086 366.4136531133641 L 297.69426880982894 366.1771616935534 L 298.4127594099516 365.7931204667119 L 299.042521688048 365.27628792181423 L 299.5593542329457 364.64652564371784 L 299.94339545978715 363.9280350435952 L 300.17988687959786 363.1484273122748 L 300.2597402597403 362.3376623376623 Z M 300.2597402597403 237.66233766233768 L 300.17988687959786 236.8515726877252 L 299.94339545978715 236.07196495640483 L 299.5593542329457 235.35347435628216 L 299.042521688048 234.72371207818577 L 298.4127594099516 234.20687953328815 L 297.69426880982894 233.8228383064466 L 296.9146610785086 233.5863468866359 L 296.1038961038961 233.50649350649348 L 295.2931311292836 233.5863468866359 L 294.51352339796324 233.8228383064466 L 293.79503279784063 234.20687953328815 L 293.16527051974424 234.72371207818577 L 292.64843797484656 235.35347435628216 L 292.264396748005 236.07196495640483 L 292.0279053281944 236.8515726877252 L 291.94805194805195 237.66233766233768 L 292.0279053281944 238.47310263695016 L 292.264396748005 239.2527103682705 L 292.64843797484656 239.97120096839316 L 293.16527051974424 240.60096324648956 L 293.79503279784063 241.1177957913872 L 294.51352339796324 241.50183701822874 L 295.2931311292836 241.7383284380394 L 296.1038961038961 241.8181818181818 L 296.9146610785086 241.7383284380394 L 297.69426880982894 241.50183701822874 L 298.4127594099516 241.1177957913872 L 299.042521688048 240.60096324648956 L 299.5593542329457 239.97120096839316 L 299.94339545978715 239.2527103682705 L 300.17988687959786 238.47310263695016 L 300.2597402597403 237.66233766233768 Z M 341.8181818181818 362.3376623376623 L 341.7383284380394 361.52689736304984 L 341.50183701822874 360.7472896317295 L 341.1177957913872 360.02879903160687 L 340.6009632464895 359.3990367535105 L 339.97120096839313 358.8822042086128 L 339.2527103682705 358.49816298177126 L 338.47310263695016 358.2616715619606 L 337.6623376623377 358.1818181818182 L 336.8515726877252 358.2616715619606 L 336.0719649564048 358.49816298177126 L 335.35347435628216 358.8822042086128 L 334.72371207818577 359.3990367535105 L 334.20687953328815 360.02879903160687 L 333.8228383064466 360.7472896317295 L 333.5863468866359 361.52689736304984 L 333.5064935064935 362.3376623376623 L 333.5863468866359 363.1484273122748 L 333.8228383064466 363.9280350435952 L 334.2068795332881 364.64652564371784 L 334.72371207818577 365.27628792181423 L 335.35347435628216 365.79312046671185 L 336.0719649564048 366.1771616935534 L 336.8515726877252 366.4136531133641 L 337.6623376623377 366.4935064935065 L 338.47310263695016 366.4136531133641 L 339.2527103682705 366.1771616935534 L 339.97120096839313 365.7931204667119 L 340.6009632464895 365.27628792181423 L 341.1177957913872 364.64652564371784 L 341.50183701822874 363.9280350435952 L 341.7383284380394 363.1484273122748 L 341.8181818181818 362.3376623376623 Z M 341.8181818181818 237.66233766233768 L 341.7383284380394 236.8515726877252 L 341.50183701822874 236.07196495640483 L 341.1177957913872 235.35347435628216 L 340.6009632464895 234.72371207818577 L 339.97120096839313 234.20687953328815 L 339.2527103682705 233.8228383064466 L 338.47310263695016 233.5863468866359 L 337.6623376623377 233.50649350649348 L 336.8515726877252 233.5863468866359 L 336.0719649564048 233.8228383064466 L 335.35347435628216 234.20687953328815 L 334.72371207818577 234.72371207818577 L 334.20687953328815 235.35347435628216 L 333.8228383064466 236.07196495640483 L 333.5863468866359 236.8515726877252 L 333.5064935064935 237.66233766233768 L 333.5863468866359 238.47310263695016 L 333.8228383064466 239.2527103682705 L 334.2068795332881 239.97120096839316 L 334.72371207818577 240.60096324648956 L 335.35347435628216 241.1177957913872 L 336.0719649564048 241.50183701822874 L 336.8515726877252 241.7383284380394 L 337.6623376623377 241.8181818181818 L 338.47310263695016 241.7383284380394 L 339.2527103682705 241.50183701822874 L 339.97120096839313 241.1177957913872 L 340.6009632464895 240.60096324648956 L 341.1177957913872 239.97120096839316 L 341.50183701822874 239.2527103682705 L 341.7383284380394 238.47310263695016 L 341.8181818181818 237.66233766233768 Z M 341.8181818181818 320.7792207792208 L 341.7383284380394 319.9684558046083 L 341.50183701822874 319.18884807328794 L 341.1177957913872 318.4703574731653 L 340.6009632464895 317.8405951950689 L 339.97120096839313 317.32376265017126 L 339.2527103682705 316.93972142332973 L 338.47310263695016 316.703230003519 L 337.6623376623377 316.6233766233766 L 336.8515726877252 316.703230003519 L 336.0719649564048 316.93972142332973 L 335.35347435628216 317.32376265017126 L 334.72371207818577 317.8405951950689 L 334.20687953328815 318.4703574731653 L 333.8228383064466 319.18884807328794 L 333.5863468866359 319.9684558046083 L 333.5064935064935 320.7792207792208 L 333.5863468866359 321.5899857538333 L 333.8228383064466 322.36959348515364 L 334.2068795332881 323.08808408527625 L 334.72371207818577 323.71784636337264 L 335.35347435628216 324.2346789082703 L 336.0719649564048 324.61872013511186 L 336.8515726877252 324.8552115549225 L 337.6623376623377 324.93506493506493 L 338.47310263695016 324.8552115549225 L 339.2527103682705 324.61872013511186 L 339.97120096839313 324.2346789082703 L 340.6009632464895 323.71784636337264 L 341.1177957913872 323.08808408527625 L 341.50183701822874 322.36959348515364 L 341.7383284380394 321.5899857538333 L 341.8181818181818 320.7792207792208 Z M 341.8181818181818 279.2207792207792 L 341.7383284380394 278.4100142461667 L 341.50183701822874 277.63040651484636 L 341.1177957913872 276.91191591472375 L 340.6009632464895 276.28215363662736 L 339.97120096839313 275.7653210917297 L 339.2527103682705 275.38127986488814 L 338.47310263695016 275.1447884450775 L 337.6623376623377 275.06493506493507 L 336.8515726877252 275.1447884450775 L 336.0719649564048 275.38127986488814 L 335.35347435628216 275.7653210917297 L 334.72371207818577 276.28215363662736 L 334.20687953328815 276.91191591472375 L 333.8228383064466 277.63040651484636 L 333.5863468866359 278.4100142461667 L 333.5064935064935 279.2207792207792 L 333.5863468866359 280.0315441953917 L 333.8228383064466 280.81115192671206 L 334.2068795332881 281.5296425268347 L 334.72371207818577 282.1594048049311 L 335.35347435628216 282.67623734982874 L 336.0719649564048 283.06027857667027 L 336.8515726877252 283.296769996481 L 337.6623376623377 283.3766233766234 L 338.47310263695016 283.296769996481 L 339.2527103682705 283.06027857667027 L 339.97120096839313 282.67623734982874 L 340.6009632464895 282.1594048049311 L 341.1177957913872 281.5296425268347 L 341.50183701822874 280.81115192671206 L 341.7383284380394 280.0315441953917 L 341.8181818181818 279.2207792207792 Z M 258.7012987012987 320.7792207792208 L 258.62144532115633 319.9684558046083 L 258.3849539013456 319.18884807328794 L 258.0009126745041 318.4703574731653 L 257.48408012960647 317.8405951950689 L 256.85431785151 317.32376265017126 L 256.13582725138735 316.93972142332973 L 255.35621952006701 316.703230003519 L 254.54545454545456 316.6233766233766 L 253.73468957084208 316.703230003519 L 252.9550818395217 316.93972142332973 L 252.23659123939905 317.32376265017126 L 251.60682896130265 317.8405951950689 L 251.089996416405 318.4703574731653 L 250.7059551895635 319.18884807328794 L 250.4694637697528 319.9684558046083 L 250.3896103896104 320.7792207792208 L 250.4694637697528 321.5899857538333 L 250.7059551895635 322.36959348515364 L 251.089996416405 323.08808408527625 L 251.60682896130265 323.71784636337264 L 252.23659123939905 324.2346789082703 L 252.9550818395217 324.61872013511186 L 253.73468957084208 324.8552115549225 L 254.54545454545456 324.93506493506493 L 255.35621952006701 324.8552115549225 L 256.13582725138735 324.61872013511186 L 256.85431785151 324.2346789082703 L 257.48408012960647 323.71784636337264 L 258.0009126745041 323.08808408527625 L 258.3849539013456 322.36959348515364 L 258.62144532115633 321.5899857538333 L 258.7012987012987 320.7792207792208 Z M 258.7012987012987 279.2207792207792 L 258.62144532115633 278.4100142461667 L 258.3849539013456 277.63040651484636 L 258.0009126745041 276.91191591472375 L 257.48408012960647 276.28215363662736 L 256.85431785151 275.7653210917297 L 256.13582725138735 275.38127986488814 L 255.35621952006701 275.1447884450775 L 254.54545454545456 275.06493506493507 L 253.73468957084208 275.1447884450775 L 252.9550818395217 275.38127986488814 L 252.23659123939905 275.7653210917297 L 251.60682896130265 276.28215363662736 L 251.089996416405 276.91191591472375 L 250.7059551895635 277.63040651484636 L 250.4694637697528 278.4100142461667 L 250.3896103896104 279.2207792207792 L 250.4694637697528 280.0315441953917 L 250.7059551895635 280.81115192671206 L 251.089996416405 281.5296425268347 L 251.60682896130265 282.1594048049311 L 252.23659123939905 282.67623734982874 L 252.9550818395217 283.06027857667027 L 253.73468957084208 283.296769996481 L 254.54545454545456 283.3766233766234 L 255.35621952006701 283.296769996481 L 256.13582725138735 283.06027857667027 L 256.85431785151 282.67623734982874 L 257.48408012960647 282.1594048049311 L 258.0009126745041 281.5296425268347 L 258.3849539013456 280.81115192671206 L 258.62144532115633 280.0315441953917 L 258.7012987012987 279.2207792207792 Z M 300.2597402597403 320.7792207792208 L 300.17988687959786 319.9684558046083 L 299.94339545978715 319.18884807328794 L 299.5593542329457 318.4703574731653 L 299.042521688048 317.8405951950689 L 298.4127594099516 317.32376265017126 L 297.69426880982894 316.93972142332973 L 296.9146610785086 316.703230003519 L 296.1038961038961 316.6233766233766 L 295.2931311292836 316.703230003519 L 294.51352339796324 316.93972142332973 L 293.79503279784063 317.32376265017126 L 293.16527051974424 317.8405951950689 L 292.64843797484656 318.4703574731653 L 292.264396748005 319.18884807328794 L 292.0279053281944 319.9684558046083 L 291.94805194805195 320.7792207792208 L 292.0279053281944 321.5899857538333 L 292.264396748005 322.36959348515364 L 292.64843797484656 323.08808408527625 L 293.16527051974424 323.71784636337264 L 293.79503279784063 324.2346789082703 L 294.51352339796324 324.61872013511186 L 295.2931311292836 324.8552115549225 L 296.1038961038961 324.93506493506493 L 296.9146610785086 324.8552115549225 L 297.69426880982894 324.61872013511186 L 298.4127594099516 324.2346789082703 L 299.042521688048 323.71784636337264 L 299.5593542329457 323.08808408527625 L 299.94339545978715 322.36959348515364 L 300.17988687959786 321.5899857538333 L 300.2597402597403 320.7792207792208 Z M 300.2597402597403 279.2207792207792 L 300.17988687959786 278.4100142461667 L 299.94339545978715 277.63040651484636 L 299.5593542329457 276.91191591472375 L 299.042521688048 276.28215363662736 L 298.4127594099516 275.7653210917297 L 297.69426880982894 275.38127986488814 L 296.9146610785086 275.1447884450775 L 296.1038961038961 275.06493506493507 L 295.2931311292836 275.1447884450775 L 294.51352339796324 275.38127986488814 L 293.79503279784063 275.7653210917297 L 293.16527051974424 276.28215363662736 L 292.64843797484656 276.91191591472375 L 292.264396748005 277.63040651484636 L 292.0279053281944 278.4100142461667 L 291.94805194805195 279.2207792207792 L 292.0279053281944 280.0315441953917 L 292.264396748005 280.81115192671206 L 292.64843797484656 281.5296425268347 L 293.16527051974424 282.1594048049311 L 293.79503279784063 282.67623734982874 L 294.51352339796324 283.06027857667027 L 295.2931311292836 283.296769996481 L 296.1038961038961 283.3766233766234 L 296.9146610785086 283.296769996481 L 297.69426880982894 283.06027857667027 L 298.4127594099516 282.67623734982874 L 299.042521688048 282.1594048049311 L 299.5593542329457 281.5296425268347 L 299.94339545978715 280.81115192671206 L 300.17988687959786 280.0315441953917 L 300.2597402597403 279.2207792207792 Z M 383.3766233766234 362.3376623376623 L 383.296769996481 361.52689736304984 L 383.06027857667027 360.7472896317295 L 382.67623734982874 360.02879903160687 L 382.1594048049311 359.3990367535105 L 381.5296425268347 358.8822042086128 L 380.81115192671206 358.49816298177126 L 380.0315441953917 358.2616715619606 L 379.2207792207792 358.1818181818182 L 378.4100142461667 358.2616715619606 L 377.63040651484636 358.49816298177126 L 376.91191591472375 358.8822042086128 L 376.28215363662736 359.3990367535105 L 375.7653210917297 360.02879903160687 L 375.38127986488814 360.7472896317295 L 375.1447884450775 361.52689736304984 L 375.06493506493507 362.3376623376623 L 375.1447884450775 363.1484273122748 L 375.38127986488814 363.9280350435952 L 375.7653210917297 364.64652564371784 L 376.28215363662736 365.27628792181423 L 376.91191591472375 365.79312046671185 L 377.63040651484636 366.1771616935534 L 378.4100142461667 366.4136531133641 L 379.2207792207792 366.4935064935065 L 380.0315441953917 366.4136531133641 L 380.81115192671206 366.1771616935534 L 381.5296425268347 365.7931204667119 L 382.1594048049311 365.27628792181423 L 382.67623734982874 364.64652564371784 L 383.06027857667027 363.9280350435952 L 383.296769996481 363.1484273122748 L 383.3766233766234 362.3376623376623 Z M 383.3766233766234 237.66233766233768 L 383.296769996481 236.8515726877252 L 383.06027857667027 236.07196495640483 L 382.67623734982874 235.35347435628216 L 382.1594048049311 234.72371207818577 L 381.5296425268347 234.20687953328815 L 380.81115192671206 233.8228383064466 L 380.0315441953917 233.5863468866359 L 379.2207792207792 233.50649350649348 L 378.4100142461667 233.5863468866359 L 377.63040651484636 233.8228383064466 L 376.91191591472375 234.20687953328815 L 376.28215363662736 234.72371207818577 L 375.7653210917297 235.35347435628216 L 375.38127986488814 236.07196495640483 L 375.1447884450775 236.8515726877252 L 375.06493506493507 237.66233766233768 L 375.1447884450775 238.47310263695016 L 375.38127986488814 239.2527103682705 L 375.7653210917297 239.97120096839316 L 376.28215363662736 240.60096324648956 L 376.91191591472375 241.1177957913872 L 377.63040651484636 241.50183701822874 L 378.4100142461667 241.7383284380394 L 379.2207792207792 241.8181818181818 L 380.0315441953917 241.7383284380394 L 380.81115192671206 241.50183701822874 L 381.5296425268347 241.1177957913872 L 382.1594048049311 240.60096324648956 L 382.67623734982874 239.97120096839316 L 383.06027857667027 239.2527103682705 L 383.296769996481 238.47310263695016 L 383.3766233766234 237.66233766233768 Z M 383.3766233766234 320.7792207792208 L 383.296769996481 319.9684558046083 L 383.06027857667027 319.18884807328794 L 382.67623734982874 318.4703574731653 L 382.1594048049311 317.8405951950689 L 381.5296425268347 317.32376265017126 L 380.81115192671206 316.93972142332973 L 380.0315441953917 316.703230003519 L 379.2207792207792 316.6233766233766 L 378.4100142461667 316.703230003519 L 377.63040651484636 316.93972142332973 L 376.91191591472375 317.32376265017126 L 376.28215363662736 317.8405951950689 L 375.7653210917297 318.4703574731653 L 375.38127986488814 319.18884807328794 L 375.1447884450775 319.9684558046083 L 375.06493506493507 320.7792207792208 L 375.1447884450775 321.5899857538333 L 375.38127986488814 322.36959348515364 L 375.7653210917297 323.08808408527625 L 376.28215363662736 323.71784636337264 L 376.91191591472375 324.2346789082703 L 377.63040651484636 324.61872013511186 L 378.4100142461667 324.8552115549225 L 379.2207792207792 324.93506493506493 L 380.0315441953917 324.8552115549225 L 380.81115192671206 324.61872013511186 L 381.5296425268347 324.2346789082703 L 382.1594048049311 323.71784636337264 L 382.67623734982874 323.08808408527625 L 383.06027857667027 322.36959348515364 L 383.296769996481 321.5899857538333 L 383.3766233766234 320.7792207792208 Z M 383.3766233766234 279.2207792207792 L 383.296769996481 278.4100142461667 L 383.06027857667027 277.63040651484636 L 382.67623734982874 276.91191591472375 L 382.1594048049311 276.28215363662736 L 381.5296425268347 275.7653210917297 L 380.81115192671206 275.38127986488814 L 380.0315441953917 275.1447884450775 L 379.2207792207792 275.06493506493507 L 378.4100142461667 275.1447884450775 L 377.63040651484636 275.38127986488814 L 376.91191591472375 275.7653210917297 L 376.28215363662736 276.28215363662736 L 375.7653210917297 276.91191591472375 L 375.38127986488814 277.63040651484636 L 375.1447884450775 278.4100142461667 L 375.06493506493507 279.2207792207792 L 375.1447884450775 280.0315441953917 L 375.38127986488814 280.81115192671206 L 375.7653210917297 281.5296425268347 L 376.28215363662736 282.1594048049311 L 376.91191591472375 282.67623734982874 L 377.63040651484636 283.06027857667027 L 378.4100142461667 283.296769996481 L 379.2207792207792 283.3766233766234 L 380.0315441953917 283.296769996481 L 380.81115192671206 283.06027857667027 L 381.5296425268347 282.67623734982874 L 382.1594048049311 282.1594048049311 L 382.67623734982874 281.5296425268347 L 383.06027857667027 280.81115192671206 L 383.296769996481 280.0315441953917 L 383.3766233766234 279.2207792207792 Z M 752.2077922077922 372.72727272727275 L 752.1279388276498 371.9165077526602 L 751.8914474078391 371.1369000213399 L 751.5074061809976 370.41840942121723 L 750.9905736361 369.78864714312084 L 750.3608113580035 369.27181459822316 L 749.642320757881 368.8877733713817 L 748.8627130265605 368.651281951571 L 748.0519480519481 368.57142857142856 L 747.2411830773356 368.651281951571 L 746.4615753460153 368.8877733713817 L 745.7430847458926 369.27181459822316 L 745.1133224677963 369.78864714312084 L 744.5964899228985 370.41840942121723 L 744.212448696057 371.1369000213399 L 743.9759572762463 371.9165077526602 L 743.8961038961039 372.72727272727275 L 743.9759572762463 373.53803770188523 L 744.212448696057 374.3176454332056 L 744.5964899228985 375.0361360333282 L 745.1133224677963 375.6658983114246 L 745.7430847458926 376.1827308563223 L 746.4615753460153 376.56677208316376 L 747.2411830773356 376.80326350297446 L 748.0519480519481 376.8831168831169 L 748.8627130265605 376.80326350297446 L 749.642320757881 376.56677208316376 L 750.3608113580035 376.1827308563223 L 750.9905736361 375.6658983114246 L 751.5074061809976 375.0361360333282 L 751.8914474078391 374.3176454332056 L 752.1279388276498 373.53803770188523 L 752.2077922077922 372.72727272727275 Z M 752.2077922077922 351.94805194805195 L 752.1279388276498 351.1372869734395 L 751.8914474078391 350.3576792421191 L 751.5074061809976 349.63918864199644 L 750.9905736361 349.00942636390005 L 750.3608113580035 348.4925938190024 L 749.642320757881 348.1085525921609 L 748.8627130265605 347.8720611723502 L 748.0519480519481 347.7922077922078 L 747.2411830773356 347.8720611723502 L 746.4615753460153 348.1085525921609 L 745.7430847458926 348.4925938190024 L 745.1133224677963 349.00942636390005 L 744.5964899228985 349.63918864199644 L 744.212448696057 350.3576792421191 L 743.9759572762463 351.1372869734395 L 743.8961038961039 351.94805194805195 L 743.9759572762463 352.75881692266444 L 744.212448696057 353.5384246539848 L 744.5964899228985 354.2569152541074 L 745.1133224677963 354.88667753220386 L 745.7430847458926 355.4035100771015 L 746.4615753460153 355.787551303943 L 747.2411830773356 356.02404272375367 L 748.0519480519481 356.1038961038961 L 748.8627130265605 356.02404272375367 L 749.642320757881 355.787551303943 L 750.3608113580035 355.4035100771015 L 750.9905736361 354.88667753220386 L 751.5074061809976 354.2569152541074 L 751.8914474078391 353.5384246539848 L 752.1279388276498 352.75881692266444 L 752.2077922077922 351.94805194805195 Z M 752.2077922077922 248.05194805194805 L 752.1279388276498 247.24118307733556 L 751.8914474078391 246.4615753460152 L 751.5074061809976 245.74308474589256 L 750.9905736361 245.11332246779617 L 750.3608113580035 244.5964899228985 L 749.642320757881 244.21244869605698 L 748.8627130265605 243.9759572762463 L 748.0519480519481 243.8961038961039 L 747.2411830773356 243.9759572762463 L 746.4615753460153 244.21244869605698 L 745.7430847458926 244.5964899228985 L 745.1133224677963 245.11332246779617 L 744.5964899228985 245.74308474589256 L 744.212448696057 246.4615753460152 L 743.9759572762463 247.24118307733556 L 743.8961038961039 248.05194805194805 L 743.9759572762463 248.86271302656053 L 744.212448696057 249.6423207578809 L 744.5964899228985 250.36081135800356 L 745.1133224677963 250.99057363609995 L 745.7430847458926 251.50740618099758 L 746.4615753460153 251.8914474078391 L 747.2411830773356 252.12793882764979 L 748.0519480519481 252.2077922077922 L 748.8627130265605 252.12793882764979 L 749.642320757881 251.8914474078391 L 750.3608113580035 251.5074061809976 L 750.9905736361 250.99057363609995 L 751.5074061809976 250.36081135800356 L 751.8914474078391 249.6423207578809 L 752.1279388276498 248.86271302656053 L 752.2077922077922 248.05194805194805 Z M 752.2077922077922 227.27272727272728 L 752.1279388276498 226.46196229811477 L 751.8914474078391 225.68235456679443 L 751.5074061809976 224.9638639666718 L 750.9905736361 224.3341016885754 L 750.3608113580035 223.81726914367772 L 749.642320757881 223.43322791683622 L 748.8627130265605 223.19673649702554 L 748.0519480519481 223.11688311688312 L 747.2411830773356 223.19673649702554 L 746.4615753460153 223.43322791683622 L 745.7430847458926 223.81726914367772 L 745.1133224677963 224.3341016885754 L 744.5964899228985 224.9638639666718 L 744.212448696057 225.68235456679443 L 743.9759572762463 226.46196229811477 L 743.8961038961039 227.27272727272728 L 743.9759572762463 228.08349224733976 L 744.212448696057 228.8630999786601 L 744.5964899228985 229.58159057878277 L 745.1133224677963 230.21135285687916 L 745.7430847458926 230.7281854017768 L 746.4615753460153 231.11222662861832 L 747.2411830773356 231.34871804842902 L 748.0519480519481 231.42857142857144 L 748.8627130265605 231.34871804842902 L 749.642320757881 231.11222662861832 L 750.3608113580035 230.7281854017768 L 750.9905736361 230.21135285687916 L 751.5074061809976 229.58159057878277 L 751.8914474078391 228.8630999786601 L 752.1279388276498 228.08349224733976 L 752.2077922077922 227.27272727272728 Z M 752.2077922077922 455.8441558441558 L 752.1279388276498 455.0333908695434 L 751.8914474078391 454.253783138223 L 751.5074061809976 453.53529253810035 L 750.9905736361 452.90553026000396 L 750.3608113580035 452.38869771510633 L 749.642320757881 452.0046564882648 L 748.8627130265605 451.7681650684541 L 748.0519480519481 451.68831168831167 L 747.2411830773356 451.7681650684541 L 746.4615753460153 452.0046564882648 L 745.7430847458926 452.38869771510633 L 745.1133224677963 452.90553026000396 L 744.5964899228985 453.53529253810035 L 744.212448696057 454.253783138223 L 743.9759572762463 455.0333908695434 L 743.8961038961039 455.8441558441558 L 743.9759572762463 456.65492081876835 L 744.212448696057 457.43452855008866 L 744.5964899228985 458.1530191502113 L 745.1133224677963 458.7827814283077 L 745.7430847458926 459.2996139732054 L 746.4615753460153 459.6836552000469 L 747.2411830773356 459.9201466198576 L 748.0519480519481 460 L 748.8627130265605 459.9201466198576 L 749.642320757881 459.6836552000469 L 750.3608113580035 459.2996139732054 L 750.9905736361 458.7827814283077 L 751.5074061809976 458.1530191502113 L 751.8914474078391 457.43452855008866 L 752.1279388276498 456.65492081876835 L 752.2077922077922 455.8441558441558 Z M 752.2077922077922 435.06493506493507 L 752.1279388276498 434.2541700903226 L 751.8914474078391 433.4745623590022 L 751.5074061809976 432.75607175887956 L 750.9905736361 432.1263094807832 L 750.3608113580035 431.6094769358855 L 749.642320757881 431.225435709044 L 748.8627130265605 430.98894428923336 L 748.0519480519481 430.9090909090909 L 747.2411830773356 430.98894428923336 L 746.4615753460153 431.225435709044 L 745.7430847458926 431.6094769358855 L 745.1133224677963 432.1263094807832 L 744.5964899228985 432.75607175887956 L 744.212448696057 433.4745623590022 L 743.9759572762463 434.2541700903226 L 743.8961038961039 435.06493506493507 L 743.9759572762463 435.87570003954755 L 744.212448696057 436.6553077708679 L 744.5964899228985 437.3737983709906 L 745.1133224677963 438.0035606490869 L 745.7430847458926 438.5203931939846 L 746.4615753460153 438.90443442082614 L 747.2411830773356 439.1409258406368 L 748.0519480519481 439.22077922077926 L 748.8627130265605 439.1409258406368 L 749.642320757881 438.90443442082614 L 750.3608113580035 438.5203931939846 L 750.9905736361 438.0035606490869 L 751.5074061809976 437.3737983709906 L 751.8914474078391 436.6553077708679 L 752.1279388276498 435.87570003954755 L 752.2077922077922 435.06493506493507 Z M 752.2077922077922 414.2857142857143 L 752.1279388276498 413.4749493111018 L 751.8914474078391 412.6953415797814 L 751.5074061809976 411.9768509796588 L 750.9905736361 411.34708870156237 L 750.3608113580035 410.83025615666475 L 749.642320757881 410.4462149298232 L 748.8627130265605 410.2097235100125 L 748.0519480519481 410.12987012987014 L 747.2411830773356 410.2097235100125 L 746.4615753460153 410.4462149298232 L 745.7430847458926 410.83025615666475 L 745.1133224677963 411.34708870156237 L 744.5964899228985 411.9768509796588 L 744.212448696057 412.6953415797814 L 743.9759572762463 413.4749493111018 L 743.8961038961039 414.2857142857143 L 743.9759572762463 415.09647926032676 L 744.212448696057 415.8760869916471 L 744.5964899228985 416.5945775917698 L 745.1133224677963 417.2243398698662 L 745.7430847458926 417.7411724147638 L 746.4615753460153 418.12521364160534 L 747.2411830773356 418.36170506141605 L 748.0519480519481 418.4415584415584 L 748.8627130265605 418.36170506141605 L 749.642320757881 418.12521364160534 L 750.3608113580035 417.7411724147638 L 750.9905736361 417.2243398698662 L 751.5074061809976 416.5945775917698 L 751.8914474078391 415.8760869916471 L 752.1279388276498 415.09647926032676 L 752.2077922077922 414.2857142857143 Z M 752.2077922077922 393.5064935064935 L 752.1279388276498 392.69572853188106 L 751.8914474078391 391.91612080056063 L 751.5074061809976 391.197630200438 L 750.9905736361 390.56786792234163 L 750.3608113580035 390.05103537744395 L 749.642320757881 389.6669941506025 L 748.8627130265605 389.4305027307918 L 748.0519480519481 389.35064935064935 L 747.2411830773356 389.4305027307918 L 746.4615753460153 389.6669941506025 L 745.7430847458926 390.05103537744395 L 745.1133224677963 390.56786792234163 L 744.5964899228985 391.197630200438 L 744.212448696057 391.91612080056063 L 743.9759572762463 392.69572853188106 L 743.8961038961039 393.5064935064935 L 743.9759572762463 394.31725848110597 L 744.212448696057 395.09686621242633 L 744.5964899228985 395.815356812549 L 745.1133224677963 396.4451190906454 L 745.7430847458926 396.9619516355431 L 746.4615753460153 397.34599286238455 L 747.2411830773356 397.58248428219525 L 748.0519480519481 397.6623376623377 L 748.8627130265605 397.58248428219525 L 749.642320757881 397.34599286238455 L 750.3608113580035 396.9619516355431 L 750.9905736361 396.4451190906454 L 751.5074061809976 395.815356812549 L 751.8914474078391 395.09686621242633 L 752.1279388276498 394.31725848110597 L 752.2077922077922 393.5064935064935 Z M 752.2077922077922 206.4935064935065 L 752.1279388276498 205.68274151889403 L 751.8914474078391 204.90313378757367 L 751.5074061809976 204.184643187451 L 750.9905736361 203.5548809093546 L 750.3608113580035 203.03804836445696 L 749.642320757881 202.65400713761545 L 748.8627130265605 202.41751571780475 L 748.0519480519481 202.33766233766232 L 747.2411830773356 202.41751571780475 L 746.4615753460153 202.65400713761545 L 745.7430847458926 203.03804836445696 L 745.1133224677963 203.5548809093546 L 744.5964899228985 204.184643187451 L 744.212448696057 204.90313378757367 L 743.9759572762463 205.68274151889403 L 743.8961038961039 206.4935064935065 L 743.9759572762463 207.30427146811897 L 744.212448696057 208.08387919943934 L 744.5964899228985 208.80236979956197 L 745.1133224677963 209.43213207765837 L 745.7430847458926 209.94896462255605 L 746.4615753460153 210.33300584939755 L 747.2411830773356 210.56949726920823 L 748.0519480519481 210.64935064935065 L 748.8627130265605 210.56949726920823 L 749.642320757881 210.33300584939755 L 750.3608113580035 209.94896462255605 L 750.9905736361 209.43213207765837 L 751.5074061809976 208.80236979956197 L 751.8914474078391 208.08387919943934 L 752.1279388276498 207.30427146811897 L 752.2077922077922 206.4935064935065 Z M 752.2077922077922 185.71428571428572 L 752.1279388276498 184.90352073967324 L 751.8914474078391 184.12391300835287 L 751.5074061809976 183.4054224082302 L 750.9905736361 182.77566013013382 L 750.3608113580035 182.2588275852362 L 749.642320757881 181.87478635839466 L 748.8627130265605 181.63829493858395 L 748.0519480519481 181.55844155844156 L 747.2411830773356 181.63829493858395 L 746.4615753460153 181.87478635839466 L 745.7430847458926 182.2588275852362 L 745.1133224677963 182.77566013013382 L 744.5964899228985 183.4054224082302 L 744.212448696057 184.12391300835287 L 743.9759572762463 184.90352073967324 L 743.8961038961039 185.71428571428572 L 743.9759572762463 186.5250506888982 L 744.212448696057 187.30465842021857 L 744.5964899228985 188.0231490203412 L 745.1133224677963 188.6529112984376 L 745.7430847458926 189.16974384333525 L 746.4615753460153 189.5537850701768 L 747.2411830773356 189.79027648998746 L 748.0519480519481 189.87012987012986 L 748.8627130265605 189.79027648998746 L 749.642320757881 189.5537850701768 L 750.3608113580035 189.16974384333525 L 750.9905736361 188.6529112984376 L 751.5074061809976 188.0231490203412 L 751.8914474078391 187.30465842021857 L 752.1279388276498 186.5250506888982 L 752.2077922077922 185.71428571428572 Z M 752.2077922077922 164.93506493506493 L 752.1279388276498 164.12429996045245 L 751.8914474078391 163.3446922291321 L 751.5074061809976 162.62620162900944 L 750.9905736361 161.99643935091305 L 750.3608113580035 161.4796068060154 L 749.642320757881 161.09556557917386 L 748.8627130265605 160.8590741593632 L 748.0519480519481 160.77922077922076 L 747.2411830773356 160.8590741593632 L 746.4615753460153 161.09556557917386 L 745.7430847458926 161.4796068060154 L 745.1133224677963 161.99643935091305 L 744.5964899228985 162.62620162900944 L 744.212448696057 163.3446922291321 L 743.9759572762463 164.12429996045245 L 743.8961038961039 164.93506493506493 L 743.9759572762463 165.7458299096774 L 744.212448696057 166.52543764099778 L 744.5964899228985 167.24392824112041 L 745.1133224677963 167.8736905192168 L 745.7430847458926 168.3905230641145 L 746.4615753460153 168.774564290956 L 747.2411830773356 169.01105571076667 L 748.0519480519481 169.0909090909091 L 748.8627130265605 169.01105571076667 L 749.642320757881 168.774564290956 L 750.3608113580035 168.3905230641145 L 750.9905736361 167.8736905192168 L 751.5074061809976 167.24392824112041 L 751.8914474078391 166.52543764099778 L 752.1279388276498 165.7458299096774 L 752.2077922077922 164.93506493506493 Z M 752.2077922077922 144.15584415584416 L 752.1279388276498 143.34507918123168 L 751.8914474078391 142.5654714499113 L 751.5074061809976 141.84698084978868 L 750.9905736361 141.21721857169229 L 750.3608113580035 140.7003860267946 L 749.642320757881 140.3163447999531 L 748.8627130265605 140.07985338014242 L 748.0519480519481 140 L 747.2411830773356 140.07985338014242 L 746.4615753460153 140.3163447999531 L 745.7430847458926 140.7003860267946 L 745.1133224677963 141.21721857169229 L 744.5964899228985 141.84698084978868 L 744.212448696057 142.5654714499113 L 743.9759572762463 143.34507918123168 L 743.8961038961039 144.15584415584416 L 743.9759572762463 144.96660913045665 L 744.212448696057 145.746216861777 L 744.5964899228985 146.46470746189965 L 745.1133224677963 147.09446973999604 L 745.7430847458926 147.6113022848937 L 746.4615753460153 147.99534351173523 L 747.2411830773356 148.2318349315459 L 748.0519480519481 148.31168831168833 L 748.8627130265605 148.2318349315459 L 749.642320757881 147.99534351173523 L 750.3608113580035 147.6113022848937 L 750.9905736361 147.09446973999604 L 751.5074061809976 146.46470746189965 L 751.8914474078391 145.746216861777 L 752.1279388276498 144.96660913045665 L 752.2077922077922 144.15584415584416 Z M 752.2077922077922 331.16883116883116 L 752.1279388276498 330.3580661942187 L 751.8914474078391 329.5784584628983 L 751.5074061809976 328.8599678627757 L 750.9905736361 328.2302055846793 L 750.3608113580035 327.71337303978163 L 749.642320757881 327.3293318129401 L 748.8627130265605 327.09284039312945 L 748.0519480519481 327.012987012987 L 747.2411830773356 327.09284039312945 L 746.4615753460153 327.3293318129401 L 745.7430847458926 327.71337303978163 L 745.1133224677963 328.2302055846793 L 744.5964899228985 328.8599678627757 L 744.212448696057 329.5784584628983 L 743.9759572762463 330.3580661942187 L 743.8961038961039 331.16883116883116 L 743.9759572762463 331.97959614344364 L 744.212448696057 332.759203874764 L 744.5964899228985 333.4776944748867 L 745.1133224677963 334.10745675298307 L 745.7430847458926 334.6242892978807 L 746.4615753460153 335.0083305247222 L 747.2411830773356 335.2448219445329 L 748.0519480519481 335.32467532467535 L 748.8627130265605 335.2448219445329 L 749.642320757881 335.0083305247222 L 750.3608113580035 334.6242892978807 L 750.9905736361 334.10745675298307 L 751.5074061809976 333.4776944748867 L 751.8914474078391 332.759203874764 L 752.1279388276498 331.97959614344364 L 752.2077922077922 331.16883116883116 Z M 752.2077922077922 310.38961038961037 L 752.1279388276498 309.5788454149979 L 751.8914474078391 308.7992376836776 L 751.5074061809976 308.0807470835549 L 750.9905736361 307.4509848054585 L 750.3608113580035 306.93415226056084 L 749.642320757881 306.5501110337193 L 748.8627130265605 306.31361961390866 L 748.0519480519481 306.23376623376623 L 747.2411830773356 306.31361961390866 L 746.4615753460153 306.5501110337193 L 745.7430847458926 306.93415226056084 L 745.1133224677963 307.4509848054585 L 744.5964899228985 308.0807470835549 L 744.212448696057 308.7992376836776 L 743.9759572762463 309.5788454149979 L 743.8961038961039 310.38961038961037 L 743.9759572762463 311.20037536422285 L 744.212448696057 311.9799830955432 L 744.5964899228985 312.6984736956659 L 745.1133224677963 313.3282359737623 L 745.7430847458926 313.8450685186599 L 746.4615753460153 314.22910974550143 L 747.2411830773356 314.46560116531214 L 748.0519480519481 314.54545454545456 L 748.8627130265605 314.46560116531214 L 749.642320757881 314.22910974550143 L 750.3608113580035 313.8450685186599 L 750.9905736361 313.3282359737623 L 751.5074061809976 312.6984736956659 L 751.8914474078391 311.9799830955432 L 752.1279388276498 311.20037536422285 L 752.2077922077922 310.38961038961037 Z M 752.2077922077922 289.61038961038963 L 752.1279388276498 288.79962463577715 L 751.8914474078391 288.0200169044568 L 751.5074061809976 287.3015263043341 L 750.9905736361 286.6717640262377 L 750.3608113580035 286.1549314813401 L 749.642320757881 285.77089025449857 L 748.8627130265605 285.53439883468786 L 748.0519480519481 285.45454545454544 L 747.2411830773356 285.53439883468786 L 746.4615753460153 285.77089025449857 L 745.7430847458926 286.1549314813401 L 745.1133224677963 286.6717640262377 L 744.5964899228985 287.3015263043341 L 744.212448696057 288.0200169044568 L 743.9759572762463 288.79962463577715 L 743.8961038961039 289.61038961038963 L 743.9759572762463 290.4211545850021 L 744.212448696057 291.2007623163224 L 744.5964899228985 291.9192529164451 L 745.1133224677963 292.5490151945415 L 745.7430847458926 293.06584773943916 L 746.4615753460153 293.4498889662807 L 747.2411830773356 293.68638038609134 L 748.0519480519481 293.76623376623377 L 748.8627130265605 293.68638038609134 L 749.642320757881 293.4498889662807 L 750.3608113580035 293.06584773943916 L 750.9905736361 292.5490151945415 L 751.5074061809976 291.9192529164451 L 751.8914474078391 291.2007623163224 L 752.1279388276498 290.4211545850021 L 752.2077922077922 289.61038961038963 Z M 752.2077922077922 268.83116883116884 L 752.1279388276498 268.02040385655636 L 751.8914474078391 267.240796125236 L 751.5074061809976 266.5223055251133 L 750.9905736361 265.89254324701693 L 750.3608113580035 265.3757107021193 L 749.642320757881 264.9916694752778 L 748.8627130265605 264.7551780554671 L 748.0519480519481 264.67532467532465 L 747.2411830773356 264.7551780554671 L 746.4615753460153 264.9916694752778 L 745.7430847458926 265.3757107021193 L 745.1133224677963 265.89254324701693 L 744.5964899228985 266.5223055251133 L 744.212448696057 267.240796125236 L 743.9759572762463 268.02040385655636 L 743.8961038961039 268.83116883116884 L 743.9759572762463 269.6419338057813 L 744.212448696057 270.4215415371017 L 744.5964899228985 271.1400321372243 L 745.1133224677963 271.7697944153207 L 745.7430847458926 272.28662696021837 L 746.4615753460153 272.6706681870599 L 747.2411830773356 272.90715960687055 L 748.0519480519481 272.987012987013 L 748.8627130265605 272.90715960687055 L 749.642320757881 272.6706681870599 L 750.3608113580035 272.28662696021837 L 750.9905736361 271.7697944153207 L 751.5074061809976 271.1400321372243 L 751.8914474078391 270.4215415371017 L 752.1279388276498 269.6419338057813 L 752.2077922077922 268.83116883116884 Z M 731.4285714285713 372.72727272727275 L 731.348718048429 371.9165077526602 L 731.1122266286184 371.1369000213399 L 730.7281854017768 370.41840942121723 L 730.2113528568791 369.78864714312084 L 729.5815905787828 369.27181459822316 L 728.8630999786601 368.8877733713817 L 728.0834922473398 368.651281951571 L 727.2727272727273 368.57142857142856 L 726.4619622981147 368.651281951571 L 725.6823545667944 368.8877733713817 L 724.9638639666719 369.27181459822316 L 724.3341016885754 369.78864714312084 L 723.8172691436778 370.41840942121723 L 723.4332279168362 371.1369000213399 L 723.1967364970255 371.9165077526602 L 723.1168831168832 372.72727272727275 L 723.1967364970255 373.53803770188523 L 723.4332279168362 374.3176454332056 L 723.8172691436778 375.0361360333282 L 724.3341016885754 375.6658983114246 L 724.9638639666719 376.1827308563223 L 725.6823545667944 376.56677208316376 L 726.4619622981147 376.80326350297446 L 727.2727272727273 376.8831168831169 L 728.0834922473398 376.80326350297446 L 728.8630999786601 376.56677208316376 L 729.5815905787828 376.1827308563223 L 730.2113528568791 375.6658983114246 L 730.7281854017768 375.0361360333282 L 731.1122266286184 374.3176454332056 L 731.348718048429 373.53803770188523 L 731.4285714285713 372.72727272727275 Z M 731.4285714285713 351.94805194805195 L 731.348718048429 351.1372869734395 L 731.1122266286184 350.3576792421191 L 730.7281854017768 349.63918864199644 L 730.2113528568791 349.00942636390005 L 729.5815905787828 348.4925938190024 L 728.8630999786601 348.1085525921609 L 728.0834922473398 347.8720611723502 L 727.2727272727273 347.7922077922078 L 726.4619622981147 347.8720611723502 L 725.6823545667944 348.1085525921609 L 724.9638639666719 348.4925938190024 L 724.3341016885754 349.00942636390005 L 723.8172691436778 349.63918864199644 L 723.4332279168362 350.3576792421191 L 723.1967364970255 351.1372869734395 L 723.1168831168832 351.94805194805195 L 723.1967364970255 352.75881692266444 L 723.4332279168362 353.5384246539848 L 723.8172691436778 354.2569152541074 L 724.3341016885754 354.88667753220386 L 724.9638639666719 355.4035100771015 L 725.6823545667944 355.787551303943 L 726.4619622981147 356.02404272375367 L 727.2727272727273 356.1038961038961 L 728.0834922473398 356.02404272375367 L 728.8630999786601 355.787551303943 L 729.5815905787828 355.4035100771015 L 730.2113528568791 354.88667753220386 L 730.7281854017768 354.2569152541074 L 731.1122266286184 353.5384246539848 L 731.348718048429 352.75881692266444 L 731.4285714285713 351.94805194805195 Z M 731.4285714285713 248.05194805194805 L 731.348718048429 247.24118307733556 L 731.1122266286184 246.4615753460152 L 730.7281854017768 245.74308474589256 L 730.2113528568791 245.11332246779617 L 729.5815905787828 244.5964899228985 L 728.8630999786601 244.21244869605698 L 728.0834922473398 243.9759572762463 L 727.2727272727273 243.8961038961039 L 726.4619622981147 243.9759572762463 L 725.6823545667944 244.21244869605698 L 724.9638639666719 244.5964899228985 L 724.3341016885754 245.11332246779617 L 723.8172691436778 245.74308474589256 L 723.4332279168362 246.4615753460152 L 723.1967364970255 247.24118307733556 L 723.1168831168832 248.05194805194805 L 723.1967364970255 248.86271302656053 L 723.4332279168362 249.6423207578809 L 723.8172691436778 250.36081135800356 L 724.3341016885754 250.99057363609995 L 724.9638639666719 251.50740618099758 L 725.6823545667944 251.8914474078391 L 726.4619622981147 252.12793882764979 L 727.2727272727273 252.2077922077922 L 728.0834922473398 252.12793882764979 L 728.8630999786601 251.8914474078391 L 729.5815905787828 251.5074061809976 L 730.2113528568791 250.99057363609995 L 730.7281854017768 250.36081135800356 L 731.1122266286184 249.6423207578809 L 731.348718048429 248.86271302656053 L 731.4285714285713 248.05194805194805 Z M 731.4285714285713 227.27272727272728 L 731.348718048429 226.46196229811477 L 731.1122266286184 225.68235456679443 L 730.7281854017768 224.9638639666718 L 730.2113528568791 224.3341016885754 L 729.5815905787828 223.81726914367772 L 728.8630999786601 223.43322791683622 L 728.0834922473398 223.19673649702554 L 727.2727272727273 223.11688311688312 L 726.4619622981147 223.19673649702554 L 725.6823545667944 223.43322791683622 L 724.9638639666719 223.81726914367772 L 724.3341016885754 224.3341016885754 L 723.8172691436778 224.9638639666718 L 723.4332279168362 225.68235456679443 L 723.1967364970255 226.46196229811477 L 723.1168831168832 227.27272727272728 L 723.1967364970255 228.08349224733976 L 723.4332279168362 228.8630999786601 L 723.8172691436778 229.58159057878277 L 724.3341016885754 230.21135285687916 L 724.9638639666719 230.7281854017768 L 725.6823545667944 231.11222662861832 L 726.4619622981147 231.34871804842902 L 727.2727272727273 231.42857142857144 L 728.0834922473398 231.34871804842902 L 728.8630999786601 231.11222662861832 L 729.5815905787828 230.7281854017768 L 730.2113528568791 230.21135285687916 L 730.7281854017768 229.58159057878277 L 731.1122266286184 228.8630999786601 L 731.348718048429 228.08349224733976 L 731.4285714285713 227.27272727272728 Z M 217.14285714285714 362.3376623376623 L 217.06300376271471 361.52689736304984 L 216.82651234290404 360.7472896317295 L 216.44247111606253 360.02879903160687 L 215.92563857116488 359.3990367535105 L 215.2958762930685 358.8822042086128 L 214.57738569294582 358.49816298177126 L 213.79777796162548 358.2616715619606 L 212.98701298701297 358.1818181818182 L 212.1762480124005 358.2616715619606 L 211.39664028108015 358.49816298177126 L 210.67814968095752 358.8822042086128 L 210.0483874028611 359.3990367535105 L 209.53155485796344 360.02879903160687 L 209.14751363112194 360.7472896317295 L 208.91102221131126 361.52689736304984 L 208.83116883116884 362.3376623376623 L 208.91102221131126 363.1484273122748 L 209.14751363112194 363.9280350435952 L 209.53155485796344 364.64652564371784 L 210.0483874028611 365.27628792181423 L 210.67814968095752 365.79312046671185 L 211.39664028108015 366.1771616935534 L 212.1762480124005 366.4136531133641 L 212.98701298701297 366.4935064935065 L 213.79777796162548 366.4136531133641 L 214.57738569294582 366.1771616935534 L 215.29587629306846 365.7931204667119 L 215.92563857116488 365.27628792181423 L 216.44247111606253 364.64652564371784 L 216.82651234290404 363.9280350435952 L 217.06300376271471 363.1484273122748 L 217.14285714285714 362.3376623376623 Z M 217.14285714285714 237.66233766233768 L 217.06300376271471 236.8515726877252 L 216.82651234290404 236.07196495640483 L 216.44247111606253 235.35347435628216 L 215.92563857116488 234.72371207818577 L 215.2958762930685 234.20687953328815 L 214.57738569294582 233.8228383064466 L 213.79777796162548 233.5863468866359 L 212.98701298701297 233.50649350649348 L 212.1762480124005 233.5863468866359 L 211.39664028108015 233.8228383064466 L 210.67814968095752 234.20687953328815 L 210.0483874028611 234.72371207818577 L 209.53155485796344 235.35347435628216 L 209.14751363112194 236.07196495640483 L 208.91102221131126 236.8515726877252 L 208.83116883116884 237.66233766233768 L 208.91102221131126 238.47310263695016 L 209.14751363112194 239.2527103682705 L 209.53155485796344 239.97120096839316 L 210.0483874028611 240.60096324648956 L 210.67814968095752 241.1177957913872 L 211.39664028108015 241.50183701822874 L 212.1762480124005 241.7383284380394 L 212.98701298701297 241.8181818181818 L 213.79777796162548 241.7383284380394 L 214.57738569294582 241.50183701822874 L 215.29587629306846 241.1177957913872 L 215.92563857116488 240.60096324648956 L 216.44247111606253 239.97120096839316 L 216.82651234290404 239.2527103682705 L 217.06300376271471 238.47310263695016 L 217.14285714285714 237.66233766233768 Z M 731.4285714285713 455.8441558441558 L 731.348718048429 455.0333908695434 L 731.1122266286184 454.253783138223 L 730.7281854017768 453.53529253810035 L 730.2113528568791 452.90553026000396 L 729.5815905787828 452.38869771510633 L 728.8630999786601 452.0046564882648 L 728.0834922473398 451.7681650684541 L 727.2727272727273 451.68831168831167 L 726.4619622981147 451.7681650684541 L 725.6823545667944 452.0046564882648 L 724.9638639666719 452.38869771510633 L 724.3341016885754 452.90553026000396 L 723.8172691436778 453.53529253810035 L 723.4332279168362 454.253783138223 L 723.1967364970255 455.0333908695434 L 723.1168831168832 455.8441558441558 L 723.1967364970255 456.65492081876835 L 723.4332279168362 457.43452855008866 L 723.8172691436778 458.1530191502113 L 724.3341016885754 458.7827814283077 L 724.9638639666719 459.2996139732054 L 725.6823545667944 459.6836552000469 L 726.4619622981147 459.9201466198576 L 727.2727272727273 460 L 728.0834922473398 459.9201466198576 L 728.8630999786601 459.6836552000469 L 729.5815905787828 459.2996139732054 L 730.2113528568791 458.7827814283077 L 730.7281854017768 458.1530191502113 L 731.1122266286184 457.43452855008866 L 731.348718048429 456.65492081876835 L 731.4285714285713 455.8441558441558 Z M 731.4285714285713 435.06493506493507 L 731.348718048429 434.2541700903226 L 731.1122266286184 433.4745623590022 L 730.7281854017768 432.75607175887956 L 730.2113528568791 432.1263094807832 L 729.5815905787828 431.6094769358855 L 728.8630999786601 431.225435709044 L 728.0834922473398 430.98894428923336 L 727.2727272727273 430.9090909090909 L 726.4619622981147 430.98894428923336 L 725.6823545667944 431.225435709044 L 724.9638639666719 431.6094769358855 L 724.3341016885754 432.1263094807832 L 723.8172691436778 432.75607175887956 L 723.4332279168362 433.4745623590022 L 723.1967364970255 434.2541700903226 L 723.1168831168832 435.06493506493507 L 723.1967364970255 435.87570003954755 L 723.4332279168362 436.6553077708679 L 723.8172691436778 437.3737983709906 L 724.3341016885754 438.0035606490869 L 724.9638639666719 438.5203931939846 L 725.6823545667944 438.90443442082614 L 726.4619622981147 439.1409258406368 L 727.2727272727273 439.22077922077926 L 728.0834922473398 439.1409258406368 L 728.8630999786601 438.90443442082614 L 729.5815905787828 438.5203931939846 L 730.2113528568791 438.0035606490869 L 730.7281854017768 437.3737983709906 L 731.1122266286184 436.6553077708679 L 731.348718048429 435.87570003954755 L 731.4285714285713 435.06493506493507 Z M 731.4285714285713 414.2857142857143 L 731.348718048429 413.4749493111018 L 731.1122266286184 412.6953415797814 L 730.7281854017768 411.9768509796588 L 730.2113528568791 411.34708870156237 L 729.5815905787828 410.83025615666475 L 728.8630999786601 410.4462149298232 L 728.0834922473398 410.2097235100125 L 727.2727272727273 410.12987012987014 L 726.4619622981147 410.2097235100125 L 725.6823545667944 410.4462149298232 L 724.9638639666719 410.83025615666475 L 724.3341016885754 411.34708870156237 L 723.8172691436778 411.9768509796588 L 723.4332279168362 412.6953415797814 L 723.1967364970255 413.4749493111018 L 723.1168831168832 414.2857142857143 L 723.1967364970255 415.09647926032676 L 723.4332279168362 415.8760869916471 L 723.8172691436778 416.5945775917698 L 724.3341016885754 417.2243398698662 L 724.9638639666719 417.7411724147638 L 725.6823545667944 418.12521364160534 L 726.4619622981147 418.36170506141605 L 727.2727272727273 418.4415584415584 L 728.0834922473398 418.36170506141605 L 728.8630999786601 418.12521364160534 L 729.5815905787828 417.7411724147638 L 730.2113528568791 417.2243398698662 L 730.7281854017768 416.5945775917698 L 731.1122266286184 415.8760869916471 L 731.348718048429 415.09647926032676 L 731.4285714285713 414.2857142857143 Z M 731.4285714285713 393.5064935064935 L 731.348718048429 392.69572853188106 L 731.1122266286184 391.91612080056063 L 730.7281854017768 391.197630200438 L 730.2113528568791 390.56786792234163 L 729.5815905787828 390.05103537744395 L 728.8630999786601 389.6669941506025 L 728.0834922473398 389.4305027307918 L 727.2727272727273 389.35064935064935 L 726.4619622981147 389.4305027307918 L 725.6823545667944 389.6669941506025 L 724.9638639666719 390.05103537744395 L 724.3341016885754 390.56786792234163 L 723.8172691436778 391.197630200438 L 723.4332279168362 391.91612080056063 L 723.1967364970255 392.69572853188106 L 723.1168831168832 393.5064935064935 L 723.1967364970255 394.31725848110597 L 723.4332279168362 395.09686621242633 L 723.8172691436778 395.815356812549 L 724.3341016885754 396.4451190906454 L 724.9638639666719 396.9619516355431 L 725.6823545667944 397.34599286238455 L 726.4619622981147 397.58248428219525 L 727.2727272727273 397.6623376623377 L 728.0834922473398 397.58248428219525 L 728.8630999786601 397.34599286238455 L 729.5815905787828 396.9619516355431 L 730.2113528568791 396.4451190906454 L 730.7281854017768 395.815356812549 L 731.1122266286184 395.09686621242633 L 731.348718048429 394.31725848110597 L 731.4285714285713 393.5064935064935 Z M 731.4285714285713 206.4935064935065 L 731.348718048429 205.68274151889403 L 731.1122266286184 204.90313378757367 L 730.7281854017768 204.184643187451 L 730.2113528568791 203.5548809093546 L 729.5815905787828 203.03804836445696 L 728.8630999786601 202.65400713761545 L 728.0834922473398 202.41751571780475 L 727.2727272727273 202.33766233766232 L 726.4619622981147 202.41751571780475 L 725.6823545667944 202.65400713761545 L 724.9638639666719 203.03804836445696 L 724.3341016885754 203.5548809093546 L 723.8172691436778 204.184643187451 L 723.4332279168362 204.90313378757367 L 723.1967364970255 205.68274151889403 L 723.1168831168832 206.4935064935065 L 723.1967364970255 207.30427146811897 L 723.4332279168362 208.08387919943934 L 723.8172691436778 208.80236979956197 L 724.3341016885754 209.43213207765837 L 724.9638639666719 209.94896462255605 L 725.6823545667944 210.33300584939755 L 726.4619622981147 210.56949726920823 L 727.2727272727273 210.64935064935065 L 728.0834922473398 210.56949726920823 L 728.8630999786601 210.33300584939755 L 729.5815905787828 209.94896462255605 L 730.2113528568791 209.43213207765837 L 730.7281854017768 208.80236979956197 L 731.1122266286184 208.08387919943934 L 731.348718048429 207.30427146811897 L 731.4285714285713 206.4935064935065 Z M 731.4285714285713 185.71428571428572 L 731.348718048429 184.90352073967324 L 731.1122266286184 184.12391300835287 L 730.7281854017768 183.4054224082302 L 730.2113528568791 182.77566013013382 L 729.5815905787828 182.2588275852362 L 728.8630999786601 181.87478635839466 L 728.0834922473398 181.63829493858395 L 727.2727272727273 181.55844155844156 L 726.4619622981147 181.63829493858395 L 725.6823545667944 181.87478635839466 L 724.9638639666719 182.2588275852362 L 724.3341016885754 182.77566013013382 L 723.8172691436778 183.4054224082302 L 723.4332279168362 184.12391300835287 L 723.1967364970255 184.90352073967324 L 723.1168831168832 185.71428571428572 L 723.1967364970255 186.5250506888982 L 723.4332279168362 187.30465842021857 L 723.8172691436778 188.0231490203412 L 724.3341016885754 188.6529112984376 L 724.9638639666719 189.16974384333525 L 725.6823545667944 189.5537850701768 L 726.4619622981147 189.79027648998746 L 727.2727272727273 189.87012987012986 L 728.0834922473398 189.79027648998746 L 728.8630999786601 189.5537850701768 L 729.5815905787828 189.16974384333525 L 730.2113528568791 188.6529112984376 L 730.7281854017768 188.0231490203412 L 731.1122266286184 187.30465842021857 L 731.348718048429 186.5250506888982 L 731.4285714285713 185.71428571428572 Z M 731.4285714285713 164.93506493506493 L 731.348718048429 164.12429996045245 L 731.1122266286184 163.3446922291321 L 730.7281854017768 162.62620162900944 L 730.2113528568791 161.99643935091305 L 729.5815905787828 161.4796068060154 L 728.8630999786601 161.09556557917386 L 728.0834922473398 160.8590741593632 L 727.2727272727273 160.77922077922076 L 726.4619622981147 160.8590741593632 L 725.6823545667944 161.09556557917386 L 724.9638639666719 161.4796068060154 L 724.3341016885754 161.99643935091305 L 723.8172691436778 162.62620162900944 L 723.4332279168362 163.3446922291321 L 723.1967364970255 164.12429996045245 L 723.1168831168832 164.93506493506493 L 723.1967364970255 165.7458299096774 L 723.4332279168362 166.52543764099778 L 723.8172691436778 167.24392824112041 L 724.3341016885754 167.8736905192168 L 724.9638639666719 168.3905230641145 L 725.6823545667944 168.774564290956 L 726.4619622981147 169.01105571076667 L 727.2727272727273 169.0909090909091 L 728.0834922473398 169.01105571076667 L 728.8630999786601 168.774564290956 L 729.5815905787828 168.3905230641145 L 730.2113528568791 167.8736905192168 L 730.7281854017768 167.24392824112041 L 731.1122266286184 166.52543764099778 L 731.348718048429 165.7458299096774 L 731.4285714285713 164.93506493506493 Z M 731.4285714285713 144.15584415584416 L 731.348718048429 143.34507918123168 L 731.1122266286184 142.5654714499113 L 730.7281854017768 141.84698084978868 L 730.2113528568791 141.21721857169229 L 729.5815905787828 140.7003860267946 L 728.8630999786601 140.3163447999531 L 728.0834922473398 140.07985338014242 L 727.2727272727273 140 L 726.4619622981147 140.07985338014242 L 725.6823545667944 140.3163447999531 L 724.9638639666719 140.7003860267946 L 724.3341016885754 141.21721857169229 L 723.8172691436778 141.84698084978868 L 723.4332279168362 142.5654714499113 L 723.1967364970255 143.34507918123168 L 723.1168831168832 144.15584415584416 L 723.1967364970255 144.96660913045665 L 723.4332279168362 145.746216861777 L 723.8172691436778 146.46470746189965 L 724.3341016885754 147.09446973999604 L 724.9638639666719 147.6113022848937 L 725.6823545667944 147.99534351173523 L 726.4619622981147 148.2318349315459 L 727.2727272727273 148.31168831168833 L 728.0834922473398 148.2318349315459 L 728.8630999786601 147.99534351173523 L 729.5815905787828 147.6113022848937 L 730.2113528568791 147.09446973999604 L 730.7281854017768 146.46470746189965 L 731.1122266286184 145.746216861777 L 731.348718048429 144.96660913045665 L 731.4285714285713 144.15584415584416 Z M 731.4285714285713 310.38961038961037 L 731.348718048429 309.5788454149979 L 731.1122266286184 308.7992376836776 L 730.7281854017768 308.0807470835549 L 730.2113528568791 307.4509848054585 L 729.5815905787828 306.93415226056084 L 728.8630999786601 306.5501110337193 L 728.0834922473398 306.31361961390866 L 727.2727272727273 306.23376623376623 L 726.4619622981147 306.31361961390866 L 725.6823545667944 306.5501110337193 L 724.9638639666719 306.93415226056084 L 724.3341016885754 307.4509848054585 L 723.8172691436778 308.0807470835549 L 723.4332279168362 308.7992376836776 L 723.1967364970255 309.5788454149979 L 723.1168831168832 310.38961038961037 L 723.1967364970255 311.20037536422285 L 723.4332279168362 311.9799830955432 L 723.8172691436778 312.6984736956659 L 724.3341016885754 313.3282359737623 L 724.9638639666719 313.8450685186599 L 725.6823545667944 314.22910974550143 L 726.4619622981147 314.46560116531214 L 727.2727272727273 314.54545454545456 L 728.0834922473398 314.46560116531214 L 728.8630999786601 314.22910974550143 L 729.5815905787828 313.8450685186599 L 730.2113528568791 313.3282359737623 L 730.7281854017768 312.6984736956659 L 731.1122266286184 311.9799830955432 L 731.348718048429 311.20037536422285 L 731.4285714285713 310.38961038961037 Z M 217.14285714285714 320.7792207792208 L 217.06300376271471 319.9684558046083 L 216.82651234290404 319.18884807328794 L 216.44247111606253 318.4703574731653 L 215.92563857116488 317.8405951950689 L 215.2958762930685 317.32376265017126 L 214.57738569294582 316.93972142332973 L 213.79777796162548 316.703230003519 L 212.98701298701297 316.6233766233766 L 212.1762480124005 316.703230003519 L 211.39664028108015 316.93972142332973 L 210.67814968095752 317.32376265017126 L 210.0483874028611 317.8405951950689 L 209.53155485796344 318.4703574731653 L 209.14751363112194 319.18884807328794 L 208.91102221131126 319.9684558046083 L 208.83116883116884 320.7792207792208 L 208.91102221131126 321.5899857538333 L 209.14751363112194 322.36959348515364 L 209.53155485796344 323.08808408527625 L 210.0483874028611 323.71784636337264 L 210.67814968095752 324.2346789082703 L 211.39664028108015 324.61872013511186 L 212.1762480124005 324.8552115549225 L 212.98701298701297 324.93506493506493 L 213.79777796162548 324.8552115549225 L 214.57738569294582 324.61872013511186 L 215.29587629306846 324.2346789082703 L 215.92563857116488 323.71784636337264 L 216.44247111606253 323.08808408527625 L 216.82651234290404 322.36959348515364 L 217.06300376271471 321.5899857538333 L 217.14285714285714 320.7792207792208 Z M 731.4285714285713 331.16883116883116 L 731.348718048429 330.3580661942187 L 731.1122266286184 329.5784584628983 L 730.7281854017768 328.8599678627757 L 730.2113528568791 328.2302055846793 L 729.5815905787828 327.71337303978163 L 728.8630999786601 327.3293318129401 L 728.0834922473398 327.09284039312945 L 727.2727272727273 327.012987012987 L 726.4619622981147 327.09284039312945 L 725.6823545667944 327.3293318129401 L 724.9638639666719 327.71337303978163 L 724.3341016885754 328.2302055846793 L 723.8172691436778 328.8599678627757 L 723.4332279168362 329.5784584628983 L 723.1967364970255 330.3580661942187 L 723.1168831168832 331.16883116883116 L 723.1967364970255 331.97959614344364 L 723.4332279168362 332.759203874764 L 723.8172691436778 333.4776944748867 L 724.3341016885754 334.10745675298307 L 724.9638639666719 334.6242892978807 L 725.6823545667944 335.0083305247222 L 726.4619622981147 335.2448219445329 L 727.2727272727273 335.32467532467535 L 728.0834922473398 335.2448219445329 L 728.8630999786601 335.0083305247222 L 729.5815905787828 334.6242892978807 L 730.2113528568791 334.10745675298307 L 730.7281854017768 333.4776944748867 L 731.1122266286184 332.759203874764 L 731.348718048429 331.97959614344364 L 731.4285714285713 331.16883116883116 Z M 731.4285714285713 289.61038961038963 L 731.348718048429 288.79962463577715 L 731.1122266286184 288.0200169044568 L 730.7281854017768 287.3015263043341 L 730.2113528568791 286.6717640262377 L 729.5815905787828 286.1549314813401 L 728.8630999786601 285.77089025449857 L 728.0834922473398 285.53439883468786 L 727.2727272727273 285.45454545454544 L 726.4619622981147 285.53439883468786 L 725.6823545667944 285.77089025449857 L 724.9638639666719 286.1549314813401 L 724.3341016885754 286.6717640262377 L 723.8172691436778 287.3015263043341 L 723.4332279168362 288.0200169044568 L 723.1967364970255 288.79962463577715 L 723.1168831168832 289.61038961038963 L 723.1967364970255 290.4211545850021 L 723.4332279168362 291.2007623163224 L 723.8172691436778 291.9192529164451 L 724.3341016885754 292.5490151945415 L 724.9638639666719 293.06584773943916 L 725.6823545667944 293.4498889662807 L 726.4619622981147 293.68638038609134 L 727.2727272727273 293.76623376623377 L 728.0834922473398 293.68638038609134 L 728.8630999786601 293.4498889662807 L 729.5815905787828 293.06584773943916 L 730.2113528568791 292.5490151945415 L 730.7281854017768 291.9192529164451 L 731.1122266286184 291.2007623163224 L 731.348718048429 290.4211545850021 L 731.4285714285713 289.61038961038963 Z M 731.4285714285713 268.83116883116884 L 731.348718048429 268.02040385655636 L 731.1122266286184 267.240796125236 L 730.7281854017768 266.5223055251133 L 730.2113528568791 265.89254324701693 L 729.5815905787828 265.3757107021193 L 728.8630999786601 264.9916694752778 L 728.0834922473398 264.7551780554671 L 727.2727272727273 264.67532467532465 L 726.4619622981147 264.7551780554671 L 725.6823545667944 264.9916694752778 L 724.9638639666719 265.3757107021193 L 724.3341016885754 265.89254324701693 L 723.8172691436778 266.5223055251133 L 723.4332279168362 267.240796125236 L 723.1967364970255 268.02040385655636 L 723.1168831168832 268.83116883116884 L 723.1967364970255 269.6419338057813 L 723.4332279168362 270.4215415371017 L 723.8172691436778 271.1400321372243 L 724.3341016885754 271.7697944153207 L 724.9638639666719 272.28662696021837 L 725.6823545667944 272.6706681870599 L 726.4619622981147 272.90715960687055 L 727.2727272727273 272.987012987013 L 728.0834922473398 272.90715960687055 L 728.8630999786601 272.6706681870599 L 729.5815905787828 272.28662696021837 L 730.2113528568791 271.7697944153207 L 730.7281854017768 271.1400321372243 L 731.1122266286184 270.4215415371017 L 731.348718048429 269.6419338057813 L 731.4285714285713 268.83116883116884 Z M 217.14285714285714 279.2207792207792 L 217.06300376271471 278.4100142461667 L 216.82651234290404 277.63040651484636 L 216.44247111606253 276.91191591472375 L 215.92563857116488 276.28215363662736 L 215.2958762930685 275.7653210917297 L 214.57738569294582 275.38127986488814 L 213.79777796162548 275.1447884450775 L 212.98701298701297 275.06493506493507 L 212.1762480124005 275.1447884450775 L 211.39664028108015 275.38127986488814 L 210.67814968095752 275.7653210917297 L 210.0483874028611 276.28215363662736 L 209.53155485796344 276.91191591472375 L 209.14751363112194 277.63040651484636 L 208.91102221131126 278.4100142461667 L 208.83116883116884 279.2207792207792 L 208.91102221131126 280.0315441953917 L 209.14751363112194 280.81115192671206 L 209.53155485796344 281.5296425268347 L 210.0483874028611 282.1594048049311 L 210.67814968095752 282.67623734982874 L 211.39664028108015 283.06027857667027 L 212.1762480124005 283.296769996481 L 212.98701298701297 283.3766233766234 L 213.79777796162548 283.296769996481 L 214.57738569294582 283.06027857667027 L 215.29587629306846 282.67623734982874 L 215.92563857116488 282.1594048049311 L 216.44247111606253 281.5296425268347 L 216.82651234290404 280.81115192671206 L 217.06300376271471 280.0315441953917 L 217.14285714285714 279.2207792207792 Z M 536.6233766233767 92.20779220779221 L 536.5435232432342 91.39702723317973 L 536.3070318234236 90.61741950185936 L 535.922990596582 89.89892890173675 L 535.4061580516843 89.26916662364033 L 534.776395773588 88.75233407874268 L 534.0579051734653 88.36829285190117 L 533.278297442145 88.1318014320905 L 532.4675324675325 88.05194805194807 L 531.6567674929199 88.1318014320905 L 530.8771597615996 88.36829285190117 L 530.158669161477 88.75233407874268 L 529.5289068833806 89.26916662364033 L 529.012074338483 89.89892890173675 L 528.6280331116413 90.61741950185936 L 528.3915416918308 91.39702723317973 L 528.3116883116883 92.20779220779221 L 528.3915416918308 93.01855718240469 L 528.6280331116413 93.79816491372506 L 529.012074338483 94.51665551384767 L 529.5289068833806 95.14641779194409 L 530.158669161477 95.66325033684174 L 530.8771597615996 96.04729156368325 L 531.6567674929199 96.28378298349392 L 532.4675324675325 96.36363636363635 L 533.278297442145 96.28378298349392 L 534.0579051734653 96.04729156368325 L 534.776395773588 95.66325033684174 L 535.4061580516843 95.14641779194409 L 535.922990596582 94.51665551384767 L 536.3070318234236 93.79816491372506 L 536.5435232432342 93.01855718240469 L 536.6233766233767 92.20779220779221 Z M 536.6233766233767 61.03896103896105 L 536.5435232432342 60.22819606434854 L 536.3070318234236 59.4485883330282 L 535.922990596582 58.73009773290556 L 535.4061580516843 58.10033545480917 L 534.776395773588 57.58350290991149 L 534.0579051734653 57.199461683069984 L 533.278297442145 56.96297026325931 L 532.4675324675325 56.88311688311691 L 531.6567674929199 56.96297026325931 L 530.8771597615996 57.199461683069984 L 530.158669161477 57.58350290991149 L 529.5289068833806 58.10033545480917 L 529.012074338483 58.73009773290556 L 528.6280331116413 59.4485883330282 L 528.3915416918308 60.22819606434854 L 528.3116883116883 61.03896103896105 L 528.3915416918308 61.84972601357353 L 528.6280331116413 62.62933374489387 L 529.012074338483 63.347824345016505 L 529.5289068833806 63.97758662311293 L 530.158669161477 64.49441916801058 L 530.8771597615996 64.87846039485208 L 531.6567674929199 65.11495181466276 L 532.4675324675325 65.19480519480518 L 533.278297442145 65.11495181466276 L 534.0579051734653 64.87846039485208 L 534.776395773588 64.49441916801058 L 535.4061580516843 63.97758662311293 L 535.922990596582 63.347824345016505 L 536.3070318234236 62.62933374489387 L 536.5435232432342 61.84972601357353 L 536.6233766233767 61.03896103896105 Z M 567.7922077922078 92.20779220779221 L 567.7123544120653 91.39702723317973 L 567.4758629922546 90.61741950185936 L 567.0918217654132 89.89892890173675 L 566.5749892205155 89.26916662364033 L 565.9452269424191 88.75233407874268 L 565.2267363422965 88.36829285190117 L 564.447128610976 88.1318014320905 L 563.6363636363636 88.05194805194807 L 562.8255986617512 88.1318014320905 L 562.0459909304308 88.36829285190117 L 561.3275003303081 88.75233407874268 L 560.6977380522118 89.26916662364033 L 560.180905507314 89.89892890173675 L 559.7968642804726 90.61741950185936 L 559.5603728606619 91.39702723317973 L 559.4805194805194 92.20779220779221 L 559.5603728606619 93.01855718240469 L 559.7968642804726 93.79816491372506 L 560.180905507314 94.51665551384767 L 560.6977380522118 95.14641779194409 L 561.3275003303081 95.66325033684174 L 562.0459909304308 96.04729156368325 L 562.8255986617512 96.28378298349392 L 563.6363636363636 96.36363636363635 L 564.447128610976 96.28378298349392 L 565.2267363422965 96.04729156368325 L 565.9452269424191 95.66325033684174 L 566.5749892205155 95.14641779194409 L 567.0918217654132 94.51665551384767 L 567.4758629922546 93.79816491372506 L 567.7123544120653 93.01855718240469 L 567.7922077922078 92.20779220779221 Z M 567.7922077922078 61.03896103896105 L 567.7123544120653 60.22819606434854 L 567.4758629922546 59.4485883330282 L 567.0918217654132 58.73009773290556 L 566.5749892205155 58.10033545480917 L 565.9452269424191 57.58350290991149 L 565.2267363422965 57.199461683069984 L 564.447128610976 56.96297026325931 L 563.6363636363636 56.88311688311691 L 562.8255986617512 56.96297026325931 L 562.0459909304308 57.199461683069984 L 561.3275003303081 57.58350290991149 L 560.6977380522118 58.10033545480917 L 560.180905507314 58.73009773290556 L 559.7968642804726 59.4485883330282 L 559.5603728606619 60.22819606434854 L 559.4805194805194 61.03896103896105 L 559.5603728606619 61.84972601357353 L 559.7968642804726 62.62933374489387 L 560.180905507314 63.347824345016505 L 560.6977380522118 63.97758662311293 L 561.3275003303081 64.49441916801058 L 562.0459909304308 64.87846039485208 L 562.8255986617512 65.11495181466276 L 563.6363636363636 65.19480519480518 L 564.447128610976 65.11495181466276 L 565.2267363422965 64.87846039485208 L 565.9452269424191 64.49441916801058 L 566.5749892205155 63.97758662311293 L 567.0918217654132 63.347824345016505 L 567.4758629922546 62.62933374489387 L 567.7123544120653 61.84972601357353 L 567.7922077922078 61.03896103896105 Z M 45.71428571428572 533.7662337662338 L 45.6344323341433 532.9554687916212 L 45.397940914332594 532.1758610603009 L 45.01389968749106 531.4573704601783 L 44.49706714259344 530.8276081820819 L 43.867304864497044 530.3107756371842 L 43.14881426437444 529.9267344103428 L 42.36920653305407 529.690242990532 L 41.55844155844159 529.6103896103896 L 40.74767658382905 529.690242990532 L 39.96806885250868 529.9267344103428 L 39.24957825238607 530.3107756371842 L 38.61981597428968 530.8276081820819 L 38.102983429392054 531.4573704601783 L 37.71894220255052 532.1758610603009 L 37.48245078273982 532.9554687916212 L 37.402597402597394 533.7662337662338 L 37.48245078273982 534.5769987408462 L 37.71894220255052 535.3566064721666 L 38.102983429392054 536.0750970722893 L 38.61981597428968 536.7048593503856 L 39.24957825238607 537.2216918952834 L 39.96806885250868 537.6057331221248 L 40.74767658382905 537.8422245419355 L 41.55844155844159 537.922077922078 L 42.36920653305407 537.8422245419355 L 43.14881426437444 537.6057331221248 L 43.867304864497044 537.2216918952834 L 44.49706714259344 536.7048593503856 L 45.01389968749106 536.0750970722893 L 45.397940914332594 535.3566064721666 L 45.6344323341433 534.5769987408462 L 45.71428571428572 533.7662337662338 Z M 45.71428571428572 512.987012987013 L 45.6344323341433 512.1762480124005 L 45.397940914332594 511.3966402810802 L 45.01389968749106 510.6781496809575 L 44.49706714259344 510.04838740286107 L 43.867304864497044 509.53155485796344 L 43.14881426437444 509.1475136311219 L 42.36920653305407 508.91102221131126 L 41.55844155844159 508.83116883116884 L 40.74767658382905 508.91102221131126 L 39.96806885250868 509.1475136311219 L 39.24957825238607 509.53155485796344 L 38.61981597428968 510.04838740286107 L 38.102983429392054 510.6781496809575 L 37.71894220255052 511.3966402810802 L 37.48245078273982 512.1762480124005 L 37.402597402597394 512.987012987013 L 37.48245078273982 513.7977779616255 L 37.71894220255052 514.5773856929459 L 38.102983429392054 515.2958762930684 L 38.61981597428968 515.9256385711649 L 39.24957825238607 516.4424711160625 L 39.96806885250868 516.826512342904 L 40.74767658382905 517.0630037627147 L 41.55844155844159 517.1428571428571 L 42.36920653305407 517.0630037627147 L 43.14881426437444 516.826512342904 L 43.867304864497044 516.4424711160625 L 44.49706714259344 515.9256385711649 L 45.01389968749106 515.2958762930684 L 45.397940914332594 514.5773856929459 L 45.6344323341433 513.7977779616255 L 45.71428571428572 512.987012987013 Z M 45.71428571428572 492.2077922077922 L 45.6344323341433 491.3970272331797 L 45.397940914332594 490.61741950185933 L 45.01389968749106 489.8989289017367 L 44.49706714259344 489.26916662364033 L 43.867304864497044 488.75233407874265 L 43.14881426437444 488.3682928519012 L 42.36920653305407 488.13180143209047 L 41.55844155844159 488.0519480519481 L 40.74767658382905 488.13180143209047 L 39.96806885250868 488.3682928519012 L 39.24957825238607 488.75233407874265 L 38.61981597428968 489.26916662364033 L 38.102983429392054 489.8989289017367 L 37.71894220255052 490.61741950185933 L 37.48245078273982 491.3970272331797 L 37.402597402597394 492.2077922077922 L 37.48245078273982 493.0185571824047 L 37.71894220255052 493.79816491372503 L 38.102983429392054 494.5166555138477 L 38.61981597428968 495.1464177919441 L 39.24957825238607 495.66325033684177 L 39.96806885250868 496.04729156368325 L 40.74767658382905 496.2837829834939 L 41.55844155844159 496.3636363636364 L 42.36920653305407 496.2837829834939 L 43.14881426437444 496.04729156368325 L 43.867304864497044 495.66325033684177 L 44.49706714259344 495.1464177919441 L 45.01389968749106 494.5166555138477 L 45.397940914332594 493.79816491372503 L 45.6344323341433 493.0185571824047 L 45.71428571428572 492.2077922077922 Z M 66.49350649350646 554.5454545454545 L 66.41365311336409 553.7346895708421 L 66.17716169355339 552.9550818395217 L 65.79312046671185 552.2365912393991 L 65.27628792181423 551.6068289613027 L 64.64652564371784 551.089996416405 L 63.92803504359523 550.7059551895635 L 63.14842731227486 550.4694637697528 L 62.33766233766232 550.3896103896104 L 61.52689736304984 550.4694637697528 L 60.74728963172947 550.7059551895635 L 60.028799031606866 551.089996416405 L 59.39903675351047 551.6068289613027 L 58.88220420861285 552.2365912393991 L 58.498162981771316 552.9550818395217 L 58.261671561960554 553.7346895708421 L 58.18181818181819 554.5454545454545 L 58.261671561960554 555.356219520067 L 58.498162981771316 556.1358272513874 L 58.88220420861285 556.85431785151 L 59.39903675351047 557.4840801296064 L 60.028799031606866 558.0009126745041 L 60.74728963172947 558.3849539013456 L 61.52689736304984 558.6214453211562 L 62.33766233766232 558.7012987012987 L 63.14842731227486 558.6214453211562 L 63.92803504359523 558.3849539013456 L 64.64652564371784 558.0009126745041 L 65.27628792181423 557.4840801296064 L 65.79312046671185 556.85431785151 L 66.17716169355339 556.1358272513874 L 66.41365311336409 555.356219520067 L 66.49350649350646 554.5454545454545 Z M 66.49350649350646 533.7662337662338 L 66.41365311336409 532.9554687916212 L 66.17716169355339 532.1758610603009 L 65.79312046671185 531.4573704601783 L 65.27628792181423 530.8276081820819 L 64.64652564371784 530.3107756371842 L 63.92803504359523 529.9267344103428 L 63.14842731227486 529.690242990532 L 62.33766233766232 529.6103896103896 L 61.52689736304984 529.690242990532 L 60.74728963172947 529.9267344103428 L 60.028799031606866 530.3107756371842 L 59.39903675351047 530.8276081820819 L 58.88220420861285 531.4573704601783 L 58.498162981771316 532.1758610603009 L 58.261671561960554 532.9554687916212 L 58.18181818181819 533.7662337662338 L 58.261671561960554 534.5769987408462 L 58.498162981771316 535.3566064721666 L 58.88220420861285 536.0750970722893 L 59.39903675351047 536.7048593503856 L 60.028799031606866 537.2216918952834 L 60.74728963172947 537.6057331221248 L 61.52689736304984 537.8422245419355 L 62.33766233766232 537.922077922078 L 63.14842731227486 537.8422245419355 L 63.92803504359523 537.6057331221248 L 64.64652564371784 537.2216918952834 L 65.27628792181423 536.7048593503856 L 65.79312046671185 536.0750970722893 L 66.17716169355339 535.3566064721666 L 66.41365311336409 534.5769987408462 L 66.49350649350646 533.7662337662338 Z M 66.49350649350646 512.987012987013 L 66.41365311336409 512.1762480124005 L 66.17716169355339 511.3966402810802 L 65.79312046671185 510.6781496809575 L 65.27628792181423 510.04838740286107 L 64.64652564371784 509.53155485796344 L 63.92803504359523 509.1475136311219 L 63.14842731227486 508.91102221131126 L 62.33766233766232 508.83116883116884 L 61.52689736304984 508.91102221131126 L 60.74728963172947 509.1475136311219 L 60.028799031606866 509.53155485796344 L 59.39903675351047 510.04838740286107 L 58.88220420861285 510.6781496809575 L 58.498162981771316 511.3966402810802 L 58.261671561960554 512.1762480124005 L 58.18181818181819 512.987012987013 L 58.261671561960554 513.7977779616255 L 58.498162981771316 514.5773856929459 L 58.88220420861285 515.2958762930684 L 59.39903675351047 515.9256385711649 L 60.028799031606866 516.4424711160625 L 60.74728963172947 516.826512342904 L 61.52689736304984 517.0630037627147 L 62.33766233766232 517.1428571428571 L 63.14842731227486 517.0630037627147 L 63.92803504359523 516.826512342904 L 64.64652564371784 516.4424711160625 L 65.27628792181423 515.9256385711649 L 65.79312046671185 515.2958762930684 L 66.17716169355339 514.5773856929459 L 66.41365311336409 513.7977779616255 L 66.49350649350646 512.987012987013 Z M 66.49350649350646 492.2077922077922 L 66.41365311336409 491.3970272331797 L 66.17716169355339 490.61741950185933 L 65.79312046671185 489.8989289017367 L 65.27628792181423 489.26916662364033 L 64.64652564371784 488.75233407874265 L 63.92803504359523 488.3682928519012 L 63.14842731227486 488.13180143209047 L 62.33766233766232 488.0519480519481 L 61.52689736304984 488.13180143209047 L 60.74728963172947 488.3682928519012 L 60.028799031606866 488.75233407874265 L 59.39903675351047 489.26916662364033 L 58.88220420861285 489.8989289017367 L 58.498162981771316 490.61741950185933 L 58.261671561960554 491.3970272331797 L 58.18181818181819 492.2077922077922 L 58.261671561960554 493.0185571824047 L 58.498162981771316 493.79816491372503 L 58.88220420861285 494.5166555138477 L 59.39903675351047 495.1464177919441 L 60.028799031606866 495.66325033684177 L 60.74728963172947 496.04729156368325 L 61.52689736304984 496.2837829834939 L 62.33766233766232 496.3636363636364 L 63.14842731227486 496.2837829834939 L 63.92803504359523 496.04729156368325 L 64.64652564371784 495.66325033684177 L 65.27628792181423 495.1464177919441 L 65.79312046671185 494.5166555138477 L 66.17716169355339 493.79816491372503 L 66.41365311336409 493.0185571824047 L 66.49350649350646 492.2077922077922 Z M 45.71428571428572 107.79220779220779 L 45.6344323341433 106.98144281759531 L 45.397940914332594 106.20183508627494 L 45.01389968749106 105.48334448615233 L 44.49706714259344 104.85358220805591 L 43.867304864497044 104.33674966315826 L 43.14881426437444 103.95270843631675 L 42.36920653305407 103.71621701650608 L 41.55844155844159 103.63636363636365 L 40.74767658382905 103.71621701650608 L 39.96806885250868 103.95270843631675 L 39.24957825238607 104.33674966315826 L 38.61981597428968 104.85358220805591 L 38.102983429392054 105.48334448615233 L 37.71894220255052 106.20183508627494 L 37.48245078273982 106.98144281759531 L 37.402597402597394 107.79220779220779 L 37.48245078273982 108.6029727668203 L 37.71894220255052 109.38258049814064 L 38.102983429392054 110.10107109826328 L 38.61981597428968 110.73083337635967 L 39.24957825238607 111.24766592125735 L 39.96806885250868 111.63170714809883 L 40.74767658382905 111.8681985679095 L 41.55844155844159 111.94805194805193 L 42.36920653305407 111.8681985679095 L 43.14881426437444 111.63170714809883 L 43.867304864497044 111.24766592125735 L 44.49706714259344 110.73083337635967 L 45.01389968749106 110.10107109826328 L 45.397940914332594 109.38258049814064 L 45.6344323341433 108.6029727668203 L 45.71428571428572 107.79220779220779 Z M 45.71428571428572 87.01298701298703 L 45.6344323341433 86.20222203837452 L 45.397940914332594 85.42261430705418 L 45.01389968749106 84.70412370693154 L 44.49706714259344 84.07436142883515 L 43.867304864497044 83.55752888393747 L 43.14881426437444 83.17348765709596 L 42.36920653305407 82.93699623728529 L 41.55844155844159 82.85714285714286 L 40.74767658382905 82.93699623728529 L 39.96806885250868 83.17348765709596 L 39.24957825238607 83.55752888393747 L 38.61981597428968 84.07436142883515 L 38.102983429392054 84.70412370693154 L 37.71894220255052 85.42261430705418 L 37.48245078273982 86.20222203837452 L 37.402597402597394 87.01298701298703 L 37.48245078273982 87.82375198759951 L 37.71894220255052 88.60335971891985 L 38.102983429392054 89.32185031904248 L 38.61981597428968 89.9516125971389 L 39.24957825238607 90.46844514203656 L 39.96806885250868 90.85248636887806 L 40.74767658382905 91.08897778868874 L 41.55844155844159 91.16883116883116 L 42.36920653305407 91.08897778868874 L 43.14881426437444 90.85248636887806 L 43.867304864497044 90.46844514203656 L 44.49706714259344 89.9516125971389 L 45.01389968749106 89.32185031904248 L 45.397940914332594 88.60335971891985 L 45.6344323341433 87.82375198759951 L 45.71428571428572 87.01298701298703 Z M 45.71428571428572 66.23376623376623 L 45.6344323341433 65.42300125915375 L 45.397940914332594 64.64339352783338 L 45.01389968749106 63.924902927710775 L 44.49706714259344 63.29514064961435 L 43.867304864497044 62.7783081047167 L 43.14881426437444 62.3942668778752 L 42.36920653305407 62.15777545806452 L 41.55844155844159 62.077922077922096 L 40.74767658382905 62.15777545806452 L 39.96806885250868 62.3942668778752 L 39.24957825238607 62.7783081047167 L 38.61981597428968 63.29514064961435 L 38.102983429392054 63.924902927710775 L 37.71894220255052 64.64339352783338 L 37.48245078273982 65.42300125915375 L 37.402597402597394 66.23376623376623 L 37.48245078273982 67.04453120837874 L 37.71894220255052 67.82413893969908 L 38.102983429392054 68.54262953982172 L 38.61981597428968 69.17239181791811 L 39.24957825238607 69.68922436281579 L 39.96806885250868 70.07326558965727 L 40.74767658382905 70.30975700946794 L 41.55844155844159 70.38961038961037 L 42.36920653305407 70.30975700946794 L 43.14881426437444 70.07326558965727 L 43.867304864497044 69.68922436281579 L 44.49706714259344 69.17239181791811 L 45.01389968749106 68.54262953982172 L 45.397940914332594 67.82413893969908 L 45.6344323341433 67.04453120837874 L 45.71428571428572 66.23376623376623 Z M 66.49350649350646 107.79220779220779 L 66.41365311336409 106.98144281759531 L 66.17716169355339 106.20183508627494 L 65.79312046671185 105.48334448615233 L 65.27628792181423 104.85358220805591 L 64.64652564371784 104.33674966315826 L 63.92803504359523 103.95270843631675 L 63.14842731227486 103.71621701650608 L 62.33766233766232 103.63636363636365 L 61.52689736304984 103.71621701650608 L 60.74728963172947 103.95270843631675 L 60.028799031606866 104.33674966315826 L 59.39903675351047 104.85358220805591 L 58.88220420861285 105.48334448615233 L 58.498162981771316 106.20183508627494 L 58.261671561960554 106.98144281759531 L 58.18181818181819 107.79220779220779 L 58.261671561960554 108.6029727668203 L 58.498162981771316 109.38258049814064 L 58.88220420861285 110.10107109826328 L 59.39903675351047 110.73083337635967 L 60.028799031606866 111.24766592125735 L 60.74728963172947 111.63170714809883 L 61.52689736304984 111.8681985679095 L 62.33766233766232 111.94805194805193 L 63.14842731227486 111.8681985679095 L 63.92803504359523 111.63170714809883 L 64.64652564371784 111.24766592125735 L 65.27628792181423 110.73083337635967 L 65.79312046671185 110.10107109826328 L 66.17716169355339 109.38258049814064 L 66.41365311336409 108.6029727668203 L 66.49350649350646 107.79220779220779 Z M 66.49350649350646 87.01298701298703 L 66.41365311336409 86.20222203837452 L 66.17716169355339 85.42261430705418 L 65.79312046671185 84.70412370693154 L 65.27628792181423 84.07436142883515 L 64.64652564371784 83.55752888393747 L 63.92803504359523 83.17348765709596 L 63.14842731227486 82.93699623728529 L 62.33766233766232 82.85714285714286 L 61.52689736304984 82.93699623728529 L 60.74728963172947 83.17348765709596 L 60.028799031606866 83.55752888393747 L 59.39903675351047 84.07436142883515 L 58.88220420861285 84.70412370693154 L 58.498162981771316 85.42261430705418 L 58.261671561960554 86.20222203837452 L 58.18181818181819 87.01298701298703 L 58.261671561960554 87.82375198759951 L 58.498162981771316 88.60335971891985 L 58.88220420861285 89.32185031904248 L 59.39903675351047 89.9516125971389 L 60.028799031606866 90.46844514203656 L 60.74728963172947 90.85248636887806 L 61.52689736304984 91.08897778868874 L 62.33766233766232 91.16883116883116 L 63.14842731227486 91.08897778868874 L 63.92803504359523 90.85248636887806 L 64.64652564371784 90.46844514203656 L 65.27628792181423 89.9516125971389 L 65.79312046671185 89.32185031904248 L 66.17716169355339 88.60335971891985 L 66.41365311336409 87.82375198759951 L 66.49350649350646 87.01298701298703 Z M 66.49350649350646 66.23376623376623 L 66.41365311336409 65.42300125915375 L 66.17716169355339 64.64339352783338 L 65.79312046671185 63.924902927710775 L 65.27628792181423 63.29514064961435 L 64.64652564371784 62.7783081047167 L 63.92803504359523 62.3942668778752 L 63.14842731227486 62.15777545806452 L 62.33766233766232 62.077922077922096 L 61.52689736304984 62.15777545806452 L 60.74728963172947 62.3942668778752 L 60.028799031606866 62.7783081047167 L 59.39903675351047 63.29514064961435 L 58.88220420861285 63.924902927710775 L 58.498162981771316 64.64339352783338 L 58.261671561960554 65.42300125915375 L 58.18181818181819 66.23376623376623 L 58.261671561960554 67.04453120837874 L 58.498162981771316 67.82413893969908 L 58.88220420861285 68.54262953982172 L 59.39903675351047 69.17239181791811 L 60.028799031606866 69.68922436281579 L 60.74728963172947 70.07326558965727 L 61.52689736304984 70.30975700946794 L 62.33766233766232 70.38961038961037 L 63.14842731227486 70.30975700946794 L 63.92803504359523 70.07326558965727 L 64.64652564371784 69.68922436281579 L 65.27628792181423 69.17239181791811 L 65.79312046671185 68.54262953982172 L 66.17716169355339 67.82413893969908 L 66.41365311336409 67.04453120837874 L 66.49350649350646 66.23376623376623 Z M 66.49350649350646 45.45454545454547 L 66.41365311336409 44.64378047993296 L 66.17716169355339 43.86417274861259 L 65.79312046671185 43.14568214848998 L 65.27628792181423 42.51591987039359 L 64.64652564371784 41.99908732549591 L 63.92803504359523 41.61504609865443 L 63.14842731227486 41.37855467884373 L 62.33766233766232 41.2987012987013 L 61.52689736304984 41.37855467884373 L 60.74728963172947 41.61504609865443 L 60.028799031606866 41.99908732549591 L 59.39903675351047 42.51591987039359 L 58.88220420861285 43.14568214848998 L 58.498162981771316 43.86417274861259 L 58.261671561960554 44.64378047993296 L 58.18181818181819 45.45454545454547 L 58.261671561960554 46.26531042915795 L 58.498162981771316 47.04491816047829 L 58.88220420861285 47.763408760600925 L 59.39903675351047 48.393171038697346 L 60.028799031606866 48.910003583595 L 60.74728963172947 49.2940448104365 L 61.52689736304984 49.53053623024718 L 62.33766233766232 49.6103896103896 L 63.14842731227486 49.53053623024718 L 63.92803504359523 49.2940448104365 L 64.64652564371784 48.910003583595 L 65.27628792181423 48.393171038697346 L 65.79312046671185 47.763408760600925 L 66.17716169355339 47.04491816047829 L 66.41365311336409 46.26531042915795 L 66.49350649350646 45.45454545454547 Z M 752.2077922077922 518.1818181818182 L 752.1279388276498 517.3710532072057 L 751.8914474078391 516.5914454758854 L 751.5074061809976 515.8729548757627 L 750.9905736361 515.2431925976663 L 750.3608113580035 514.7263600527687 L 749.642320757881 514.3423188259271 L 748.8627130265605 514.1058274061164 L 748.0519480519481 514.025974025974 L 747.2411830773356 514.1058274061164 L 746.4615753460153 514.3423188259271 L 745.7430847458926 514.7263600527687 L 745.1133224677963 515.2431925976663 L 744.5964899228985 515.8729548757627 L 744.212448696057 516.5914454758854 L 743.9759572762463 517.3710532072057 L 743.8961038961039 518.1818181818182 L 743.9759572762463 518.9925831564307 L 744.212448696057 519.772190887751 L 744.5964899228985 520.4906814878736 L 745.1133224677963 521.1204437659701 L 745.7430847458926 521.6372763108677 L 746.4615753460153 522.0213175377093 L 747.2411830773356 522.25780895752 L 748.0519480519481 522.3376623376623 L 748.8627130265605 522.25780895752 L 749.642320757881 522.0213175377093 L 750.3608113580035 521.6372763108677 L 750.9905736361 521.1204437659701 L 751.5074061809976 520.4906814878736 L 751.8914474078391 519.772190887751 L 752.1279388276498 518.9925831564307 L 752.2077922077922 518.1818181818182 Z M 752.2077922077922 497.4025974025974 L 752.1279388276498 496.5918324279849 L 751.8914474078391 495.81222469666454 L 751.5074061809976 495.09373409654194 L 750.9905736361 494.46397181844554 L 750.3608113580035 493.94713927354786 L 749.642320757881 493.5630980467064 L 748.8627130265605 493.3266066268957 L 748.0519480519481 493.24675324675326 L 747.2411830773356 493.3266066268957 L 746.4615753460153 493.5630980467064 L 745.7430847458926 493.94713927354786 L 745.1133224677963 494.46397181844554 L 744.5964899228985 495.09373409654194 L 744.212448696057 495.81222469666454 L 743.9759572762463 496.5918324279849 L 743.8961038961039 497.4025974025974 L 743.9759572762463 498.21336237720993 L 744.212448696057 498.99297010853024 L 744.5964899228985 499.7114607086529 L 745.1133224677963 500.34122298674924 L 745.7430847458926 500.858055531647 L 746.4615753460153 501.24209675848846 L 747.2411830773356 501.4785881782991 L 748.0519480519481 501.55844155844153 L 748.8627130265605 501.4785881782991 L 749.642320757881 501.24209675848846 L 750.3608113580035 500.858055531647 L 750.9905736361 500.34122298674924 L 751.5074061809976 499.7114607086529 L 751.8914474078391 498.99297010853024 L 752.1279388276498 498.21336237720993 L 752.2077922077922 497.4025974025974 Z M 752.2077922077922 476.62337662337666 L 752.1279388276498 475.8126116487641 L 751.8914474078391 475.0330039174438 L 751.5074061809976 474.31451331732114 L 750.9905736361 473.68475103922475 L 750.3608113580035 473.16791849432707 L 749.642320757881 472.78387726748554 L 748.8627130265605 472.5473858476749 L 748.0519480519481 472.46753246753246 L 747.2411830773356 472.5473858476749 L 746.4615753460153 472.78387726748554 L 745.7430847458926 473.16791849432707 L 745.1133224677963 473.68475103922475 L 744.5964899228985 474.31451331732114 L 744.212448696057 475.0330039174438 L 743.9759572762463 475.8126116487641 L 743.8961038961039 476.62337662337666 L 743.9759572762463 477.4341415979891 L 744.212448696057 478.21374932930945 L 744.5964899228985 478.93223992943206 L 745.1133224677963 479.5620022075285 L 745.7430847458926 480.07883475242613 L 746.4615753460153 480.46287597926766 L 747.2411830773356 480.69936739907837 L 748.0519480519481 480.77922077922074 L 748.8627130265605 480.69936739907837 L 749.642320757881 480.46287597926766 L 750.3608113580035 480.07883475242613 L 750.9905736361 479.5620022075285 L 751.5074061809976 478.93223992943206 L 751.8914474078391 478.21374932930945 L 752.1279388276498 477.4341415979891 L 752.2077922077922 476.62337662337666 Z M 752.2077922077922 123.37662337662337 L 752.1279388276498 122.56585840201089 L 751.8914474078391 121.78625067069055 L 751.5074061809976 121.06776007056791 L 750.9905736361 120.43799779247149 L 750.3608113580035 119.92116524757384 L 749.642320757881 119.53712402073234 L 748.8627130265605 119.30063260092166 L 748.0519480519481 119.22077922077924 L 747.2411830773356 119.30063260092166 L 746.4615753460153 119.53712402073234 L 745.7430847458926 119.92116524757384 L 745.1133224677963 120.43799779247149 L 744.5964899228985 121.06776007056791 L 744.212448696057 121.78625067069055 L 743.9759572762463 122.56585840201089 L 743.8961038961039 123.37662337662337 L 743.9759572762463 124.18738835123588 L 744.212448696057 124.96699608255622 L 744.5964899228985 125.68548668267886 L 745.1133224677963 126.31524896077525 L 745.7430847458926 126.83208150567293 L 746.4615753460153 127.21612273251444 L 747.2411830773356 127.45261415232511 L 748.0519480519481 127.5324675324675 L 748.8627130265605 127.45261415232511 L 749.642320757881 127.21612273251444 L 750.3608113580035 126.83208150567293 L 750.9905736361 126.31524896077525 L 751.5074061809976 125.68548668267886 L 751.8914474078391 124.96699608255622 L 752.1279388276498 124.18738835123588 L 752.2077922077922 123.37662337662337 Z M 752.2077922077922 102.5974025974026 L 752.1279388276498 101.7866376227901 L 751.8914474078391 101.00702989146976 L 751.5074061809976 100.28853929134712 L 750.9905736361 99.65877701325073 L 750.3608113580035 99.14194446835305 L 749.642320757881 98.75790324151154 L 748.8627130265605 98.52141182170087 L 748.0519480519481 98.44155844155847 L 747.2411830773356 98.52141182170087 L 746.4615753460153 98.75790324151154 L 745.7430847458926 99.14194446835305 L 745.1133224677963 99.65877701325073 L 744.5964899228985 100.28853929134712 L 744.212448696057 101.00702989146976 L 743.9759572762463 101.7866376227901 L 743.8961038961039 102.5974025974026 L 743.9759572762463 103.40816757201509 L 744.212448696057 104.18777530333543 L 744.5964899228985 104.90626590345806 L 745.1133224677963 105.53602818155449 L 745.7430847458926 106.05286072645214 L 746.4615753460153 106.43690195329364 L 747.2411830773356 106.67339337310432 L 748.0519480519481 106.75324675324674 L 748.8627130265605 106.67339337310432 L 749.642320757881 106.43690195329364 L 750.3608113580035 106.05286072645214 L 750.9905736361 105.53602818155449 L 751.5074061809976 104.90626590345806 L 751.8914474078391 104.18777530333543 L 752.1279388276498 103.40816757201509 L 752.2077922077922 102.5974025974026 Z M 752.2077922077922 81.81818181818181 L 752.1279388276498 81.00741684356933 L 751.8914474078391 80.22780911224899 L 751.5074061809976 79.50931851212636 L 750.9905736361 78.87955623402993 L 750.3608113580035 78.36272368913228 L 749.642320757881 77.97868246229078 L 748.8627130265605 77.7421910424801 L 748.0519480519481 77.66233766233768 L 747.2411830773356 77.7421910424801 L 746.4615753460153 77.97868246229078 L 745.7430847458926 78.36272368913228 L 745.1133224677963 78.87955623402993 L 744.5964899228985 79.50931851212636 L 744.212448696057 80.22780911224899 L 743.9759572762463 81.00741684356933 L 743.8961038961039 81.81818181818181 L 743.9759572762463 82.62894679279432 L 744.212448696057 83.40855452411466 L 744.5964899228985 84.1270451242373 L 745.1133224677963 84.75680740233369 L 745.7430847458926 85.27363994723137 L 746.4615753460153 85.65768117407288 L 747.2411830773356 85.89417259388355 L 748.0519480519481 85.97402597402595 L 748.8627130265605 85.89417259388355 L 749.642320757881 85.65768117407288 L 750.3608113580035 85.27363994723137 L 750.9905736361 84.75680740233369 L 751.5074061809976 84.1270451242373 L 751.8914474078391 83.40855452411466 L 752.1279388276498 82.62894679279432 L 752.2077922077922 81.81818181818181 Z M 87.27272727272725 554.5454545454545 L 87.19287389258483 553.7346895708421 L 86.95638247277418 552.9550818395217 L 86.57234124593265 552.2365912393991 L 86.05550870103502 551.6068289613027 L 85.42574642293863 551.089996416405 L 84.70725582281597 550.7059551895635 L 83.9276480914956 550.4694637697528 L 83.11688311688312 550.3896103896104 L 82.30611814227063 550.4694637697528 L 81.52651041095027 550.7059551895635 L 80.80801981082766 551.089996416405 L 80.17825753273127 551.6068289613027 L 79.66142498783358 552.2365912393991 L 79.27738376099205 552.9550818395217 L 79.0408923411814 553.7346895708421 L 78.96103896103898 554.5454545454545 L 79.0408923411814 555.356219520067 L 79.27738376099205 556.1358272513874 L 79.66142498783358 556.85431785151 L 80.17825753273127 557.4840801296064 L 80.80801981082766 558.0009126745041 L 81.52651041095027 558.3849539013456 L 82.30611814227063 558.6214453211562 L 83.11688311688312 558.7012987012987 L 83.9276480914956 558.6214453211562 L 84.70725582281597 558.3849539013456 L 85.42574642293857 558.0009126745041 L 86.05550870103502 557.4840801296064 L 86.57234124593265 556.85431785151 L 86.95638247277418 556.1358272513874 L 87.19287389258483 555.356219520067 L 87.27272727272725 554.5454545454545 Z M 87.27272727272725 533.7662337662338 L 87.19287389258483 532.9554687916212 L 86.95638247277418 532.1758610603009 L 86.57234124593265 531.4573704601783 L 86.05550870103502 530.8276081820819 L 85.42574642293863 530.3107756371842 L 84.70725582281597 529.9267344103428 L 83.9276480914956 529.690242990532 L 83.11688311688312 529.6103896103896 L 82.30611814227063 529.690242990532 L 81.52651041095027 529.9267344103428 L 80.80801981082766 530.3107756371842 L 80.17825753273127 530.8276081820819 L 79.66142498783358 531.4573704601783 L 79.27738376099205 532.1758610603009 L 79.0408923411814 532.9554687916212 L 78.96103896103898 533.7662337662338 L 79.0408923411814 534.5769987408462 L 79.27738376099205 535.3566064721666 L 79.66142498783358 536.0750970722893 L 80.17825753273127 536.7048593503856 L 80.80801981082766 537.2216918952834 L 81.52651041095027 537.6057331221248 L 82.30611814227063 537.8422245419355 L 83.11688311688312 537.922077922078 L 83.9276480914956 537.8422245419355 L 84.70725582281597 537.6057331221248 L 85.42574642293857 537.2216918952834 L 86.05550870103502 536.7048593503856 L 86.57234124593265 536.0750970722893 L 86.95638247277418 535.3566064721666 L 87.19287389258483 534.5769987408462 L 87.27272727272725 533.7662337662338 Z M 87.27272727272725 512.987012987013 L 87.19287389258483 512.1762480124005 L 86.95638247277418 511.3966402810802 L 86.57234124593265 510.6781496809575 L 86.05550870103502 510.04838740286107 L 85.42574642293863 509.53155485796344 L 84.70725582281597 509.1475136311219 L 83.9276480914956 508.91102221131126 L 83.11688311688312 508.83116883116884 L 82.30611814227063 508.91102221131126 L 81.52651041095027 509.1475136311219 L 80.80801981082766 509.53155485796344 L 80.17825753273127 510.04838740286107 L 79.66142498783358 510.6781496809575 L 79.27738376099205 511.3966402810802 L 79.0408923411814 512.1762480124005 L 78.96103896103898 512.987012987013 L 79.0408923411814 513.7977779616255 L 79.27738376099205 514.5773856929459 L 79.66142498783358 515.2958762930684 L 80.17825753273127 515.9256385711649 L 80.80801981082766 516.4424711160625 L 81.52651041095027 516.826512342904 L 82.30611814227063 517.0630037627147 L 83.11688311688312 517.1428571428571 L 83.9276480914956 517.0630037627147 L 84.70725582281597 516.826512342904 L 85.42574642293857 516.4424711160625 L 86.05550870103502 515.9256385711649 L 86.57234124593265 515.2958762930684 L 86.95638247277418 514.5773856929459 L 87.19287389258483 513.7977779616255 L 87.27272727272725 512.987012987013 Z M 87.27272727272725 492.2077922077922 L 87.19287389258483 491.3970272331797 L 86.95638247277418 490.61741950185933 L 86.57234124593265 489.8989289017367 L 86.05550870103502 489.26916662364033 L 85.42574642293863 488.75233407874265 L 84.70725582281597 488.3682928519012 L 83.9276480914956 488.13180143209047 L 83.11688311688312 488.0519480519481 L 82.30611814227063 488.13180143209047 L 81.52651041095027 488.3682928519012 L 80.80801981082766 488.75233407874265 L 80.17825753273127 489.26916662364033 L 79.66142498783358 489.8989289017367 L 79.27738376099205 490.61741950185933 L 79.0408923411814 491.3970272331797 L 78.96103896103898 492.2077922077922 L 79.0408923411814 493.0185571824047 L 79.27738376099205 493.79816491372503 L 79.66142498783358 494.5166555138477 L 80.17825753273127 495.1464177919441 L 80.80801981082766 495.66325033684177 L 81.52651041095027 496.04729156368325 L 82.30611814227063 496.2837829834939 L 83.11688311688312 496.3636363636364 L 83.9276480914956 496.2837829834939 L 84.70725582281597 496.04729156368325 L 85.42574642293857 495.66325033684177 L 86.05550870103502 495.1464177919441 L 86.57234124593265 494.5166555138477 L 86.95638247277418 493.79816491372503 L 87.19287389258483 493.0185571824047 L 87.27272727272725 492.2077922077922 Z M 108.05194805194805 554.5454545454545 L 107.97209467180562 553.7346895708421 L 107.73560325199492 552.9550818395217 L 107.35156202515344 552.2365912393991 L 106.83472948025576 551.6068289613027 L 106.20496720215942 551.089996416405 L 105.48647660203676 550.7059551895635 L 104.70686887071639 550.4694637697528 L 103.89610389610391 550.3896103896104 L 103.08533892149143 550.4694637697528 L 102.30573119017106 550.7059551895635 L 101.58724059004845 551.089996416405 L 100.957478311952 551.6068289613027 L 100.44064576705438 552.2365912393991 L 100.05660454021285 552.9550818395217 L 99.8201131204022 553.7346895708421 L 99.74025974025977 554.5454545454545 L 99.8201131204022 555.356219520067 L 100.05660454021285 556.1358272513874 L 100.44064576705438 556.85431785151 L 100.957478311952 557.4840801296064 L 101.58724059004845 558.0009126745041 L 102.30573119017106 558.3849539013456 L 103.08533892149143 558.6214453211562 L 103.89610389610391 558.7012987012987 L 104.70686887071639 558.6214453211562 L 105.48647660203676 558.3849539013456 L 106.20496720215937 558.0009126745041 L 106.83472948025576 557.4840801296064 L 107.35156202515344 556.85431785151 L 107.73560325199492 556.1358272513874 L 107.97209467180562 555.356219520067 L 108.05194805194805 554.5454545454545 Z M 108.05194805194805 533.7662337662338 L 107.97209467180562 532.9554687916212 L 107.73560325199492 532.1758610603009 L 107.35156202515344 531.4573704601783 L 106.83472948025576 530.8276081820819 L 106.20496720215942 530.3107756371842 L 105.48647660203676 529.9267344103428 L 104.70686887071639 529.690242990532 L 103.89610389610391 529.6103896103896 L 103.08533892149143 529.690242990532 L 102.30573119017106 529.9267344103428 L 101.58724059004845 530.3107756371842 L 100.957478311952 530.8276081820819 L 100.44064576705438 531.4573704601783 L 100.05660454021285 532.1758610603009 L 99.8201131204022 532.9554687916212 L 99.74025974025977 533.7662337662338 L 99.8201131204022 534.5769987408462 L 100.05660454021285 535.3566064721666 L 100.44064576705438 536.0750970722893 L 100.957478311952 536.7048593503856 L 101.58724059004845 537.2216918952834 L 102.30573119017106 537.6057331221248 L 103.08533892149143 537.8422245419355 L 103.89610389610391 537.922077922078 L 104.70686887071639 537.8422245419355 L 105.48647660203676 537.6057331221248 L 106.20496720215937 537.2216918952834 L 106.83472948025576 536.7048593503856 L 107.35156202515344 536.0750970722893 L 107.73560325199492 535.3566064721666 L 107.97209467180562 534.5769987408462 L 108.05194805194805 533.7662337662338 Z M 108.05194805194805 512.987012987013 L 107.97209467180562 512.1762480124005 L 107.73560325199492 511.3966402810802 L 107.35156202515344 510.6781496809575 L 106.83472948025576 510.04838740286107 L 106.20496720215942 509.53155485796344 L 105.48647660203676 509.1475136311219 L 104.70686887071639 508.91102221131126 L 103.89610389610391 508.83116883116884 L 103.08533892149143 508.91102221131126 L 102.30573119017106 509.1475136311219 L 101.58724059004845 509.53155485796344 L 100.957478311952 510.04838740286107 L 100.44064576705438 510.6781496809575 L 100.05660454021285 511.3966402810802 L 99.8201131204022 512.1762480124005 L 99.74025974025977 512.987012987013 L 99.8201131204022 513.7977779616255 L 100.05660454021285 514.5773856929459 L 100.44064576705438 515.2958762930684 L 100.957478311952 515.9256385711649 L 101.58724059004845 516.4424711160625 L 102.30573119017106 516.826512342904 L 103.08533892149143 517.0630037627147 L 103.89610389610391 517.1428571428571 L 104.70686887071639 517.0630037627147 L 105.48647660203676 516.826512342904 L 106.20496720215937 516.4424711160625 L 106.83472948025576 515.9256385711649 L 107.35156202515344 515.2958762930684 L 107.73560325199492 514.5773856929459 L 107.97209467180562 513.7977779616255 L 108.05194805194805 512.987012987013 Z M 108.05194805194805 492.2077922077922 L 107.97209467180562 491.3970272331797 L 107.73560325199492 490.61741950185933 L 107.35156202515344 489.8989289017367 L 106.83472948025576 489.26916662364033 L 106.20496720215942 488.75233407874265 L 105.48647660203676 488.3682928519012 L 104.70686887071639 488.13180143209047 L 103.89610389610391 488.0519480519481 L 103.08533892149143 488.13180143209047 L 102.30573119017106 488.3682928519012 L 101.58724059004845 488.75233407874265 L 100.957478311952 489.26916662364033 L 100.44064576705438 489.8989289017367 L 100.05660454021285 490.61741950185933 L 99.8201131204022 491.3970272331797 L 99.74025974025977 492.2077922077922 L 99.8201131204022 493.0185571824047 L 100.05660454021285 493.79816491372503 L 100.44064576705438 494.5166555138477 L 100.957478311952 495.1464177919441 L 101.58724059004845 495.66325033684177 L 102.30573119017106 496.04729156368325 L 103.08533892149143 496.2837829834939 L 103.89610389610391 496.3636363636364 L 104.70686887071639 496.2837829834939 L 105.48647660203676 496.04729156368325 L 106.20496720215937 495.66325033684177 L 106.83472948025576 495.1464177919441 L 107.35156202515344 494.5166555138477 L 107.73560325199492 493.79816491372503 L 107.97209467180562 493.0185571824047 L 108.05194805194805 492.2077922077922 Z M 87.27272727272725 107.79220779220779 L 87.19287389258483 106.98144281759531 L 86.95638247277418 106.20183508627494 L 86.57234124593265 105.48334448615233 L 86.05550870103502 104.85358220805591 L 85.42574642293863 104.33674966315826 L 84.70725582281597 103.95270843631675 L 83.9276480914956 103.71621701650608 L 83.11688311688312 103.63636363636365 L 82.30611814227063 103.71621701650608 L 81.52651041095027 103.95270843631675 L 80.80801981082766 104.33674966315826 L 80.17825753273127 104.85358220805591 L 79.66142498783358 105.48334448615233 L 79.27738376099205 106.20183508627494 L 79.0408923411814 106.98144281759531 L 78.96103896103898 107.79220779220779 L 79.0408923411814 108.6029727668203 L 79.27738376099205 109.38258049814064 L 79.66142498783358 110.10107109826328 L 80.17825753273127 110.73083337635967 L 80.80801981082766 111.24766592125735 L 81.52651041095027 111.63170714809883 L 82.30611814227063 111.8681985679095 L 83.11688311688312 111.94805194805193 L 83.9276480914956 111.8681985679095 L 84.70725582281597 111.63170714809883 L 85.42574642293857 111.24766592125735 L 86.05550870103502 110.73083337635967 L 86.57234124593265 110.10107109826328 L 86.95638247277418 109.38258049814064 L 87.19287389258483 108.6029727668203 L 87.27272727272725 107.79220779220779 Z M 87.27272727272725 87.01298701298703 L 87.19287389258483 86.20222203837452 L 86.95638247277418 85.42261430705418 L 86.57234124593265 84.70412370693154 L 86.05550870103502 84.07436142883515 L 85.42574642293863 83.55752888393747 L 84.70725582281597 83.17348765709596 L 83.9276480914956 82.93699623728529 L 83.11688311688312 82.85714285714286 L 82.30611814227063 82.93699623728529 L 81.52651041095027 83.17348765709596 L 80.80801981082766 83.55752888393747 L 80.17825753273127 84.07436142883515 L 79.66142498783358 84.70412370693154 L 79.27738376099205 85.42261430705418 L 79.0408923411814 86.20222203837452 L 78.96103896103898 87.01298701298703 L 79.0408923411814 87.82375198759951 L 79.27738376099205 88.60335971891985 L 79.66142498783358 89.32185031904248 L 80.17825753273127 89.9516125971389 L 80.80801981082766 90.46844514203656 L 81.52651041095027 90.85248636887806 L 82.30611814227063 91.08897778868874 L 83.11688311688312 91.16883116883116 L 83.9276480914956 91.08897778868874 L 84.70725582281597 90.85248636887806 L 85.42574642293857 90.46844514203656 L 86.05550870103502 89.9516125971389 L 86.57234124593265 89.32185031904248 L 86.95638247277418 88.60335971891985 L 87.19287389258483 87.82375198759951 L 87.27272727272725 87.01298701298703 Z M 87.27272727272725 66.23376623376623 L 87.19287389258483 65.42300125915375 L 86.95638247277418 64.64339352783338 L 86.57234124593265 63.924902927710775 L 86.05550870103502 63.29514064961435 L 85.42574642293863 62.7783081047167 L 84.70725582281597 62.3942668778752 L 83.9276480914956 62.15777545806452 L 83.11688311688312 62.077922077922096 L 82.30611814227063 62.15777545806452 L 81.52651041095027 62.3942668778752 L 80.80801981082766 62.7783081047167 L 80.17825753273127 63.29514064961435 L 79.66142498783358 63.924902927710775 L 79.27738376099205 64.64339352783338 L 79.0408923411814 65.42300125915375 L 78.96103896103898 66.23376623376623 L 79.0408923411814 67.04453120837874 L 79.27738376099205 67.82413893969908 L 79.66142498783358 68.54262953982172 L 80.17825753273127 69.17239181791811 L 80.80801981082766 69.68922436281579 L 81.52651041095027 70.07326558965727 L 82.30611814227063 70.30975700946794 L 83.11688311688312 70.38961038961037 L 83.9276480914956 70.30975700946794 L 84.70725582281597 70.07326558965727 L 85.42574642293857 69.68922436281579 L 86.05550870103502 69.17239181791811 L 86.57234124593265 68.54262953982172 L 86.95638247277418 67.82413893969908 L 87.19287389258483 67.04453120837874 L 87.27272727272725 66.23376623376623 Z M 87.27272727272725 45.45454545454547 L 87.19287389258483 44.64378047993296 L 86.95638247277418 43.86417274861259 L 86.57234124593265 43.14568214848998 L 86.05550870103502 42.51591987039359 L 85.42574642293863 41.99908732549591 L 84.70725582281597 41.61504609865443 L 83.9276480914956 41.37855467884373 L 83.11688311688312 41.2987012987013 L 82.30611814227063 41.37855467884373 L 81.52651041095027 41.61504609865443 L 80.80801981082766 41.99908732549591 L 80.17825753273127 42.51591987039359 L 79.66142498783358 43.14568214848998 L 79.27738376099205 43.86417274861259 L 79.0408923411814 44.64378047993296 L 78.96103896103898 45.45454545454547 L 79.0408923411814 46.26531042915795 L 79.27738376099205 47.04491816047829 L 79.66142498783358 47.763408760600925 L 80.17825753273127 48.393171038697346 L 80.80801981082766 48.910003583595 L 81.52651041095027 49.2940448104365 L 82.30611814227063 49.53053623024718 L 83.11688311688312 49.6103896103896 L 83.9276480914956 49.53053623024718 L 84.70725582281597 49.2940448104365 L 85.42574642293857 48.910003583595 L 86.05550870103502 48.393171038697346 L 86.57234124593265 47.763408760600925 L 86.95638247277418 47.04491816047829 L 87.19287389258483 46.26531042915795 L 87.27272727272725 45.45454545454547 Z M 108.05194805194805 107.79220779220779 L 107.97209467180562 106.98144281759531 L 107.73560325199492 106.20183508627494 L 107.35156202515344 105.48334448615233 L 106.83472948025576 104.85358220805591 L 106.20496720215942 104.33674966315826 L 105.48647660203676 103.95270843631675 L 104.70686887071639 103.71621701650608 L 103.89610389610391 103.63636363636365 L 103.08533892149143 103.71621701650608 L 102.30573119017106 103.95270843631675 L 101.58724059004845 104.33674966315826 L 100.957478311952 104.85358220805591 L 100.44064576705438 105.48334448615233 L 100.05660454021285 106.20183508627494 L 99.8201131204022 106.98144281759531 L 99.74025974025977 107.79220779220779 L 99.8201131204022 108.6029727668203 L 100.05660454021285 109.38258049814064 L 100.44064576705438 110.10107109826328 L 100.957478311952 110.73083337635967 L 101.58724059004845 111.24766592125735 L 102.30573119017106 111.63170714809883 L 103.08533892149143 111.8681985679095 L 103.89610389610391 111.94805194805193 L 104.70686887071639 111.8681985679095 L 105.48647660203676 111.63170714809883 L 106.20496720215937 111.24766592125735 L 106.83472948025576 110.73083337635967 L 107.35156202515344 110.10107109826328 L 107.73560325199492 109.38258049814064 L 107.97209467180562 108.6029727668203 L 108.05194805194805 107.79220779220779 Z M 108.05194805194805 87.01298701298703 L 107.97209467180562 86.20222203837452 L 107.73560325199492 85.42261430705418 L 107.35156202515344 84.70412370693154 L 106.83472948025576 84.07436142883515 L 106.20496720215942 83.55752888393747 L 105.48647660203676 83.17348765709596 L 104.70686887071639 82.93699623728529 L 103.89610389610391 82.85714285714286 L 103.08533892149143 82.93699623728529 L 102.30573119017106 83.17348765709596 L 101.58724059004845 83.55752888393747 L 100.957478311952 84.07436142883515 L 100.44064576705438 84.70412370693154 L 100.05660454021285 85.42261430705418 L 99.8201131204022 86.20222203837452 L 99.74025974025977 87.01298701298703 L 99.8201131204022 87.82375198759951 L 100.05660454021285 88.60335971891985 L 100.44064576705438 89.32185031904248 L 100.957478311952 89.9516125971389 L 101.58724059004845 90.46844514203656 L 102.30573119017106 90.85248636887806 L 103.08533892149143 91.08897778868874 L 103.89610389610391 91.16883116883116 L 104.70686887071639 91.08897778868874 L 105.48647660203676 90.85248636887806 L 106.20496720215937 90.46844514203656 L 106.83472948025576 89.9516125971389 L 107.35156202515344 89.32185031904248 L 107.73560325199492 88.60335971891985 L 107.97209467180562 87.82375198759951 L 108.05194805194805 87.01298701298703 Z M 108.05194805194805 66.23376623376623 L 107.97209467180562 65.42300125915375 L 107.73560325199492 64.64339352783338 L 107.35156202515344 63.924902927710775 L 106.83472948025576 63.29514064961435 L 106.20496720215942 62.7783081047167 L 105.48647660203676 62.3942668778752 L 104.70686887071639 62.15777545806452 L 103.89610389610391 62.077922077922096 L 103.08533892149143 62.15777545806452 L 102.30573119017106 62.3942668778752 L 101.58724059004845 62.7783081047167 L 100.957478311952 63.29514064961435 L 100.44064576705438 63.924902927710775 L 100.05660454021285 64.64339352783338 L 99.8201131204022 65.42300125915375 L 99.74025974025977 66.23376623376623 L 99.8201131204022 67.04453120837874 L 100.05660454021285 67.82413893969908 L 100.44064576705438 68.54262953982172 L 100.957478311952 69.17239181791811 L 101.58724059004845 69.68922436281579 L 102.30573119017106 70.07326558965727 L 103.08533892149143 70.30975700946794 L 103.89610389610391 70.38961038961037 L 104.70686887071639 70.30975700946794 L 105.48647660203676 70.07326558965727 L 106.20496720215937 69.68922436281579 L 106.83472948025576 69.17239181791811 L 107.35156202515344 68.54262953982172 L 107.73560325199492 67.82413893969908 L 107.97209467180562 67.04453120837874 L 108.05194805194805 66.23376623376623 Z M 108.05194805194805 45.45454545454547 L 107.97209467180562 44.64378047993296 L 107.73560325199492 43.86417274861259 L 107.35156202515344 43.14568214848998 L 106.83472948025576 42.51591987039359 L 106.20496720215942 41.99908732549591 L 105.48647660203676 41.61504609865443 L 104.70686887071639 41.37855467884373 L 103.89610389610391 41.2987012987013 L 103.08533892149143 41.37855467884373 L 102.30573119017106 41.61504609865443 L 101.58724059004845 41.99908732549591 L 100.957478311952 42.51591987039359 L 100.44064576705438 43.14568214848998 L 100.05660454021285 43.86417274861259 L 99.8201131204022 44.64378047993296 L 99.74025974025977 45.45454545454547 L 99.8201131204022 46.26531042915795 L 100.05660454021285 47.04491816047829 L 100.44064576705438 47.763408760600925 L 100.957478311952 48.393171038697346 L 101.58724059004845 48.910003583595 L 102.30573119017106 49.2940448104365 L 103.08533892149143 49.53053623024718 L 103.89610389610391 49.6103896103896 L 104.70686887071639 49.53053623024718 L 105.48647660203676 49.2940448104365 L 106.20496720215937 48.910003583595 L 106.83472948025576 48.393171038697346 L 107.35156202515344 47.763408760600925 L 107.73560325199492 47.04491816047829 L 107.97209467180562 46.26531042915795 L 108.05194805194805 45.45454545454547 Z M 598.961038961039 92.20779220779221 L 598.8811855808965 91.39702723317973 L 598.6446941610859 90.61741950185936 L 598.2606529342444 89.89892890173675 L 597.7438203893466 89.26916662364033 L 597.1140581112503 88.75233407874268 L 596.3955675111276 88.36829285190117 L 595.6159597798073 88.1318014320905 L 594.8051948051948 88.05194805194807 L 593.9944298305822 88.1318014320905 L 593.2148220992619 88.36829285190117 L 592.4963314991394 88.75233407874268 L 591.8665692210429 89.26916662364033 L 591.3497366761453 89.89892890173675 L 590.9656954493038 90.61741950185936 L 590.7292040294931 91.39702723317973 L 590.6493506493507 92.20779220779221 L 590.7292040294931 93.01855718240469 L 590.9656954493038 93.79816491372506 L 591.3497366761453 94.51665551384767 L 591.8665692210429 95.14641779194409 L 592.4963314991394 95.66325033684174 L 593.2148220992619 96.04729156368325 L 593.9944298305822 96.28378298349392 L 594.8051948051948 96.36363636363635 L 595.6159597798073 96.28378298349392 L 596.3955675111276 96.04729156368325 L 597.1140581112503 95.66325033684174 L 597.7438203893466 95.14641779194409 L 598.2606529342444 94.51665551384767 L 598.6446941610859 93.79816491372506 L 598.8811855808965 93.01855718240469 L 598.961038961039 92.20779220779221 Z M 598.961038961039 61.03896103896105 L 598.8811855808965 60.22819606434854 L 598.6446941610859 59.4485883330282 L 598.2606529342444 58.73009773290556 L 597.7438203893466 58.10033545480917 L 597.1140581112503 57.58350290991149 L 596.3955675111276 57.199461683069984 L 595.6159597798073 56.96297026325931 L 594.8051948051948 56.88311688311691 L 593.9944298305822 56.96297026325931 L 593.2148220992619 57.199461683069984 L 592.4963314991394 57.58350290991149 L 591.8665692210429 58.10033545480917 L 591.3497366761453 58.73009773290556 L 590.9656954493038 59.4485883330282 L 590.7292040294931 60.22819606434854 L 590.6493506493507 61.03896103896105 L 590.7292040294931 61.84972601357353 L 590.9656954493038 62.62933374489387 L 591.3497366761453 63.347824345016505 L 591.8665692210429 63.97758662311293 L 592.4963314991394 64.49441916801058 L 593.2148220992619 64.87846039485208 L 593.9944298305822 65.11495181466276 L 594.8051948051948 65.19480519480518 L 595.6159597798073 65.11495181466276 L 596.3955675111276 64.87846039485208 L 597.1140581112503 64.49441916801058 L 597.7438203893466 63.97758662311293 L 598.2606529342444 63.347824345016505 L 598.6446941610859 62.62933374489387 L 598.8811855808965 61.84972601357353 L 598.961038961039 61.03896103896105 Z M 630.1298701298701 92.20779220779221 L 630.0500167497277 91.39702723317973 L 629.813525329917 90.61741950185936 L 629.4294841030755 89.89892890173675 L 628.9126515581779 89.26916662364033 L 628.2828892800815 88.75233407874268 L 627.5643986799588 88.36829285190117 L 626.7847909486385 88.1318014320905 L 625.974025974026 88.05194805194807 L 625.1632609994135 88.1318014320905 L 624.3836532680931 88.36829285190117 L 623.6651626679704 88.75233407874268 L 623.0354003898741 89.26916662364033 L 622.5185678449764 89.89892890173675 L 622.1345266181349 90.61741950185936 L 621.8980351983242 91.39702723317973 L 621.8181818181819 92.20779220779221 L 621.8980351983242 93.01855718240469 L 622.1345266181349 93.79816491372506 L 622.5185678449764 94.51665551384767 L 623.0354003898741 95.14641779194409 L 623.6651626679704 95.66325033684174 L 624.3836532680931 96.04729156368325 L 625.1632609994135 96.28378298349392 L 625.974025974026 96.36363636363635 L 626.7847909486385 96.28378298349392 L 627.5643986799588 96.04729156368325 L 628.2828892800815 95.66325033684174 L 628.9126515581779 95.14641779194409 L 629.4294841030755 94.51665551384767 L 629.813525329917 93.79816491372506 L 630.0500167497277 93.01855718240469 L 630.1298701298701 92.20779220779221 Z M 630.1298701298701 61.03896103896105 L 630.0500167497277 60.22819606434854 L 629.813525329917 59.4485883330282 L 629.4294841030755 58.73009773290556 L 628.9126515581779 58.10033545480917 L 628.2828892800815 57.58350290991149 L 627.5643986799588 57.199461683069984 L 626.7847909486385 56.96297026325931 L 625.974025974026 56.88311688311691 L 625.1632609994135 56.96297026325931 L 624.3836532680931 57.199461683069984 L 623.6651626679704 57.58350290991149 L 623.0354003898741 58.10033545480917 L 622.5185678449764 58.73009773290556 L 622.1345266181349 59.4485883330282 L 621.8980351983242 60.22819606434854 L 621.8181818181819 61.03896103896105 L 621.8980351983242 61.84972601357353 L 622.1345266181349 62.62933374489387 L 622.5185678449764 63.347824345016505 L 623.0354003898741 63.97758662311293 L 623.6651626679704 64.49441916801058 L 624.3836532680931 64.87846039485208 L 625.1632609994135 65.11495181466276 L 625.974025974026 65.19480519480518 L 626.7847909486385 65.11495181466276 L 627.5643986799588 64.87846039485208 L 628.2828892800815 64.49441916801058 L 628.9126515581779 63.97758662311293 L 629.4294841030755 63.347824345016505 L 629.813525329917 62.62933374489387 L 630.0500167497277 61.84972601357353 L 630.1298701298701 61.03896103896105 Z M 661.2987012987013 92.20779220779221 L 661.2188479185588 91.39702723317973 L 660.9823564987482 90.61741950185936 L 660.5983152719067 89.89892890173675 L 660.081482727009 89.26916662364033 L 659.4517204489126 88.75233407874268 L 658.73322984879 88.36829285190117 L 657.9536221174696 88.1318014320905 L 657.1428571428571 88.05194805194807 L 656.3320921682446 88.1318014320905 L 655.5524844369243 88.36829285190117 L 654.8339938368017 88.75233407874268 L 654.2042315587053 89.26916662364033 L 653.6873990138076 89.89892890173675 L 653.3033577869661 90.61741950185936 L 653.0668663671554 91.39702723317973 L 652.987012987013 92.20779220779221 L 653.0668663671554 93.01855718240469 L 653.3033577869661 93.79816491372506 L 653.6873990138076 94.51665551384767 L 654.2042315587053 95.14641779194409 L 654.8339938368017 95.66325033684174 L 655.5524844369243 96.04729156368325 L 656.3320921682446 96.28378298349392 L 657.1428571428571 96.36363636363635 L 657.9536221174696 96.28378298349392 L 658.73322984879 96.04729156368325 L 659.4517204489126 95.66325033684174 L 660.081482727009 95.14641779194409 L 660.5983152719067 94.51665551384767 L 660.9823564987482 93.79816491372506 L 661.2188479185588 93.01855718240469 L 661.2987012987013 92.20779220779221 Z M 661.2987012987013 61.03896103896105 L 661.2188479185588 60.22819606434854 L 660.9823564987482 59.4485883330282 L 660.5983152719067 58.73009773290556 L 660.081482727009 58.10033545480917 L 659.4517204489126 57.58350290991149 L 658.73322984879 57.199461683069984 L 657.9536221174696 56.96297026325931 L 657.1428571428571 56.88311688311691 L 656.3320921682446 56.96297026325931 L 655.5524844369243 57.199461683069984 L 654.8339938368017 57.58350290991149 L 654.2042315587053 58.10033545480917 L 653.6873990138076 58.73009773290556 L 653.3033577869661 59.4485883330282 L 653.0668663671554 60.22819606434854 L 652.987012987013 61.03896103896105 L 653.0668663671554 61.84972601357353 L 653.3033577869661 62.62933374489387 L 653.6873990138076 63.347824345016505 L 654.2042315587053 63.97758662311293 L 654.8339938368017 64.49441916801058 L 655.5524844369243 64.87846039485208 L 656.3320921682446 65.11495181466276 L 657.1428571428571 65.19480519480518 L 657.9536221174696 65.11495181466276 L 658.73322984879 64.87846039485208 L 659.4517204489126 64.49441916801058 L 660.081482727009 63.97758662311293 L 660.5983152719067 63.347824345016505 L 660.9823564987482 62.62933374489387 L 661.2188479185588 61.84972601357353 L 661.2987012987013 61.03896103896105 Z M 731.4285714285713 518.1818181818182 L 731.348718048429 517.3710532072057 L 731.1122266286184 516.5914454758854 L 730.7281854017768 515.8729548757627 L 730.2113528568791 515.2431925976663 L 729.5815905787828 514.7263600527687 L 728.8630999786601 514.3423188259271 L 728.0834922473398 514.1058274061164 L 727.2727272727273 514.025974025974 L 726.4619622981147 514.1058274061164 L 725.6823545667944 514.3423188259271 L 724.9638639666719 514.7263600527687 L 724.3341016885754 515.2431925976663 L 723.8172691436778 515.8729548757627 L 723.4332279168362 516.5914454758854 L 723.1967364970255 517.3710532072057 L 723.1168831168832 518.1818181818182 L 723.1967364970255 518.9925831564307 L 723.4332279168362 519.772190887751 L 723.8172691436778 520.4906814878736 L 724.3341016885754 521.1204437659701 L 724.9638639666719 521.6372763108677 L 725.6823545667944 522.0213175377093 L 726.4619622981147 522.25780895752 L 727.2727272727273 522.3376623376623 L 728.0834922473398 522.25780895752 L 728.8630999786601 522.0213175377093 L 729.5815905787828 521.6372763108677 L 730.2113528568791 521.1204437659701 L 730.7281854017768 520.4906814878736 L 731.1122266286184 519.772190887751 L 731.348718048429 518.9925831564307 L 731.4285714285713 518.1818181818182 Z M 731.4285714285713 497.4025974025974 L 731.348718048429 496.5918324279849 L 731.1122266286184 495.81222469666454 L 730.7281854017768 495.09373409654194 L 730.2113528568791 494.46397181844554 L 729.5815905787828 493.94713927354786 L 728.8630999786601 493.5630980467064 L 728.0834922473398 493.3266066268957 L 727.2727272727273 493.24675324675326 L 726.4619622981147 493.3266066268957 L 725.6823545667944 493.5630980467064 L 724.9638639666719 493.94713927354786 L 724.3341016885754 494.46397181844554 L 723.8172691436778 495.09373409654194 L 723.4332279168362 495.81222469666454 L 723.1967364970255 496.5918324279849 L 723.1168831168832 497.4025974025974 L 723.1967364970255 498.21336237720993 L 723.4332279168362 498.99297010853024 L 723.8172691436778 499.7114607086529 L 724.3341016885754 500.34122298674924 L 724.9638639666719 500.858055531647 L 725.6823545667944 501.24209675848846 L 726.4619622981147 501.4785881782991 L 727.2727272727273 501.55844155844153 L 728.0834922473398 501.4785881782991 L 728.8630999786601 501.24209675848846 L 729.5815905787828 500.858055531647 L 730.2113528568791 500.34122298674924 L 730.7281854017768 499.7114607086529 L 731.1122266286184 498.99297010853024 L 731.348718048429 498.21336237720993 L 731.4285714285713 497.4025974025974 Z M 731.4285714285713 476.62337662337666 L 731.348718048429 475.8126116487641 L 731.1122266286184 475.0330039174438 L 730.7281854017768 474.31451331732114 L 730.2113528568791 473.68475103922475 L 729.5815905787828 473.16791849432707 L 728.8630999786601 472.78387726748554 L 728.0834922473398 472.5473858476749 L 727.2727272727273 472.46753246753246 L 726.4619622981147 472.5473858476749 L 725.6823545667944 472.78387726748554 L 724.9638639666719 473.16791849432707 L 724.3341016885754 473.68475103922475 L 723.8172691436778 474.31451331732114 L 723.4332279168362 475.0330039174438 L 723.1967364970255 475.8126116487641 L 723.1168831168832 476.62337662337666 L 723.1967364970255 477.4341415979891 L 723.4332279168362 478.21374932930945 L 723.8172691436778 478.93223992943206 L 724.3341016885754 479.5620022075285 L 724.9638639666719 480.07883475242613 L 725.6823545667944 480.46287597926766 L 726.4619622981147 480.69936739907837 L 727.2727272727273 480.77922077922074 L 728.0834922473398 480.69936739907837 L 728.8630999786601 480.46287597926766 L 729.5815905787828 480.07883475242613 L 730.2113528568791 479.5620022075285 L 730.7281854017768 478.93223992943206 L 731.1122266286184 478.21374932930945 L 731.348718048429 477.4341415979891 L 731.4285714285713 476.62337662337666 Z M 731.4285714285713 123.37662337662337 L 731.348718048429 122.56585840201089 L 731.1122266286184 121.78625067069055 L 730.7281854017768 121.06776007056791 L 730.2113528568791 120.43799779247149 L 729.5815905787828 119.92116524757384 L 728.8630999786601 119.53712402073234 L 728.0834922473398 119.30063260092166 L 727.2727272727273 119.22077922077924 L 726.4619622981147 119.30063260092166 L 725.6823545667944 119.53712402073234 L 724.9638639666719 119.92116524757384 L 724.3341016885754 120.43799779247149 L 723.8172691436778 121.06776007056791 L 723.4332279168362 121.78625067069055 L 723.1967364970255 122.56585840201089 L 723.1168831168832 123.37662337662337 L 723.1967364970255 124.18738835123588 L 723.4332279168362 124.96699608255622 L 723.8172691436778 125.68548668267886 L 724.3341016885754 126.31524896077525 L 724.9638639666719 126.83208150567293 L 725.6823545667944 127.21612273251444 L 726.4619622981147 127.45261415232511 L 727.2727272727273 127.5324675324675 L 728.0834922473398 127.45261415232511 L 728.8630999786601 127.21612273251444 L 729.5815905787828 126.83208150567293 L 730.2113528568791 126.31524896077525 L 730.7281854017768 125.68548668267886 L 731.1122266286184 124.96699608255622 L 731.348718048429 124.18738835123588 L 731.4285714285713 123.37662337662337 Z M 731.4285714285713 102.5974025974026 L 731.348718048429 101.7866376227901 L 731.1122266286184 101.00702989146976 L 730.7281854017768 100.28853929134712 L 730.2113528568791 99.65877701325073 L 729.5815905787828 99.14194446835305 L 728.8630999786601 98.75790324151154 L 728.0834922473398 98.52141182170087 L 727.2727272727273 98.44155844155847 L 726.4619622981147 98.52141182170087 L 725.6823545667944 98.75790324151154 L 724.9638639666719 99.14194446835305 L 724.3341016885754 99.65877701325073 L 723.8172691436778 100.28853929134712 L 723.4332279168362 101.00702989146976 L 723.1967364970255 101.7866376227901 L 723.1168831168832 102.5974025974026 L 723.1967364970255 103.40816757201509 L 723.4332279168362 104.18777530333543 L 723.8172691436778 104.90626590345806 L 724.3341016885754 105.53602818155449 L 724.9638639666719 106.05286072645214 L 725.6823545667944 106.43690195329364 L 726.4619622981147 106.67339337310432 L 727.2727272727273 106.75324675324674 L 728.0834922473398 106.67339337310432 L 728.8630999786601 106.43690195329364 L 729.5815905787828 106.05286072645214 L 730.2113528568791 105.53602818155449 L 730.7281854017768 104.90626590345806 L 731.1122266286184 104.18777530333543 L 731.348718048429 103.40816757201509 L 731.4285714285713 102.5974025974026 Z M 731.4285714285713 81.81818181818181 L 731.348718048429 81.00741684356933 L 731.1122266286184 80.22780911224899 L 730.7281854017768 79.50931851212636 L 730.2113528568791 78.87955623402993 L 729.5815905787828 78.36272368913228 L 728.8630999786601 77.97868246229078 L 728.0834922473398 77.7421910424801 L 727.2727272727273 77.66233766233768 L 726.4619622981147 77.7421910424801 L 725.6823545667944 77.97868246229078 L 724.9638639666719 78.36272368913228 L 724.3341016885754 78.87955623402993 L 723.8172691436778 79.50931851212636 L 723.4332279168362 80.22780911224899 L 723.1967364970255 81.00741684356933 L 723.1168831168832 81.81818181818181 L 723.1967364970255 82.62894679279432 L 723.4332279168362 83.40855452411466 L 723.8172691436778 84.1270451242373 L 724.3341016885754 84.75680740233369 L 724.9638639666719 85.27363994723137 L 725.6823545667944 85.65768117407288 L 726.4619622981147 85.89417259388355 L 727.2727272727273 85.97402597402595 L 728.0834922473398 85.89417259388355 L 728.8630999786601 85.65768117407288 L 729.5815905787828 85.27363994723137 L 730.2113528568791 84.75680740233369 L 730.7281854017768 84.1270451242373 L 731.1122266286184 83.40855452411466 L 731.348718048429 82.62894679279432 L 731.4285714285713 81.81818181818181 Z" fill="rgb(200, 52, 52)" fill-rule="evenodd" fill-opacity="0.5" data-type="pcb_copper_pour" data-pcb-layer="top"/><text x="0" y="0" dx="0" dy="0" fill="#f2eda1" font-family="Arial, sans-serif" font-size="20.77922077922078" text-anchor="middle" dominant-baseline="central" transform="matrix(1,0,0,1,685.7142857142858,35.06493506493507)" class="pcb-silkscreen-text pcb-silkscreen-top" data-pcb-silkscreen-text-id="null" stroke="none" data-type="pcb_silkscreen_text" data-pcb-layer="top">UP</text><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="41.55844155844159" cy="554.5454545454545" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="41.55844155844159" cy="554.5454545454545" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="41.55844155844159" cy="533.7662337662338" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="41.55844155844159" cy="533.7662337662338" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="41.55844155844159" cy="512.987012987013" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="41.55844155844159" cy="512.987012987013" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="41.55844155844159" cy="492.2077922077922" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="41.55844155844159" cy="492.2077922077922" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="62.33766233766232" cy="554.5454545454545" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="62.33766233766232" cy="554.5454545454545" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="62.33766233766232" cy="533.7662337662338" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="62.33766233766232" cy="533.7662337662338" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="62.33766233766232" cy="512.987012987013" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="62.33766233766232" cy="512.987012987013" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="62.33766233766232" cy="492.2077922077922" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="62.33766233766232" cy="492.2077922077922" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="83.11688311688312" cy="554.5454545454545" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="83.11688311688312" cy="554.5454545454545" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="83.11688311688312" cy="533.7662337662338" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="83.11688311688312" cy="533.7662337662338" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="83.11688311688312" cy="512.987012987013" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="83.11688311688312" cy="512.987012987013" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="83.11688311688312" cy="492.2077922077922" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="83.11688311688312" cy="492.2077922077922" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="103.89610389610391" cy="554.5454545454545" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="103.89610389610391" cy="554.5454545454545" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="103.89610389610391" cy="533.7662337662338" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="103.89610389610391" cy="533.7662337662338" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="103.89610389610391" cy="512.987012987013" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="103.89610389610391" cy="512.987012987013" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="103.89610389610391" cy="492.2077922077922" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="103.89610389610391" cy="492.2077922077922" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="41.55844155844159" cy="107.79220779220779" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="41.55844155844159" cy="107.79220779220779" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="41.55844155844159" cy="87.01298701298703" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="41.55844155844159" cy="87.01298701298703" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="41.55844155844159" cy="66.23376623376623" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="41.55844155844159" cy="66.23376623376623" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="41.55844155844159" cy="45.45454545454547" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="41.55844155844159" cy="45.45454545454547" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="62.33766233766232" cy="107.79220779220779" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="62.33766233766232" cy="107.79220779220779" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="62.33766233766232" cy="87.01298701298703" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="62.33766233766232" cy="87.01298701298703" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="62.33766233766232" cy="66.23376623376623" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="62.33766233766232" cy="66.23376623376623" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="62.33766233766232" cy="45.45454545454547" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="62.33766233766232" cy="45.45454545454547" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="83.11688311688312" cy="107.79220779220779" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="83.11688311688312" cy="107.79220779220779" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="83.11688311688312" cy="87.01298701298703" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="83.11688311688312" cy="87.01298701298703" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="83.11688311688312" cy="66.23376623376623" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="83.11688311688312" cy="66.23376623376623" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="83.11688311688312" cy="45.45454545454547" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="83.11688311688312" cy="45.45454545454547" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="103.89610389610391" cy="107.79220779220779" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="103.89610389610391" cy="107.79220779220779" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="103.89610389610391" cy="87.01298701298703" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="103.89610389610391" cy="87.01298701298703" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="103.89610389610391" cy="66.23376623376623" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="103.89610389610391" cy="66.23376623376623" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="103.89610389610391" cy="45.45454545454547" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="103.89610389610391" cy="45.45454545454547" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="532.4675324675325" cy="92.20779220779221" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="532.4675324675325" cy="92.20779220779221" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="532.4675324675325" cy="61.03896103896105" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="532.4675324675325" cy="61.03896103896105" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="563.6363636363636" cy="92.20779220779221" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="563.6363636363636" cy="92.20779220779221" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="563.6363636363636" cy="61.03896103896105" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="563.6363636363636" cy="61.03896103896105" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="594.8051948051948" cy="92.20779220779221" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="594.8051948051948" cy="92.20779220779221" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="594.8051948051948" cy="61.03896103896105" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="594.8051948051948" cy="61.03896103896105" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="625.974025974026" cy="92.20779220779221" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="625.974025974026" cy="92.20779220779221" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="625.974025974026" cy="61.03896103896105" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="625.974025974026" cy="61.03896103896105" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="657.1428571428571" cy="92.20779220779221" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="657.1428571428571" cy="92.20779220779221" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="657.1428571428571" cy="61.03896103896105" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="657.1428571428571" cy="61.03896103896105" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="518.1818181818182" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="518.1818181818182" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="497.4025974025974" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="497.4025974025974" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="476.62337662337666" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="476.62337662337666" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="455.8441558441558" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="455.8441558441558" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="435.06493506493507" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="435.06493506493507" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="414.2857142857143" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="414.2857142857143" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="393.5064935064935" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="393.5064935064935" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="372.72727272727275" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="372.72727272727275" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="351.94805194805195" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="351.94805194805195" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="331.16883116883116" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="331.16883116883116" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="310.38961038961037" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="310.38961038961037" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="289.61038961038963" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="289.61038961038963" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="268.83116883116884" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="268.83116883116884" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="248.05194805194805" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="248.05194805194805" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="227.27272727272728" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="227.27272727272728" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="206.4935064935065" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="206.4935064935065" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="185.71428571428572" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="185.71428571428572" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="164.93506493506493" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="164.93506493506493" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="144.15584415584416" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="144.15584415584416" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="123.37662337662337" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="123.37662337662337" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="102.5974025974026" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="102.5974025974026" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="727.2727272727273" cy="81.81818181818181" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="727.2727272727273" cy="81.81818181818181" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="518.1818181818182" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="518.1818181818182" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="497.4025974025974" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="497.4025974025974" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="476.62337662337666" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="476.62337662337666" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="455.8441558441558" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="455.8441558441558" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="435.06493506493507" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="435.06493506493507" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="414.2857142857143" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="414.2857142857143" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="393.5064935064935" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="393.5064935064935" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="372.72727272727275" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="372.72727272727275" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="351.94805194805195" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="351.94805194805195" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="331.16883116883116" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="331.16883116883116" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="310.38961038961037" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="310.38961038961037" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="289.61038961038963" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="289.61038961038963" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="268.83116883116884" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="268.83116883116884" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="248.05194805194805" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="248.05194805194805" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="227.27272727272728" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="227.27272727272728" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="206.4935064935065" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="206.4935064935065" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="185.71428571428572" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="185.71428571428572" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="164.93506493506493" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="164.93506493506493" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="144.15584415584416" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="144.15584415584416" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="123.37662337662337" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="123.37662337662337" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="102.5974025974026" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="102.5974025974026" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="748.0519480519481" cy="81.81818181818181" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="748.0519480519481" cy="81.81818181818181" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="212.98701298701297" cy="362.3376623376623" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="212.98701298701297" cy="362.3376623376623" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="212.98701298701297" cy="320.7792207792208" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="212.98701298701297" cy="320.7792207792208" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="212.98701298701297" cy="279.2207792207792" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="212.98701298701297" cy="279.2207792207792" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="212.98701298701297" cy="237.66233766233768" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="212.98701298701297" cy="237.66233766233768" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="254.54545454545456" cy="362.3376623376623" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="254.54545454545456" cy="362.3376623376623" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="254.54545454545456" cy="320.7792207792208" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="254.54545454545456" cy="320.7792207792208" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="254.54545454545456" cy="279.2207792207792" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="254.54545454545456" cy="279.2207792207792" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="254.54545454545456" cy="237.66233766233768" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="254.54545454545456" cy="237.66233766233768" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="296.1038961038961" cy="362.3376623376623" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="296.1038961038961" cy="362.3376623376623" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="296.1038961038961" cy="320.7792207792208" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="296.1038961038961" cy="320.7792207792208" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="296.1038961038961" cy="279.2207792207792" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="296.1038961038961" cy="279.2207792207792" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="296.1038961038961" cy="237.66233766233768" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="296.1038961038961" cy="237.66233766233768" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="337.6623376623377" cy="362.3376623376623" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="337.6623376623377" cy="362.3376623376623" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="337.6623376623377" cy="320.7792207792208" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="337.6623376623377" cy="320.7792207792208" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="337.6623376623377" cy="279.2207792207792" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="337.6623376623377" cy="279.2207792207792" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="337.6623376623377" cy="237.66233766233768" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="337.6623376623377" cy="237.66233766233768" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="379.2207792207792" cy="362.3376623376623" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="379.2207792207792" cy="362.3376623376623" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="379.2207792207792" cy="320.7792207792208" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="379.2207792207792" cy="320.7792207792208" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="379.2207792207792" cy="279.2207792207792" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="379.2207792207792" cy="279.2207792207792" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><g data-type="pcb_via" data-pcb-layer="through"><circle class="pcb-hole-outer" fill="rgb(200, 52, 52)" cx="379.2207792207792" cy="237.66233766233768" r="2.077922077922078" data-type="pcb_via" data-pcb-layer="top"/><circle class="pcb-hole-inner" fill="#FF26E2" cx="379.2207792207792" cy="237.66233766233768" r="1.038961038961039" data-type="pcb_via" data-pcb-layer="drill"/></g><circle class="pcb-hole" cx="763.6363636363636" cy="40.25974025974028" r="11.428571428571429" fill="#FF26E2" data-type="pcb_hole" data-pcb-layer="drill"/><circle class="pcb-hole" cx="722.077922077922" cy="40.25974025974028" r="11.428571428571429" fill="#FF26E2" data-type="pcb_hole" data-pcb-layer="drill"/><circle class="pcb-hole" cx="763.6363636363636" cy="559.7402597402597" r="11.428571428571429" fill="#FF26E2" data-type="pcb_hole" data-pcb-layer="drill"/><circle class="pcb-hole" cx="36.363636363636374" cy="559.7402597402597" r="11.428571428571429" fill="#FF26E2" data-type="pcb_hole" data-pcb-layer="drill"/><circle class="pcb-hole" cx="36.363636363636374" cy="40.25974025974028" r="11.428571428571429" fill="#FF26E2" data-type="pcb_hole" data-pcb-layer="drill"/><g class="pcb-note-dimension" data-type="pcb_note_dimension" data-pcb-note-dimension-id="pcb_note_dimension_0" data-pcb-layer="overlay"><path d="M 10.389610389610368 -11.688311688311671 L 10.389610389610368 -22.077922077922096" stroke="rgb(89, 148, 220)" fill="none" stroke-width="2.077922077922078" stroke-linecap="round" class="pcb-note-dimension-extension"/><path d="M 789.6103896103896 -11.688311688311671 L 789.6103896103896 -22.077922077922096" stroke="rgb(89, 148, 220)" fill="none" stroke-width="2.077922077922078" stroke-linecap="round" class="pcb-note-dimension-extension"/><path d="M 20.779220779220793 -11.688311688311671 L 779.2207792207791 -11.688311688311671" stroke="rgb(89, 148, 220)" fill="none" stroke-width="2.077922077922078" stroke-linecap="round" class="pcb-note-dimension-line"/><path d="M 10.389610389610368 -11.688311688311671 L 20.779220779220793 -16.883116883116884 L 20.779220779220793 -6.493506493506516 Z" fill="rgb(89, 148, 220)" class="pcb-note-dimension-arrow"/><path d="M 789.6103896103896 -11.688311688311671 L 779.2207792207791 -16.883116883116884 L 779.2207792207791 -6.493506493506516 Z" fill="rgb(89, 148, 220)" class="pcb-note-dimension-arrow"/><text x="400" y="-27.272727272727252" fill="rgb(89, 148, 220)" font-size="10.38961038961039" font-family="Arial, sans-serif" text-anchor="middle" dominant-baseline="central" class="pcb-note-dimension-text" transform="rotate(0 400 -27.272727272727252)">75mm</text></g><g class="pcb-note-dimension" data-type="pcb_note_dimension" data-pcb-note-dimension-id="pcb_note_dimension_1" data-pcb-layer="overlay"><path d="M 815.5844155844156 585.7142857142858 L 805.1948051948052 585.7142857142858" stroke="rgb(89, 148, 220)" fill="none" stroke-width="2.077922077922078" stroke-linecap="round" class="pcb-note-dimension-extension"/><path d="M 815.5844155844156 14.285714285714278 L 805.1948051948052 14.285714285714278" stroke="rgb(89, 148, 220)" fill="none" stroke-width="2.077922077922078" stroke-linecap="round" class="pcb-note-dimension-extension"/><path d="M 815.5844155844156 575.3246753246754 L 815.5844155844156 24.675324675324703" stroke="rgb(89, 148, 220)" fill="none" stroke-width="2.077922077922078" stroke-linecap="round" class="pcb-note-dimension-line"/><path d="M 815.5844155844156 585.7142857142858 L 810.3896103896104 575.3246753246754 L 820.7792207792209 575.3246753246754 Z" fill="rgb(89, 148, 220)" class="pcb-note-dimension-arrow"/><path d="M 815.5844155844156 14.285714285714278 L 810.3896103896104 24.675324675324703 L 820.7792207792209 24.675324675324703 Z" fill="rgb(89, 148, 220)" class="pcb-note-dimension-arrow"/><text x="800" y="300" fill="rgb(89, 148, 220)" font-size="10.38961038961039" font-family="Arial, sans-serif" text-anchor="middle" dominant-baseline="central" class="pcb-note-dimension-text" transform="rotate(-90 800 300)">55mm</text></g><rect x="31.16883116883116" y="481.8181818181818" width="83.11688311688312" height="83.11688311688312" class="pcb-note-rect" data-type="pcb_note_rect" data-pcb-note-rect-id="pcb_note_rect_0" data-pcb-layer="overlay" fill="none" stroke="blue" stroke-width="1.038961038961039"/><rect x="31.16883116883116" y="35.06493506493507" width="83.11688311688312" height="83.11688311688312" class="pcb-note-rect" data-type="pcb_note_rect" data-pcb-note-rect-id="pcb_note_rect_1" data-pcb-layer="overlay" fill="none" stroke="blue" stroke-width="1.038961038961039"/><rect x="503.8961038961039" y="35.06493506493507" width="181.81818181818187" height="83.11688311688312" class="pcb-note-rect" data-type="pcb_note_rect" data-pcb-note-rect-id="pcb_note_rect_2" data-pcb-layer="overlay" fill="none" stroke="blue" stroke-width="1.038961038961039"/><rect x="716.8831168831168" y="66.23376623376623" width="41.55844155844159" height="467.53246753246754" class="pcb-note-rect" data-type="pcb_note_rect" data-pcb-note-rect-id="pcb_note_rect_3" data-pcb-layer="overlay" fill="none" stroke="blue" stroke-width="1.038961038961039"/><rect x="192.2077922077922" y="216.88311688311688" width="207.7922077922078" height="166.23376623376623" class="pcb-note-rect" data-type="pcb_note_rect" data-pcb-note-rect-id="pcb_note_rect_4" data-pcb-layer="overlay" fill="none" stroke="blue" stroke-width="1.038961038961039"/></svg>
@@ -8,6 +8,7 @@ import type {
8
8
  PcbCopperPourBRep,
9
9
  SourceNet,
10
10
  } from "circuit-json"
11
+ import { getFullConnectivityMapFromCircuitJson } from "circuit-json-to-connectivity-map"
11
12
  import { convertCircuitJsonToPcbSvg } from "circuit-to-svg"
12
13
 
13
14
  export const runSolverAndRenderToSvg = (
@@ -29,11 +30,21 @@ export const runSolverAndRenderToSvg = (
29
30
  if (!source_net) {
30
31
  throw new Error(`Net with name "${pour_options.net_name}" not found`)
31
32
  }
32
- if (!source_net.subcircuit_connectivity_map_key) {
33
- throw new Error(`Net "${pour_options.net_name}" has no connectivity key`)
33
+
34
+ const connectivityMap = getFullConnectivityMapFromCircuitJson(circuitJson)
35
+ let pour_connectivity_key = connectivityMap.getNetConnectedToId(
36
+ source_net.source_net_id,
37
+ )
38
+
39
+ if (!pour_connectivity_key && source_net.subcircuit_connectivity_map_key) {
40
+ pour_connectivity_key = source_net.subcircuit_connectivity_map_key
34
41
  }
35
42
 
36
- const pour_connectivity_key = source_net.subcircuit_connectivity_map_key
43
+ if (!pour_connectivity_key) {
44
+ throw new Error(
45
+ `Net "${pour_options.net_name}" has no connectivity mapping`,
46
+ )
47
+ }
37
48
 
38
49
  const inputProblem = convertCircuitJsonToInputProblem(circuitJson, {
39
50
  ...pour_options,