-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathuaefi-adapter.kicad_pcb
18967 lines (18939 loc) · 718 KB
/
uaefi-adapter.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A3")
(title_block
(title "uaefi-adapter")
(date "2024-03-06")
(rev "a")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen") (color "White"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Green") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Green") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen") (color "White"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(aux_axis_origin 100 200)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros true)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes true)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin true)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "proteusOBD2Ahonda/gerber/")
)
)
(net 0 "")
(net 1 "/ETB_N")
(net 2 "Net-(J3-Pin_1)")
(net 3 "GND")
(net 4 "/ETB_P")
(net 5 "/DC2+")
(net 6 "/CANH")
(net 7 "/IN_VIGN")
(net 8 "/CANL")
(net 9 "+12V_RAW")
(net 10 "Net-(J3-Pin_2)")
(net 11 "/EGT+")
(net 12 "/OUT_INJ4")
(net 13 "Net-(J3-Pin_4)")
(net 14 "/OUT_INJ3")
(net 15 "unconnected-(J1-Pin_1-Pad1)")
(net 16 "/OUT_INJ2")
(net 17 "Net-(J3-Pin_5)")
(net 18 "unconnected-(JP15-Pad1)")
(net 19 "/OUT_INJ1")
(net 20 "/EGT-")
(net 21 "unconnected-(JP15-Pad2)")
(net 22 "unconnected-(M1-OUT_DC2--PadA2)")
(net 23 "/IN_CRANK_VR")
(net 24 "/OUT_IGN4")
(net 25 "/OUT_IGN3")
(net 26 "/OUT_IGN2")
(net 27 "/OUT_IGN1")
(net 28 "/IN_CAM1_POS")
(net 29 "unconnected-(P3-Pin_1-Pad1)")
(net 30 "+5VP")
(net 31 "/IN_PPS2")
(net 32 "GNDA")
(net 33 "/IN_TPS2")
(net 34 "/IN_FLEX")
(net 35 "/IN_PPS1")
(net 36 "/IN_MAP")
(net 37 "/IN_HS_BRAKE")
(net 38 "/IN_TPS1")
(net 39 "/IN_KNOCK")
(net 40 "/IN_IAT")
(net 41 "/IN_CLT")
(net 42 "/WBO_HTR+")
(net 43 "/WBO_Rtrim")
(net 44 "/WBO_HTR-")
(net 45 "/WBO_Vs")
(net 46 "/WBO_Ip")
(net 47 "/WBO_Vm")
(net 48 "unconnected-(M1-+5VP-PadD3)")
(net 49 "unconnected-(M1-+5VP-PadD4)")
(net 50 "unconnected-(M1-GNDA-PadD11)")
(net 51 "Net-(G1-Pad1)")
(net 52 "Net-(G1-Pad12)")
(net 53 "Net-(G2-Pad1)")
(net 54 "Net-(G2-Pad12)")
(net 55 "Net-(G2-Pad13)")
(net 56 "Net-(G2-Pad14)")
(net 57 "Net-(G2-Pad10)")
(net 58 "unconnected-(M1-GNDA-PadD12)")
(net 59 "unconnected-(M1-VBUS-PadJ1)")
(net 60 "unconnected-(M1-USB--PadJ2)")
(net 61 "unconnected-(M1-USB+-PadJ3)")
(net 62 "Net-(M1-DC1_DIR)")
(net 63 "Net-(M1-DC2_DIR)")
(net 64 "Net-(M1-DC1_PWM)")
(net 65 "Net-(M1-DC2_PWM)")
(net 66 "/OUT_INJ6")
(net 67 "/OUT_INJ5")
(net 68 "/AC RELAY")
(net 69 "/Intake_Bypass_VSV1")
(net 70 "/AUX3")
(net 71 "/AUX1")
(net 72 "/OUT_IGN6")
(net 73 "/OUT_IGN5")
(net 74 "/Wastegate_Control")
(net 75 "/MAF")
(net 76 "/Engine_Light")
(net 77 "/OUT_FUEL_PUMP")
(net 78 "/TACHO")
(net 79 "/HALL3")
(net 80 "/BTN3")
(net 81 "/VR2+")
(net 82 "/VR2-")
(net 83 "/VR1+")
(net 84 "/VR1-")
(net 85 "/BUTTON1")
(net 86 "unconnected-(J5-Pin_4-Pad4)")
(footprint "hellen-one-uaefi-0.2:uaefi" (layer "F.Cu")
(tstamp 0b357876-5cb5-4e4b-aa71-da40cb42ab7b)
(at 149.199874 194.69)
(property "Sheetfile" "uaefi-adapter.kicad_sch")
(property "Sheetname" "")
(path "/9d8d6f89-56c3-4778-bfd7-f1cba3129c2d")
(fp_text reference "M1" (at 9 -6 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 85b9a73f-b26c-4678-8233-622b5f4c4803)
)
(fp_text value "Module:uaefi/0.2" (at 9 -4.5 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c9b30a16-5de4-4d3e-864e-fa3b2824cf98)
)
(fp_text user "USB-" (at 89.669757 -5.118288 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 01267c8a-bb33-4788-90d7-9e11170af96a)
)
(fp_text user "EGT+" (at 47.798544 -91.670727 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 02e55eef-88df-4498-b47c-1de27f458b46)
)
(fp_text user "VR2-" (at 35.75 -82 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 06b5c1b3-bd45-4f3b-bb09-99cbab326195)
)
(fp_text user "GND" (at 88.579267 -12.39891 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 09ce86a7-7a3a-4a22-864c-56c9d1ef8c57)
)
(fp_text user "LSH2" (at 7.519643 -73.277182 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 15f224b5-fa65-48f0-821d-abf7319ddcc2)
)
(fp_text user "VR1-" (at 43.862554 -82.201891 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 172049a6-d83e-4bee-bed9-31a6ff0ac297)
)
(fp_text user "GNDA" (at 72.75 -82.25 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 18d689a0-0757-4f94-acfd-1f403353cdc0)
)
(fp_text user "LED_G" (at 68.631715 -6.657803 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 1e1f1999-f4dc-483e-828f-930dbdfcea83)
)
(fp_text user "BTN1" (at 64.5 -91.5 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 27452366-930e-47bb-aaf8-903fa7f0bea1)
)
(fp_text user "LS2" (at 16.25 -75 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 2bb5dd0e-b1a9-42ac-934e-63284406d969)
)
(fp_text user "DC2_PWM" (at 22 -10.5 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 310aa4a6-ac41-4f3e-af4e-0e5417f684e6)
)
(fp_text user "Tx" (at 86.796594 -18.876704 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 33786afd-dfcc-4a3a-b5ce-355d3196a508)
)
(fp_text user "KNOCK" (at 81.8 -81.6 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 35ac2766-d96c-4211-b79b-36d5367a0205)
)
(fp_text user "HALL3" (at 35.715147 -91.542435 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 4592bf1d-7ec9-4641-ba59-c045564df56d)
)
(fp_text user "FLEX" (at 77.126559 -91.511273 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 470839f9-0646-4e80-aca1-45872e0945fb)
)
(fp_text user "Rx" (at 86.924887 -23.495249 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 55d62cfa-9954-489f-bc4f-049c186b5e5a)
)
(fp_text user "VIGN" (at 15 -30.8 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 56c068c1-a55b-48bf-beee-6bc0fbe8de48)
)
(fp_text user "LS4" (at 15.75 -66.75 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 579d443f-55fc-4561-80e0-48908311cdc9)
)
(fp_text user "GNDA" (at 68.5 -82.25 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 5b467717-d84c-4a32-868d-6917dd6995ba)
)
(fp_text user "Vm" (at 84.5 -68.25 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 5c2cc4cd-9f61-4a96-b16c-c220f3614632)
)
(fp_text user "GND" (at 7.581711 -33.615964 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 5d05557e-35a6-4003-a9e0-380c66c5ae36)
)
(fp_text user "AUX2" (at 19.037071 -91.638654 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 5f6dc9fd-bcce-4c9e-a489-ea72d7067a5a)
)
(fp_text user "TPS1" (at 76.75 -82.5 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 61bbaf9b-7a9f-4c4e-ba8b-232462154435)
)
(fp_text user "PPS1" (at 81.417244 -91.568292 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 62ca97c4-4092-4e04-8dfb-0c5797e50e80)
)
(fp_text user "INJ3" (at 7.339634 -56.614525 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 63d0228c-bc32-48b0-9eb9-738c2d0b9ce6)
)
(fp_text user "IGN3" (at 16.2 -49.381676 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 75038982-272a-4327-8122-f84765659a61)
)
(fp_text user "GNDA" (at 10.75 -81.75 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 76716b93-9280-435a-8613-34f91c792d3a)
)
(fp_text user "PPS2" (at 22.86 -91.44 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 7862978b-6ac9-4016-8c76-932c30957abc)
)
(fp_text user "CANL" (at 85.530571 -91.675203 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 7ba6d9dd-928e-48f6-9433-b0c3f612e7a7)
)
(fp_text user "EGT-" (at 48 -82.25 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 7d1d8172-2b73-4da6-9929-ee31d64ed661)
)
(fp_text user "Rtrim" (at 94.25 -71.25 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 7d36c49e-21b9-4e61-a008-873865357296)
)
(fp_text user "TPS2" (at 23 -82 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 7fcba264-85b1-4d13-8d65-787083be4055)
)
(fp_text user "GNDA" (at 19 -82 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 80b138dd-aba7-4a56-b9fe-87d9fc12fe4e)
)
(fp_text user "IGN6" (at 15.979563 -40.958141 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 8125e555-6558-495f-a861-d4107bf00893)
)
(fp_text user "IAT" (at 84.5 -83 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 87a9ce11-4a55-4c82-874e-b1d6c99e1daf)
)
(fp_text user "HALL1" (at 27.215743 -91.510361 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 884e333a-1385-4dc9-8a2a-a886095e24a7)
)
(fp_text user "IGN4" (at 16 -45.3 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 8a86c2f8-30eb-4ccc-a2b1-97384bb648cc)
)
(fp_text user "Ip" (at 84.75 -72.75 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 8ca9b0ed-8157-4fd4-ab3a-03bd86d6fa42)
)
(fp_text user "GND" (at 7.62 -38.1 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 8ea935ae-5b40-42c7-a367-060a622a7ef5)
)
(fp_text user "USB+" (at 89.637684 -7.587926 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 8fe60fbe-57f8-4f88-982b-fcd95b81c602)
)
(fp_text user "INJ2" (at 7.467927 -60.784044 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 910c9f75-c941-4493-af5b-c288451762e5)
)
(fp_text user "VR1+" (at 39.743117 -82.09622 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 92a61cee-0d52-4294-81e1-c2204be1f0f9)
)
(fp_text user "GND" (at 88.579267 -9.768905 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 98bd3ca4-a7aa-49f1-ad38-1e2db3ad4d50)
)
(fp_text user "CLT" (at 89 -82.75 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 99bab88d-9382-432a-b1f0-865b09eccf98)
)
(fp_text user "MAP" (at 60 -82.25 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 9abff39e-980d-46e8-9c79-4db23b5f0652)
)
(fp_text user "DC1-" (at 7.62 -25.4 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 9b86b771-8ba8-41f6-b670-b63f9662715c)
)
(fp_text user "CANH" (at 89.70009 -91.589675 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 9c952f9b-e138-4c83-a3d6-caf6b55fc60c)
)
(fp_text user "BTN3" (at 43.564878 -91.446215 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 9d79defe-335b-4815-937b-d1d4ee858328)
)
(fp_text user "IGN2" (at 16.154714 -57.849319 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp 9e637949-b4f9-4c9a-bd78-688e9ff57ff4)
)
(fp_text user "INJ4" (at 7.532073 -52.38086 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp a2160dff-495c-4ffb-87bf-1072c0da4b8f)
)
(fp_text user "DC1+" (at 16 -21.6 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp a3e5d950-c6cd-44e9-b2af-55b1215c3b17)
)
(fp_text user "INJ6" (at 7.25 -44.25 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp a4eb46dc-d584-4c63-bfe9-8b176a185aaf)
)
(fp_text user "DC1_DIR" (at 5 -12.5 270 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp a8e6f804-4e41-4100-84f7-d4ce4180a84a)
)
(fp_text user "HTR-" (at 94.243044 -67.084385 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp ad2aa2fd-938d-4723-95d2-6555d46f9747)
)
(fp_text user "INJ5" (at 7.5 -48.5 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp ad43b16d-8198-4a28-914a-314cca40d8b3)
)
(fp_text user "+12V" (at 16.6 -33.75 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp af070e55-10a6-486b-b6c2-d4ed6c34c943)
)
(fp_text user "BTN2" (at 64.5 -82 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp b06dda66-4052-426e-80fb-3e405a519306)
)
(fp_text user "Ignition logic level outputs by default\nto control dumb coils remove R20-R22, \nR26-R28 and populate Q7-Q12 on uaefi board" (at 0.4 -40.5 -90 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp b5503447-1c69-42a0-9810-56ca45b54260)
)
(fp_text user "Un" (at 85 -76.5 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp b87e1fda-8d9d-45a9-bfe4-8585e768efda)
)
(fp_text user "VR2+" (at 31.7 -82 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp ba0d8e96-0f0b-4bc8-a493-e4cc5d3f00a1)
)
(fp_text user "IGN1" (at 16.3 -62.1 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp bef6b35e-27db-4038-86a0-f15542a5f09c)
)
(fp_text user "GNDA" (at 14.75 -81.75 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp c017700a-aab9-404e-bc9f-bea4483bac2b)
)
(fp_text user "DC2-" (at 7.792796 -29.543281 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp c0bf2fb9-7fb8-4318-93cc-e40ddb582c36)
)
(fp_text user "+5VP" (at 14.778544 -91.353601 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp c14c49e9-2c88-435e-bdf3-536939d18cb4)
)
(fp_text user "HTR+" (at 94 -75.25 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp c1d549d8-9efc-4ea1-8424-ebd5fb84488f)
)
(fp_text user "GND" (at 39.986104 -91.760732 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp c859c8fd-6752-4297-95af-fe50278f211f)
)
(fp_text user "DC1_PWM" (at 2.25 -12.5 270 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp cd97eb96-ef3e-4b47-b9b4-82ce58b6ba49)
)
(fp_text user "+5VP" (at 73 -91.25 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp d4346e20-0299-4bd1-87c3-41d4ad091720)
)
(fp_text user "AUX1" (at 60.358648 -91.639566 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp d57a6a39-b92f-4fdf-a8aa-0dc2c3c33db4)
)
(fp_text user "LSH1" (at 7.5 -77.75 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp d6d925ce-19ef-43da-8fd0-bbf66399a34a)
)
(fp_text user "HALL2" (at 31.545628 -91.542435 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp db2100b0-9d88-4776-8823-64f27ea7f70b)
)
(fp_text user "LS3" (at 16 -70.75 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp dc29137a-d3a6-43b5-856a-f689b256ebb1)
)
(fp_text user "DC2+" (at 16.09622 -25.881776 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp e110c9c0-5200-4ccd-a8f8-69af47590a66)
)
(fp_text user "INJ1" (at 7.211341 -65.210149 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp e7229ff4-5a6b-4fda-9473-77b3b17fe717)
)
(fp_text user "IGN5" (at 16.5 -53.4 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp e7e8c215-0f06-415e-88bd-b543e679c588)
)
(fp_text user "+5VP" (at 10.16 -91.44 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp e7f426a1-99d0-4a57-9e27-deaa6a990531)
)
(fp_text user "LS1" (at 7.45189 -69.717054 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp eea7c775-56ed-42bd-8e5a-edc9c55e7859)
)
(fp_text user "+5VP" (at 68.75 -91.25 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp eec218a7-557e-4ab1-88fb-750b11f067a5)
)
(fp_text user "LED_Y" (at 68.58 -1.943039 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp f5e51ac8-3077-4d16-ad61-d365d15428e2)
)
(fp_text user "VBUS" (at 89.60561 -2.55243 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp f632a695-1703-41b7-bd74-d2585ad68de2)
)
(fp_text user "AUX3" (at 27.5 -82 315 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp f6f3f5b1-67d1-4d4b-a196-00ba51209253)
)
(fp_text user "DC2_DIR" (at 7.5 -12.5 270 unlocked) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror))
(tstamp ff148c1b-482a-4b1e-aabc-d975463cf863)
)
(fp_text user "Ignition logic level outputs by default\nto control dumb coils remove R20-R22, \nR26-R28 and populate Q7-Q12 on uaefi board" (at 4.9 -40.5 90 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.1)) (justify left bottom))
(tstamp 13797cc7-1777-4c44-a9b7-491f8df80ab0)
)
(fp_text user "${REFERENCE}" (at 9 -1.25 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4dd5b622-dbbc-4f56-97c9-3b8079f595a0)
)
(fp_text user "${REFERENCE}" (at 9.025126 -3 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8be43ce7-0765-4ba5-bc0b-0e23f37e851d)
)
(fp_line (start 61.195126 -6.17) (end 61.195126 -8.83)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp b644c4fa-b3bf-4fb6-9bf2-07f9b5ec8533))
(fp_line (start 61.195126 -1.17) (end 61.195126 -3.83)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 7a6c57ea-e4ba-49c3-9b83-3ff7e954bc37))
(fp_line (start 61.489588 -8.83) (end 61.195126 -8.83)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp fcdc9d9b-51df-4998-b36f-6f2bb9dc76a6))
(fp_line (start 61.489588 -3.83) (end 61.195126 -3.83)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp b5a892ef-8512-4b91-9cb8-09116002b628))
(fp_line (start 61.500753 -6.17) (end 61.195126 -6.17)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 3fe0fea3-0f96-4eb2-b213-2e189345ab37))
(fp_line (start 61.500753 -1.17) (end 61.195126 -1.17)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 56269a64-3b7a-438c-ac9e-eee2d3c8b7e4))
(fp_line (start 63.549499 -8.83) (end 63.855126 -8.83)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp f5fa16a2-4826-45d3-91a1-72e2e56a60cb))
(fp_line (start 63.549499 -3.83) (end 63.855126 -3.83)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 9f9d8087-9336-433e-a4f8-c5ffa9283338))
(fp_line (start 63.560664 -6.17) (end 63.855126 -6.17)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 5f9944f2-2c0a-4e3e-9276-8d885542eff8))
(fp_line (start 63.560664 -1.17) (end 63.855126 -1.17)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 7485aff2-66d2-4515-abe5-a7792e18a414))
(fp_line (start 63.855126 -8.83) (end 63.855126 -6.17)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 44b7becc-8f0b-490a-a7e7-791354947be0))
(fp_line (start 63.855126 -3.83) (end 63.855126 -1.17)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp e6d23751-19f4-40c1-a2d4-34405723b852))
(fp_line (start 81.895126 -22.67) (end 81.895126 -25.33)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 30f1ca15-ff3d-4cc4-8f1f-be38d16d9884))
(fp_line (start 81.895126 -17.97) (end 81.895126 -20.63)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 36d2095c-bc0c-4901-891e-261700f141f2))
(fp_line (start 82.189588 -25.33) (end 81.895126 -25.33)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp b77a9695-57f9-408c-87ef-5094b209e64e))
(fp_line (start 82.189588 -20.63) (end 81.895126 -20.63)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 6491cc10-8de7-40f4-9700-082675919aa1))
(fp_line (start 82.200753 -22.67) (end 81.895126 -22.67)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 76c849fa-9bcc-4ca8-a0a8-a01b2f0e6f02))
(fp_line (start 82.200753 -17.97) (end 81.895126 -17.97)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 83a1daac-fe03-4354-b23b-8e47672699ff))
(fp_line (start 84.249499 -25.33) (end 84.555126 -25.33)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 64858b61-3069-4c59-acef-100728da5424))
(fp_line (start 84.249499 -20.63) (end 84.555126 -20.63)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 0d29adb9-f58c-4e37-8cb1-b6690ab9e53a))
(fp_line (start 84.260664 -22.67) (end 84.555126 -22.67)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp c498b324-fd0b-4f47-985f-d42c92d438e8))
(fp_line (start 84.260664 -17.97) (end 84.555126 -17.97)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 15cbb3e0-a72a-4738-9175-07afd45d8ecd))
(fp_line (start 84.555126 -25.33) (end 84.555126 -22.67)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 77e13c22-d156-404b-9607-044ffbe7d688))
(fp_line (start 84.555126 -20.63) (end 84.555126 -17.97)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 2cc41607-69ca-414c-a167-5b0439cb5903))
(fp_line (start 8.025126 -91.025) (end 8.625126 -90.725)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7bcaf504-15cb-41da-8a47-e0ce7baaee06))
(fp_line (start 8.025126 -90.425) (end 8.025126 -91.025)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f0d56dfd-9e59-4307-9284-967b1b303176))
(fp_line (start 8.300126 -76.21) (end 8.300126 -77.19)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2202692f-6a63-485e-9fb2-b90743c31649))
(fp_line (start 8.300126 -72.01) (end 8.300126 -72.99)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 90852487-e36e-40b1-93ef-7bf9300e7fec))
(fp_line (start 8.300126 -67.81) (end 8.300126 -68.79)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d421b0a8-9e7d-4c52-9a8f-0d85cd19097e))
(fp_line (start 8.300126 -63.61) (end 8.300126 -64.59)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 53d38646-d0fd-43f0-b17a-b28f1ad8b360))
(fp_line (start 8.300126 -59.41) (end 8.300126 -60.39)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6537d220-46c2-4653-86c7-09787aab71d8))
(fp_line (start 8.300126 -55.21) (end 8.300126 -56.19)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3e616330-7ba1-4922-b90a-a8a6dba1d590))
(fp_line (start 8.300126 -51.01) (end 8.300126 -51.99)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5304a20a-adaf-4907-945e-8684240b4492))
(fp_line (start 8.300126 -46.81) (end 8.300126 -47.79)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e79bf7da-e7fb-402d-923a-91a8e55b602e))
(fp_line (start 8.300126 -35.81) (end 8.300126 -36.79)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 998c6a97-6064-4686-94c0-78bbcdc94851))
(fp_line (start 8.300126 -31.61) (end 8.300126 -32.59)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e94502c8-12bb-4e80-a372-13dcd2908e9c))
(fp_line (start 8.300126 -27.41) (end 8.300126 -28.39)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 55c60065-419b-43af-95a5-aeb307633d8a))
(fp_line (start 8.310126 -80.8) (end 8.310126 -81.61)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp db7b779c-d3bc-46f4-9281-c654c21fd7c8))
(fp_line (start 8.310126 -43.2) (end 8.310126 -42.39)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9f6b3689-99e9-47ed-b7f4-827b0629fcb2))
(fp_line (start 8.310126 -40.4) (end 8.310126 -41.21)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp be04c3a4-868f-4542-98bc-9b81c4fa355c))
(fp_line (start 8.310126 -23.8) (end 8.310126 -22.99)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 362f621d-1021-4d4d-9532-d6dace6bd137))
(fp_line (start 8.625126 -91.715) (end 7.815126 -91.715)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd0f9b26-d557-4a19-aca9-9adad9217647))
(fp_line (start 8.625126 -90.725) (end 8.025126 -90.425)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 838709c3-6a49-4dbb-8153-2ba054c7cd07))
(fp_line (start 8.67729 -84.326098) (end 7.86729 -84.326098)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 780a10da-56a5-4784-bc80-dcc730b03659))
(fp_line (start 9.000126 -42.6) (end 9.300126 -43.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cb0c57b9-5554-4b4d-8614-32461257c669))
(fp_line (start 9.000126 -23.2) (end 9.300126 -23.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp add3dbd5-efec-46a3-83ec-8ff7772065fb))
(fp_line (start 9.300126 -43.2) (end 9.600126 -42.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4ebd6626-0e2d-4b5c-bd95-3201fdad8be5))
(fp_line (start 9.300126 -23.8) (end 9.600126 -23.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4377d988-9069-4f56-bd57-856494f4b5d5))
(fp_line (start 9.600126 -42.6) (end 9.000126 -42.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d296721f-5bd2-43d2-a99e-e590ac53fb78))
(fp_line (start 9.600126 -23.2) (end 9.000126 -23.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bfc5c747-3015-4ab5-abcf-a84b8f236b69))
(fp_line (start 12.235126 -91.725) (end 13.215126 -91.725)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7a645610-0ea7-4bcb-82de-bc84906cf6e4))
(fp_line (start 12.28729 -84.336098) (end 13.26729 -84.336098)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dfb64332-f6c9-4966-821b-7ea804b5df70))
(fp_line (start 15.688963 -35.863539) (end 15.688963 -36.843539)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5c0fb55a-973d-4702-8697-2391444665ef))
(fp_line (start 15.688963 -31.663539) (end 15.688963 -32.643539)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7234969f-6edb-4340-8dfa-ff4830cdd1d6))
(fp_line (start 15.688963 -27.463539) (end 15.688963 -28.443539)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c691f76e-a199-4230-ae0c-a5a5968f4f4a))
(fp_line (start 15.68906 -76.236065) (end 15.68906 -77.216065)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c1647a1c-66a4-4f49-8390-733a324f09b4))
(fp_line (start 15.68906 -72.036065) (end 15.68906 -73.016065)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 326f98d1-3cce-4645-a066-2ee55bc5e30b))
(fp_line (start 15.68906 -67.836065) (end 15.68906 -68.816065)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65ba6886-13f7-4ce8-b72e-c293ab72f67d))
(fp_line (start 15.68906 -63.636065) (end 15.68906 -64.616065)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d44752cc-25f4-4f8b-960a-5fcd45995681))
(fp_line (start 15.68906 -59.436065) (end 15.68906 -60.416065)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9207c00-dd8a-4f23-87eb-3fe0ae866784))
(fp_line (start 15.68906 -55.236065) (end 15.68906 -56.216065)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09776551-c560-4a83-bfbd-f9610a7fc1a3))
(fp_line (start 15.68906 -51.036065) (end 15.68906 -52.016065)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 248bcfa4-21e9-48ba-9e38-690c4a90c1df))
(fp_line (start 15.68906 -46.836065) (end 15.68906 -47.816065)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 335b0398-d8f7-4010-96e5-5d9147ebb2bb))
(fp_line (start 15.698963 -40.453539) (end 15.698963 -41.263539)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 24c9bb8d-3174-4b82-863e-9c4297171ab1))
(fp_line (start 15.698963 -23.853539) (end 15.698963 -23.043539)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c06160c4-129b-484d-afc6-91aaca66da57))
(fp_line (start 15.69906 -80.826065) (end 15.69906 -81.636065)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ad1345fe-3b38-4675-82b3-e38ee81676fb))
(fp_line (start 15.69906 -43.226065) (end 15.69906 -42.416065)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 11b2d53d-b13f-4c3e-a8a2-b14ca3bf626e))
(fp_line (start 16.435126 -91.725) (end 17.415126 -91.725)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5811b413-0bbf-4e4f-97bf-35ae9002a89b))
(fp_line (start 16.48729 -84.336098) (end 17.46729 -84.336098)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 613a86f3-9293-4896-adbe-930ce0783401))
(fp_line (start 20.635126 -91.725) (end 21.615126 -91.725)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4bc3a4ab-adcf-4aa8-8ed0-1f02011f969f))
(fp_line (start 20.68729 -84.336098) (end 21.66729 -84.336098)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b8b96844-8457-4f2b-ac63-52def3eb9369))
(fp_line (start 24.835126 -91.725) (end 25.815126 -91.725)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 056ef6c8-4315-450a-bad0-85fcafecd75f))
(fp_line (start 24.88729 -84.336098) (end 25.86729 -84.336098)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0030f996-0c36-489f-978a-ca803b42e3f8))
(fp_line (start 29.035126 -91.725) (end 30.015126 -91.725)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d78b03d7-4ff4-4b16-9164-d1e8c6c64d76))
(fp_line (start 29.08729 -84.336098) (end 30.06729 -84.336098)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d37c354f-3585-46e8-a839-2d4604242e34))
(fp_line (start 33.235126 -91.725) (end 34.215126 -91.725)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d7ab030e-387a-44ca-be49-d64d80c12825))
(fp_line (start 33.28729 -84.336098) (end 34.26729 -84.336098)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac2e6d8a-ab67-4c46-95fc-2d4c15e7f470))
(fp_line (start 37.435126 -91.725) (end 38.415126 -91.725)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2258eef6-c2d0-4fe2-bd74-97d70c083b7f))
(fp_line (start 37.48729 -84.336098) (end 38.46729 -84.336098)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19145b58-4e44-4a37-8338-be27c8c6b4c3))
(fp_line (start 41.635126 -91.725) (end 42.615126 -91.725)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc34a82b-a4fa-4e7a-96c5-9a233e6649af))
(fp_line (start 41.68729 -84.336098) (end 42.66729 -84.336098)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c6d91de8-56ad-4407-91bd-5b23d377ded4))
(fp_line (start 45.835126 -91.725) (end 46.815126 -91.725)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f4a5ff6-73f1-4523-a9a9-000fc599d141))
(fp_line (start 45.88729 -84.336098) (end 46.86729 -84.336098)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 03c55d0e-869f-4bce-836b-29c87ffc9c29))
(fp_line (start 50.425126 -91.715) (end 51.235126 -91.715)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6b80040c-bba8-4f07-bf6d-7745855eb058))
(fp_line (start 50.47729 -84.326098) (end 51.28729 -84.326098)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 933169fa-0003-449a-adbc-2cc48eb049f0))
(fp_line (start 57.725126 -91.025) (end 58.325126 -90.725)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d41e29a4-75c1-41d0-ae5b-a56833510ecb))
(fp_line (start 57.725126 -90.425) (end 57.725126 -91.025)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f91431c-1ae5-4b93-ba74-96aab0d9889a))
(fp_line (start 58.325126 -91.715) (end 57.515126 -91.715)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 720534f8-cc12-4a6b-915c-2ff96dad770e))
(fp_line (start 58.325126 -90.725) (end 57.725126 -90.425)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e6af8f63-ee5a-407f-8863-b662d044d7c3))
(fp_line (start 58.363637 -84.348254) (end 57.553637 -84.348254)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bae79c74-3f5d-4760-9761-194bd24f9adc))
(fp_line (start 61.195126 -8.83) (end 61.195126 -6.17)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ba6abd79-004d-4e9d-9c9a-e4f11a456da7))
(fp_line (start 61.195126 -3.83) (end 61.195126 -1.17)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 52563577-14db-4b90-aa58-ed98552e7a08))
(fp_line (start 61.489588 -6.17) (end 61.195126 -6.17)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cdf8c292-8bf7-48c2-9b3c-cb613871c89f))
(fp_line (start 61.489588 -1.17) (end 61.195126 -1.17)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ede366b7-170c-49cb-93c1-d5e80941a349))
(fp_line (start 61.500753 -8.83) (end 61.195126 -8.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bb01fc2f-2898-449c-9424-fbd01c09661c))
(fp_line (start 61.500753 -3.83) (end 61.195126 -3.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6dd2626b-3084-4fc3-835e-99b06d91b567))
(fp_line (start 61.935126 -91.725) (end 62.915126 -91.725)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61c16f02-3474-48fb-a6ae-e35cb64e5ca3))
(fp_line (start 61.973637 -84.358254) (end 62.953637 -84.358254)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6c6b153b-cb09-4f33-8a76-16bb51a8bb2e))
(fp_line (start 63.549499 -6.17) (end 63.855126 -6.17)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 543303ac-03f6-4dca-b331-6edc915a7a4e))
(fp_line (start 63.549499 -1.17) (end 63.855126 -1.17)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7cf74a16-78c4-4af5-a77d-67e6efddb110))
(fp_line (start 63.560664 -8.83) (end 63.855126 -8.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 89ee0424-71ad-4cc3-9b3c-a7b583d183b6))
(fp_line (start 63.560664 -3.83) (end 63.855126 -3.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9ba9432-38ff-48d0-89e1-e9206b5bbd38))
(fp_line (start 63.855126 -6.17) (end 63.855126 -8.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ed26a8c7-9beb-4ee3-b871-9c046113839f))
(fp_line (start 63.855126 -1.17) (end 63.855126 -3.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8b002bab-9871-4db9-b099-2ed56df6861c))
(fp_line (start 66.135126 -91.725) (end 67.115126 -91.725)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp abf1ed65-329e-4c4b-9658-eb8d174be64b))
(fp_line (start 66.173637 -84.358254) (end 67.153637 -84.358254)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b71cc985-8bf4-42e8-af57-d12e87251c7c))
(fp_line (start 70.335126 -91.725) (end 71.315126 -91.725)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f366046d-6112-44a9-aee2-7674273ed08b))
(fp_line (start 70.373637 -84.358254) (end 71.353637 -84.358254)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 67faee2c-68c1-4e39-b185-ff9906efa494))
(fp_line (start 74.535126 -91.725) (end 75.515126 -91.725)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ca1123c-9dfd-4ea7-b790-430ad5a6af4d))
(fp_line (start 74.573637 -84.358254) (end 75.553637 -84.358254)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5605eede-5596-42d8-b7fd-16648c2b55d0))
(fp_line (start 78.735126 -91.725) (end 79.715126 -91.725)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3433457c-1fa5-4935-9cec-11a86f58cdf7))
(fp_line (start 78.773637 -84.358254) (end 79.753637 -84.358254)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b80e0a4e-0d47-4f3d-b470-ed3f235c6788))
(fp_line (start 79.815126 -15.56) (end 79.815126 -0.44)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2c4a7441-f494-4641-b8f8-88426b613568))
(fp_line (start 79.815126 -15.56) (end 79.815126 -0.44)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp deb01c74-aa03-48d5-b227-5a1d01db50eb))
(fp_line (start 79.815126 -0.44) (end 84.935126 -0.44)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 38a6eeb1-4896-42fb-8693-32f6eec2ee9e))
(fp_line (start 79.815126 -0.44) (end 84.935126 -0.44)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f11c2f3-f041-4f03-bbd6-0e1139c3f263))
(fp_line (start 81.895126 -25.33) (end 81.895126 -22.67)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d534fbc0-f91c-4851-88dd-8acc72c29c06))
(fp_line (start 81.895126 -20.63) (end 81.895126 -17.97)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cc36dca1-20f8-4d24-9040-c4746084f155))
(fp_line (start 82.189588 -22.67) (end 81.895126 -22.67)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e06d027-54b6-488b-a646-dc677ce4cdf4))
(fp_line (start 82.189588 -17.97) (end 81.895126 -17.97)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ac81023-e375-4559-bd9f-2af3deaa5da1))
(fp_line (start 82.200753 -25.33) (end 81.895126 -25.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6b8ae2f2-0373-4003-9520-ebeedd1c9dd4))
(fp_line (start 82.200753 -20.63) (end 81.895126 -20.63)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e5d8b33-1b2a-454a-96b7-85792fcc663b))
(fp_line (start 82.825126 -0.14) (end 85.235126 -0.14)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 334a5cea-5ab2-4f99-904a-4d8997ade4ec))
(fp_line (start 82.825126 -0.14) (end 85.235126 -0.14)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3b8ac2f2-4fa1-4ea1-b140-62cfcfec9d46))
(fp_line (start 82.935126 -91.725) (end 83.915126 -91.725)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3e625879-56d6-4f39-b691-a126d773fb70))
(fp_line (start 82.973637 -84.358254) (end 83.953637 -84.358254)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f11deff-6442-4cda-8067-cf92fced59c3))
(fp_line (start 83.935126 -15.56) (end 79.815126 -15.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ad0c60c9-5f90-4805-8f5e-7cd260a89081))
(fp_line (start 83.935126 -15.56) (end 79.815126 -15.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d2429408-e948-431e-954a-bc5130438754))
(fp_line (start 84.249499 -22.67) (end 84.555126 -22.67)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 020d97c4-6d3a-4e21-8b15-760a46f5dde1))
(fp_line (start 84.249499 -17.97) (end 84.555126 -17.97)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 98614d57-ff0d-437a-866c-21c0ad0f5158))
(fp_line (start 84.260664 -25.33) (end 84.555126 -25.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3585e226-8c43-43e1-8eb0-ea6e5f07b201))
(fp_line (start 84.260664 -20.63) (end 84.555126 -20.63)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aee6a37e-a83a-40a8-bf9f-7d5a84e412b9))
(fp_line (start 84.470065 -81.168005) (end 84.470065 -81.978005)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 959844f5-b23f-437a-8046-e1ee3128260f))
(fp_line (start 84.480065 -77.558005) (end 84.480065 -76.578005)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4a97e620-480f-4087-b8b0-37784191cfc3))
(fp_line (start 84.480065 -73.358005) (end 84.480065 -72.378005)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eb009e86-6814-4ec5-8e45-34325e60784a))
(fp_line (start 84.50387 -68.000193) (end 84.50387 -68.980193)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e469b410-757c-4b29-91e5-07ace46380e7))
(fp_line (start 84.555126 -22.67) (end 84.555126 -25.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a3f1e0e7-ce3d-4160-9c73-02f1cbedcce4))
(fp_line (start 84.555126 -17.97) (end 84.555126 -20.63)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d3314683-0a3e-44cd-a86d-84b5f035acaa))
(fp_line (start 84.935126 -14.56) (end 83.935126 -15.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d42cab8d-5a06-4f7d-8975-03464a5cf55a))
(fp_line (start 84.935126 -14.56) (end 83.935126 -15.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f657325b-9717-4420-b929-8936580fd197))
(fp_line (start 84.935126 -0.44) (end 84.935126 -14.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9652c5f8-54cd-4c67-a663-070a4e7e32fb))
(fp_line (start 84.935126 -0.44) (end 84.935126 -14.56)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fe03ab90-2bc2-4378-bdef-e208ef5014f3))
(fp_line (start 85.235126 -0.14) (end 85.235126 -2.55)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04c09986-53fd-4762-80b6-9c60895a6580))
(fp_line (start 85.235126 -0.14) (end 85.235126 -2.55)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b0b59d42-b7ca-416d-a0af-700bfa987a62))
(fp_line (start 87.135126 -91.725) (end 88.115126 -91.725)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12517f45-2c73-4262-9fd7-a31a54dfdc46))
(fp_line (start 87.173637 -84.358254) (end 88.153637 -84.358254)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6bb4fd84-30e3-456f-a5aa-d57d40d74576))
(fp_line (start 90.483943 -81.79971) (end 91.083943 -81.79971)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5c9ae8ae-c8f6-4955-95c7-981389beb938))
(fp_line (start 90.783943 -81.19971) (end 90.483943 -81.79971)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b480300c-eb1e-4ce9-a18f-f428c6b81536))
(fp_line (start 91.083943 -81.79971) (end 90.783943 -81.19971)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ccdc20c6-fd24-4947-96a3-e8e4d561f5fe))
(fp_line (start 91.373637 -84.358254) (end 92.353637 -84.358254)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0de3cc95-d212-490b-83de-722d951a6a91))
(fp_line (start 91.725126 -91.715) (end 92.535126 -91.715)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6042a62e-79a0-4842-98be-f3dcc43b515d))
(fp_line (start 91.773943 -81.19971) (end 91.773943 -82.00971)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4f0dfb0d-78ad-4e8d-ad01-87ad9f1e175b))
(fp_line (start 91.783943 -77.58971) (end 91.783943 -76.60971)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 181ee51d-ecf0-4672-80e9-b184cc206584))
(fp_line (start 91.783943 -73.38971) (end 91.783943 -72.40971)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97b7d868-ada0-4c60-8602-803ec98c2f0e))
(fp_line (start 91.807748 -68.031898) (end 91.807748 -69.011898)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c7769bd3-6d01-4414-b369-1748d00bd215))
(fp_line (start 18.012559 -31.737182) (end 18 -15)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp eb9fbb3a-119e-4520-8c01-9099991cf49f))
(fp_line (start 18.012559 -31.737182) (end 18.012562 -74.787438)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 67e49204-9bb2-4291-b82b-465ea4bc49f3))
(fp_line (start 20 -13) (end 23 -13)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 37821c19-d3cf-4f90-8f5c-9963cc5634e4))
(fp_line (start 25 -11) (end 25 -3.287437)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 8b68a2af-1800-4ecd-b59d-a8b834e74a62))
(fp_line (start 57.9 -1.3) (end 27 -1.287437)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp a35e423d-4343-48b4-b730-43c6dabdc95a))
(fp_line (start 59.9 -3.3) (end 59.899911 -8.00008)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 7915e8ff-a00f-4a43-856f-d5190d4cb1c8))
(fp_line (start 61.899911 -10.00008) (end 76.060074 -9.999926)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 5c6323bf-bde9-4e07-a131-e7e1226b7e8f))
(fp_line (start 75.062815 -81.787437) (end 25.012563 -81.787437)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 677209d3-e7a0-4c13-98d6-3ce16334bba8))
(fp_line (start 78.062811 -27.73718) (end 78.060074 -11.999926)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 3005e070-f79c-4e42-9b85-680d5eff95b5))
(fp_line (start 80.062811 -29.73718) (end 95.512563 -29.73718)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 84a0e996-97cc-42f2-9a76-086f39f01d08))
(fp_line (start 82.062814 -74.787436) (end 82.062814 -67.087437)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 5a834a20-b038-4adc-94c2-a661e68ede4e))
(fp_line (start 95.512563 -65.087437) (end 84.062814 -65.087437)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp f9a9f7d0-ef5b-46ca-9ce5-82f231d20656))
(fp_line (start 97.512563 -31.73718) (end 97.512563 -63.087437)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 5bdd399d-db8f-428a-8f08-bdab709d88fe))
(fp_arc (start 18.012562 -74.787438) (mid 20.062814 -79.737186) (end 25.012563 -81.787437)
(stroke (width 0.1) (type solid)) (layer "Edge.Cuts") (tstamp 90b08c6f-b31c-42cc-b89f-c33fbaf34519))
(fp_arc (start 20 -13) (mid 18.585786 -13.585786) (end 18 -15)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 58dacef1-1045-4ed5-840a-8c983ce33156))
(fp_arc (start 23 -13) (mid 24.414214 -12.414214) (end 25 -11)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp da7dc74f-a68d-4ba6-8011-66219223d9c4))
(fp_arc (start 27 -1.287437) (mid 25.585777 -1.873212) (end 25 -3.287437)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp dcd0ca86-5774-42c9-bcc5-c198834fcb1e))
(fp_arc (start 59.899911 -8.00008) (mid 60.48572 -9.414273) (end 61.899911 -10.00008)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 87e6ec75-303d-4f05-b893-f927b57811d1))
(fp_arc (start 59.9 -3.3) (mid 59.314184 -1.885816) (end 57.9 -1.3)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 17747b5c-74f5-4beb-a5c7-e576687665ca))
(fp_arc (start 75.062815 -81.787437) (mid 80.012603 -79.737224) (end 82.062814 -74.787436)
(stroke (width 0.1) (type solid)) (layer "Edge.Cuts") (tstamp c67e7657-840e-4671-bdad-fee12ac14f52))
(fp_arc (start 78.060074 -11.999926) (mid 77.474266 -10.585734) (end 76.060074 -9.999926)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 3a6e599b-2e4d-4dbd-8494-6c3cb0a94e32))
(fp_arc (start 78.062811 -27.73718) (mid 78.64862 -29.151373) (end 80.062811 -29.73718)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 822e0a43-3154-4647-94e7-4edda4d78887))
(fp_arc (start 84.062814 -65.087437) (mid 82.648604 -65.673221) (end 82.062814 -67.087437)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 001ad53d-3440-4997-a4f6-32c2246993c1))
(fp_arc (start 95.512563 -65.087437) (mid 96.926749 -64.501631) (end 97.512563 -63.087437)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp dcc39e81-c64a-4d65-a0f1-c483c34a4f03))
(fp_arc (start 97.512563 -31.73718) (mid 96.926803 -30.322928) (end 95.512563 -29.73718)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 26113443-9329-4aab-9f0e-1b919805c31c))
(fp_line (start 79.925126 -15.45) (end 79.925126 -0.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ecf89758-6d59-46f2-ba3a-efdd5087b41a))
(fp_line (start 79.925126 -0.55) (end 84.825126 -0.55)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 80b3ee1d-42cd-4d95-ad7a-1b4e7f3dcbf8))
(fp_line (start 83.825126 -15.45) (end 79.925126 -15.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1863c562-4ccf-4f25-a1d1-23943bdfa5b3))
(fp_line (start 84.118019 -3) (end 84.825126 -3.5)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 29a4696a-761b-4fe6-9c93-69d84a7f0ee1))
(fp_line (start 84.825126 -14.45) (end 83.825126 -15.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d1c45910-2f52-4bbb-bccc-5a8fb4a08f50))
(fp_line (start 84.825126 -2.5) (end 84.118019 -3)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ca714409-5060-40f9-b400-7981e3f925cc))
(fp_line (start 84.825126 -0.55) (end 84.825126 -14.45)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e86d5150-a518-41f3-8a8d-020ddc570891))
(fp_line (start 0 -96.474874) (end 0 -3.474874)
(stroke (width 0.1) (type default)) (layer "User.1") (tstamp f1cb5cd6-c913-4523-a4a4-81633cce1ea2))
(fp_line (start 3.5 0.025126) (end 96.5 0.025126)
(stroke (width 0.1) (type default)) (layer "User.1") (tstamp 8f2f3d06-14f3-49a2-9f96-17181d3dd16b))
(fp_line (start 96.5 -99.974874) (end 3.5 -99.974874)
(stroke (width 0.1) (type default)) (layer "User.1") (tstamp 17500326-18e7-4c7c-822b-1357d4473ea6))
(fp_line (start 100 -3.474874) (end 100 -96.474874)
(stroke (width 0.1) (type default)) (layer "User.1") (tstamp d46f2aeb-ac1c-46c1-b0ad-349d33622f83))
(fp_arc (start 0 -96.474874) (mid 1.025128 -98.949746) (end 3.5 -99.974874)
(stroke (width 0.1) (type default)) (layer "User.1") (tstamp 0e258ea3-038e-4cf2-9668-bb75c7731353))
(fp_arc (start 3.5 0.025126) (mid 1.025128 -1.000002) (end 0 -3.474874)
(stroke (width 0.1) (type default)) (layer "User.1") (tstamp 184c89cd-aef5-470a-8370-29fe9ab1afcd))
(fp_arc (start 96.5 -99.974874) (mid 98.974865 -98.949746) (end 100 -96.474874)
(stroke (width 0.1) (type default)) (layer "User.1") (tstamp fcea509c-69d2-4668-9307-4060274b3329))
(fp_arc (start 100 -3.474874) (mid 98.974865 -1.000017) (end 96.5 0.025126)
(stroke (width 0.1) (type default)) (layer "User.1") (tstamp 26cc3760-0a17-425f-949f-696fdb1eaecd))
(pad "A1" thru_hole circle (at 9.300126 -25.8 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 1 "/ETB_N") (pinfunction "OUT_DC1-") (pintype "passive") (tstamp d144d7db-d56f-4441-882b-446e2b072f59))
(pad "A2" thru_hole circle (at 9.300126 -30 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 22 "unconnected-(M1-OUT_DC2--PadA2)") (pinfunction "OUT_DC2-") (pintype "passive") (tstamp 86bfa9cd-669a-4edb-9f63-f70339e74d21))
(pad "A3" thru_hole circle (at 9.300126 -34.2 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "passive") (tstamp 2f054da4-2b64-453e-a0f6-e4b564c5baa7))
(pad "A3" thru_hole circle (at 10.800126 -35.05 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "passive") (tstamp 42808e23-974a-4fa5-b45c-e95937dbb655))
(pad "A4" thru_hole circle (at 9.300126 -38.4 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "passive") (tstamp e9d9e2ce-582b-40b2-9f93-a8d370e9a4b4))
(pad "A4" thru_hole circle (at 10.800126 -37.59 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "passive") (tstamp 7900717a-50f7-47fc-aa8c-259d2b55fd05))
(pad "A5" thru_hole circle (at 14.800126 -25.8 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 4 "/ETB_P") (pinfunction "OUT_DC1+") (pintype "passive") (tstamp 5dd6dc1f-e482-40c2-9746-4113aded8563))
(pad "A6" thru_hole circle (at 14.800126 -30 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 5 "/DC2+") (pinfunction "OUT_DC2+") (pintype "passive") (tstamp a56f4913-b7f8-4b82-b716-7206ee6e2ae6))
(pad "A7" thru_hole circle (at 13.340126 -35.05 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 7 "/IN_VIGN") (pinfunction "IN_VIGN") (pintype "passive") (tstamp b676bcd2-566d-4972-a821-f14921e8756a))
(pad "A7" thru_hole circle (at 14.800126 -34.2 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 7 "/IN_VIGN") (pinfunction "IN_VIGN") (pintype "passive") (tstamp 1c4256c7-9418-4521-af1b-fe50fd6180eb))
(pad "A8" thru_hole circle (at 13.340126 -37.59 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 9 "+12V_RAW") (pinfunction "IN_V_MAIN") (pintype "passive") (tstamp d40b2b2a-4720-4e87-b8ee-33854c1dca24))
(pad "A8" thru_hole circle (at 14.800126 -38.4 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 9 "+12V_RAW") (pinfunction "IN_V_MAIN") (pintype "passive") (tstamp 94a9586a-08ee-4e97-8898-6f3e065fd838))
(pad "B1" thru_hole circle (at 9.300126 -45.2 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 66 "/OUT_INJ6") (pinfunction "OUT_INJ6") (pintype "passive") (tstamp bd63bfec-4aee-4047-bbb5-06be74a72c43))
(pad "B2" thru_hole circle (at 9.300126 -49.4 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 67 "/OUT_INJ5") (pinfunction "OUT_INJ5") (pintype "passive") (tstamp 60c02a50-a30f-4805-a8b4-a91e026b7d38))
(pad "B2" thru_hole circle (at 10.800126 -50.25 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 67 "/OUT_INJ5") (pinfunction "OUT_INJ5") (pintype "passive") (tstamp b97553de-be71-4436-ab06-72b8086eb0ff))
(pad "B3" thru_hole circle (at 9.300126 -53.6 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 12 "/OUT_INJ4") (pinfunction "OUT_INJ4") (pintype "passive") (tstamp 93f268a9-c65e-4564-8f78-bfadf1128dd8))
(pad "B3" thru_hole circle (at 10.800126 -52.79 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 12 "/OUT_INJ4") (pinfunction "OUT_INJ4") (pintype "passive") (tstamp f11f9d5a-5aa5-4ff8-84c1-95c203f07477))
(pad "B4" thru_hole circle (at 9.300126 -57.8 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 14 "/OUT_INJ3") (pinfunction "OUT_INJ3") (pintype "passive") (tstamp 57e25774-557f-4ad5-a3a5-7e609e2939b8))
(pad "B4" thru_hole circle (at 10.800126 -58.65 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 14 "/OUT_INJ3") (pinfunction "OUT_INJ3") (pintype "passive") (tstamp 44cb4268-eb61-468d-a736-388e6d9e3765))
(pad "B5" thru_hole circle (at 9.300126 -62 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 16 "/OUT_INJ2") (pinfunction "OUT_INJ2") (pintype "passive") (tstamp 6ef5fb6c-aa55-4991-a313-a50ef11a947e))
(pad "B5" thru_hole circle (at 10.800126 -61.19 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 16 "/OUT_INJ2") (pinfunction "OUT_INJ2") (pintype "passive") (tstamp d4225d9d-ca19-48fc-b72f-4c574fbadde2))
(pad "B6" thru_hole circle (at 9.300126 -66.2 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 19 "/OUT_INJ1") (pinfunction "OUT_INJ1") (pintype "passive") (tstamp 792aa668-530d-490e-b1b7-0fdd6e7fe010))
(pad "B6" thru_hole circle (at 10.800126 -67.05 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 19 "/OUT_INJ1") (pinfunction "OUT_INJ1") (pintype "passive") (tstamp 7bfec19b-b0ad-440c-8e53-d8e7baf547ef))
(pad "B7" thru_hole circle (at 9.300126 -70.4 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 74 "/Wastegate_Control") (pinfunction "OUT_LS1") (pintype "passive") (tstamp 0ed947fb-5e73-4406-8972-b8d36d9be10c))
(pad "B7" thru_hole circle (at 10.800126 -69.59 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 74 "/Wastegate_Control") (pinfunction "OUT_LS1") (pintype "passive") (tstamp 1e160c6e-a6e1-4443-bdd4-efec18dec12a))
(pad "B8" thru_hole circle (at 9.300126 -74.6 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 76 "/Engine_Light") (pinfunction "OUT_LS_HOT2") (pintype "passive") (tstamp e11cf502-856d-4060-a3e6-f6e5a4cba1df))
(pad "B8" thru_hole circle (at 10.800126 -75.45 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 76 "/Engine_Light") (pinfunction "OUT_LS_HOT2") (pintype "passive") (tstamp a5081a35-1849-470c-a094-b654a7b0b15c))
(pad "B9" thru_hole circle (at 9.300126 -78.8 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 78 "/TACHO") (pinfunction "OUT_LS_HOT1") (pintype "passive") (tstamp 20d9ec77-038c-44fd-9ce9-6b24deffd378))
(pad "B9" thru_hole circle (at 10.800126 -77.99 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 78 "/TACHO") (pinfunction "OUT_LS_HOT1") (pintype "passive") (tstamp 894eeab4-81b0-4559-9269-a1c44040f5ff))
(pad "B10" thru_hole circle (at 14.800126 -45.2 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 72 "/OUT_IGN6") (pinfunction "OUT_IGN6") (pintype "passive") (tstamp d0825b05-4a57-41f4-83d1-d9ad9a27a137))
(pad "B11" thru_hole circle (at 13.340126 -50.25 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "/OUT_IGN4") (pinfunction "OUT_IGN4") (pintype "passive") (tstamp aae5dbba-ca3a-429f-8eeb-9aee55c9a1ff))
(pad "B11" thru_hole circle (at 14.800126 -49.4 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 24 "/OUT_IGN4") (pinfunction "OUT_IGN4") (pintype "passive") (tstamp 4dc374fe-8555-4a59-ba60-a639b02cab36))
(pad "B12" thru_hole circle (at 13.340126 -52.79 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 25 "/OUT_IGN3") (pinfunction "OUT_IGN3") (pintype "passive") (tstamp e318cd76-0309-43a9-8a87-72771ec9d8e7))
(pad "B12" thru_hole circle (at 14.800126 -53.6 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 25 "/OUT_IGN3") (pinfunction "OUT_IGN3") (pintype "passive") (tstamp b653c4a3-b958-432e-b12f-8db49961060d))
(pad "B13" thru_hole circle (at 13.340126 -58.65 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 73 "/OUT_IGN5") (pinfunction "OUT_IGN5") (pintype "passive") (tstamp 1ef45bb4-66dd-4030-a735-ceab13bd392d))
(pad "B13" thru_hole circle (at 14.800126 -57.8 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 73 "/OUT_IGN5") (pinfunction "OUT_IGN5") (pintype "passive") (tstamp 5f086d68-b6b3-48ae-9bf8-88231c254e4f))
(pad "B14" thru_hole circle (at 13.340126 -61.19 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 26 "/OUT_IGN2") (pinfunction "OUT_IGN2") (pintype "passive") (tstamp 9b893fd7-f672-4ac5-855b-634623373a0c))
(pad "B14" thru_hole circle (at 14.800126 -62 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 26 "/OUT_IGN2") (pinfunction "OUT_IGN2") (pintype "passive") (tstamp 6711354b-0906-4809-8a90-a5e473395c82))
(pad "B15" thru_hole circle (at 13.340126 -67.05 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 27 "/OUT_IGN1") (pinfunction "OUT_IGN1") (pintype "passive") (tstamp 4dd01405-7a7a-4adc-b1a7-c8542791581f))
(pad "B15" thru_hole circle (at 14.800126 -66.2 90) (size 2 2) (drill 1.2) (layers "*.Cu" "*.Mask")
(net 27 "/OUT_IGN1") (pinfunction "OUT_IGN1") (pintype "passive") (tstamp f52ccc9b-6f6f-421c-82ba-70503c83ed52))