-
Notifications
You must be signed in to change notification settings - Fork 3
/
hydraflash.kicad_pcb
3607 lines (3586 loc) · 340 KB
/
hydraflash.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 4) (host pcbnew 4.0.6)
(general
(links 37)
(no_connects 2)
(area 115.924999 75.924999 176.075001 113.075001)
(thickness 1.6002)
(drawings 26)
(tracks 1953)
(zones 0)
(modules 10)
(nets 53)
)
(page A4)
(title_block
(title "HydraBus shield template")
(date 2015-12-17)
(comment 1 http://hydrabus.com/)
(comment 2 "Based on the original HydraBus Eagle shield template")
(comment 3 "Antti Nykänen <[email protected]>")
(comment 4 "CC BY-SA 4.0")
)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(44 Edge.Cuts user)
(47 F.CrtYd user hide)
(49 F.Fab user)
)
(setup
(last_trace_width 0.4064)
(user_trace_width 0.2032)
(user_trace_width 0.3048)
(user_trace_width 0.4064)
(trace_clearance 0.1524)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.1524)
(segment_width 0.1)
(edge_width 0.15)
(via_size 0.6858)
(via_drill 0.3302)
(via_min_size 0.6858)
(via_min_drill 0.3302)
(uvia_size 0.762)
(uvia_drill 0.508)
(uvias_allowed no)
(uvia_min_size 0)
(uvia_min_drill 0)
(pcb_text_width 0.12)
(pcb_text_size 0.8 0.8)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1 1)
(pad_drill 0.5)
(pad_to_mask_clearance 0.2)
(aux_axis_origin 0 0)
(grid_origin 176 76)
(visible_elements 7FFFFFFF)
(pcbplotparams
(layerselection 0x010f0_80000001)
(usegerberextensions true)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15)
(hpglpenoverlay 2)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue false)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory gerber))
)
(net 0 "")
(net 1 /PB0)
(net 2 /PB11)
(net 3 /PB1)
(net 4 /PB10)
(net 5 /PB2_BOOT1)
(net 6 /PB9)
(net 7 /PB3)
(net 8 /PB8)
(net 9 /PB4)
(net 10 /PB7)
(net 11 /PB5)
(net 12 /PB6)
(net 13 +3V3)
(net 14 GND)
(net 15 +5V)
(net 16 /PA0)
(net 17 /PA15)
(net 18 /PA1)
(net 19 /BOOT0)
(net 20 /PA2)
(net 21 /PD2_SDIO_CMD)
(net 22 /PA3)
(net 23 /USB0D_P)
(net 24 /PA4)
(net 25 /USB0D_N)
(net 26 /PA5)
(net 27 /PA10)
(net 28 /PA6)
(net 29 /PA9)
(net 30 /PA7)
(net 31 /PA8)
(net 32 /PC0)
(net 33 /PC15)
(net 34 /PC1)
(net 35 /PC14)
(net 36 /PC2)
(net 37 /PC13)
(net 38 /PC3)
(net 39 /PC12_SDIO_CK)
(net 40 /PC4)
(net 41 /PC11_SDIO_D3)
(net 42 /PC5)
(net 43 /PC10_SDIO_D2)
(net 44 /PC6)
(net 45 /PC9_SDIO_D1)
(net 46 /PC7)
(net 47 /PC8_SDIO_D0)
(net 48 /SWD_SWCLK)
(net 49 /SWD_SWDIO)
(net 50 /NRST)
(net 51 "Net-(J4-Pad6)")
(net 52 "Net-(P1-Pad2)")
(net_class Default "This is the default net class."
(clearance 0.1524)
(trace_width 0.1524)
(via_dia 0.6858)
(via_drill 0.3302)
(uvia_dia 0.762)
(uvia_drill 0.508)
(add_net +3V3)
(add_net +5V)
(add_net /BOOT0)
(add_net /NRST)
(add_net /PA0)
(add_net /PA1)
(add_net /PA10)
(add_net /PA15)
(add_net /PA2)
(add_net /PA3)
(add_net /PA4)
(add_net /PA5)
(add_net /PA6)
(add_net /PA7)
(add_net /PA8)
(add_net /PA9)
(add_net /PB0)
(add_net /PB1)
(add_net /PB10)
(add_net /PB11)
(add_net /PB2_BOOT1)
(add_net /PB3)
(add_net /PB4)
(add_net /PB5)
(add_net /PB6)
(add_net /PB7)
(add_net /PB8)
(add_net /PB9)
(add_net /PC0)
(add_net /PC1)
(add_net /PC10_SDIO_D2)
(add_net /PC11_SDIO_D3)
(add_net /PC12_SDIO_CK)
(add_net /PC13)
(add_net /PC14)
(add_net /PC15)
(add_net /PC2)
(add_net /PC3)
(add_net /PC4)
(add_net /PC5)
(add_net /PC6)
(add_net /PC7)
(add_net /PC8_SDIO_D0)
(add_net /PC9_SDIO_D1)
(add_net /PD2_SDIO_CMD)
(add_net /SWD_SWCLK)
(add_net /SWD_SWDIO)
(add_net /USB0D_N)
(add_net /USB0D_P)
(add_net GND)
(add_net "Net-(J4-Pad6)")
(add_net "Net-(P1-Pad2)")
)
(net_class Bigger ""
(clearance 0.1524)
(trace_width 0.2032)
(via_dia 0.6858)
(via_drill 0.3302)
(uvia_dia 0.762)
(uvia_drill 0.508)
)
(net_class VCC ""
(clearance 0.1524)
(trace_width 0.4064)
(via_dia 0.6858)
(via_drill 0.3302)
(uvia_dia 0.762)
(uvia_drill 0.508)
)
(module tsop48_socket:TSOP48ZIF (layer F.Cu) (tedit 58F7111C) (tstamp 58FBFE9A)
(at 140.44 82.47 180)
(path /574F360F)
(fp_text reference U1 (at 7 -0.5 180) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Flash_NAND (at 6.5 -24 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 21 -2) (end 20.5 -2) (layer F.SilkS) (width 0.15))
(fp_line (start 21 -22.5) (end 20.5 -22.5) (layer F.SilkS) (width 0.15))
(fp_line (start -7 -22.5) (end 20.5 -22.5) (layer F.SilkS) (width 0.15))
(fp_line (start 21 -22.5) (end 21 -2) (layer F.SilkS) (width 0.15))
(fp_line (start 20.5 -2) (end -7 -2) (layer F.SilkS) (width 0.15))
(fp_line (start -7 -2) (end -7 -22.5) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at 0 -18) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 2 thru_hole circle (at -2.5 -17.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 3 thru_hole circle (at -5 -17) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 4 thru_hole circle (at 0 -16.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 5 thru_hole circle (at -2.5 -16) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 6 thru_hole circle (at -5 -15.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 7 thru_hole circle (at 0 -15) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS)
(net 1 /PB0))
(pad 8 thru_hole circle (at -2.5 -14.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS)
(net 11 /PB5))
(pad 9 thru_hole circle (at -5 -14) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS)
(net 9 /PB4))
(pad 10 thru_hole circle (at 0 -13.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 11 thru_hole circle (at -2.5 -13) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 12 thru_hole circle (at -5 -12.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS)
(net 13 +3V3))
(pad 13 thru_hole circle (at 0 -12) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS)
(net 14 GND))
(pad 14 thru_hole circle (at -2.5 -11.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 15 thru_hole circle (at -5 -11) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 16 thru_hole circle (at 0 -10.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS)
(net 7 /PB3))
(pad 17 thru_hole circle (at -2.5 -10) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS)
(net 5 /PB2_BOOT1))
(pad 18 thru_hole circle (at -5 -9.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS)
(net 3 /PB1))
(pad 19 thru_hole circle (at 0 -9) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS)
(net 52 "Net-(P1-Pad2)"))
(pad 20 thru_hole circle (at -2.5 -8.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 21 thru_hole circle (at -5 -8) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 22 thru_hole circle (at 0 -7.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 23 thru_hole circle (at -2.5 -7) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 24 thru_hole circle (at -5 -6.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 25 thru_hole circle (at 14 -6.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 26 thru_hole circle (at 16.5 -7) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 27 thru_hole circle (at 19 -7.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 28 thru_hole circle (at 14 -8) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 29 thru_hole circle (at 16.5 -8.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS)
(net 32 /PC0))
(pad 30 thru_hole circle (at 19 -9) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS)
(net 34 /PC1))
(pad 31 thru_hole circle (at 14 -9.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS)
(net 36 /PC2))
(pad 32 thru_hole circle (at 16.5 -10) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS)
(net 38 /PC3))
(pad 33 thru_hole circle (at 19 -10.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 34 thru_hole circle (at 14 -11) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 35 thru_hole circle (at 16.5 -11.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 36 thru_hole circle (at 19 -12) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS)
(net 14 GND))
(pad 37 thru_hole circle (at 14 -12.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS)
(net 13 +3V3))
(pad 38 thru_hole circle (at 16.5 -13) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 39 thru_hole circle (at 19 -13.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 40 thru_hole circle (at 14 -14) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 41 thru_hole circle (at 16.5 -14.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS)
(net 40 /PC4))
(pad 42 thru_hole circle (at 19 -15) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS)
(net 42 /PC5))
(pad 43 thru_hole circle (at 14 -15.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS)
(net 44 /PC6))
(pad 44 thru_hole circle (at 16.5 -16) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS)
(net 46 /PC7))
(pad 45 thru_hole circle (at 19 -16.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 46 thru_hole circle (at 14 -17) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 47 thru_hole circle (at 16.5 -17.5) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 48 thru_hole circle (at 19 -18) (size 1 1) (drill 0.7) (layers *.Cu *.Mask F.SilkS))
(pad 26 thru_hole circle (at 16 -20.5 180) (size 3.1 3.1) (drill 3) (layers *.Cu *.Mask F.SilkS))
(pad 27 thru_hole circle (at -2.5 -4 180) (size 3.1 3.1) (drill 3) (layers *.Cu *.Mask F.SilkS))
)
(module umetronics:Hydrabus_Shield_Conn_2x10 (layer B.Cu) (tedit 5857F1B8) (tstamp 56755C5B)
(at 143.361 109.528)
(descr "Through hole socket strip")
(tags "socket strip")
(path /5672B8E4)
(fp_text reference J2 (at 26.289 -1.143) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value CONN_02X10 (at 0 3.1) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer B.SilkS) (width 0.1))
(fp_line (start 1.27 1.27) (end 1.27 -3.81) (layer B.SilkS) (width 0.1))
(fp_line (start -1.27 -1.27) (end -1.27 1.27) (layer B.SilkS) (width 0.1))
(fp_line (start -1.27 1.27) (end 24.13 1.27) (layer B.SilkS) (width 0.1))
(fp_line (start 24.13 1.27) (end 24.13 -3.81) (layer B.SilkS) (width 0.1))
(fp_line (start 24.13 -3.81) (end -1.27 -3.81) (layer B.SilkS) (width 0.1))
(fp_line (start -1.27 -3.81) (end -1.27 -1.27) (layer B.SilkS) (width 0.1))
(fp_line (start -1.75 1.75) (end -1.75 -4.3) (layer B.CrtYd) (width 0.05))
(fp_line (start 24.65 1.75) (end 24.65 -4.3) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.75 1.75) (end 24.65 1.75) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.75 -4.3) (end 24.65 -4.3) (layer B.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 15 +5V))
(pad 2 thru_hole oval (at 0 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 14 GND))
(pad 3 thru_hole oval (at 2.54 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 16 /PA0))
(pad 4 thru_hole oval (at 2.54 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 17 /PA15))
(pad 5 thru_hole oval (at 5.08 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 18 /PA1))
(pad 6 thru_hole oval (at 5.08 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 19 /BOOT0))
(pad 7 thru_hole oval (at 7.62 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 20 /PA2))
(pad 8 thru_hole oval (at 7.62 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 21 /PD2_SDIO_CMD))
(pad 9 thru_hole oval (at 10.16 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 22 /PA3))
(pad 10 thru_hole oval (at 10.16 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 23 /USB0D_P))
(pad 11 thru_hole oval (at 12.7 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 24 /PA4))
(pad 12 thru_hole oval (at 12.7 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 25 /USB0D_N))
(pad 13 thru_hole oval (at 15.24 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 26 /PA5))
(pad 14 thru_hole oval (at 15.24 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 27 /PA10))
(pad 15 thru_hole oval (at 17.78 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 28 /PA6))
(pad 16 thru_hole oval (at 17.78 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 29 /PA9))
(pad 17 thru_hole oval (at 20.32 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 30 /PA7))
(pad 18 thru_hole oval (at 20.32 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 31 /PA8))
(pad 19 thru_hole oval (at 22.86 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 13 +3V3))
(pad 20 thru_hole oval (at 22.86 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 14 GND))
(model Socket_Strips.3dshapes/Socket_Strip_Straight_2x10.wrl
(at (xyz 0.45 -0.05 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module umetronics:Hydrabus_Shield_Conn_2x07 (layer B.Cu) (tedit 5857F1B4) (tstamp 567562EA)
(at 171.809 101.908 90)
(descr "Through hole socket strip")
(tags "socket strip")
(path /5672B942)
(fp_text reference J1 (at -2.54 -1.27 180) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value CONN_02X07 (at 0 3.1 90) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 1.27 -1.27) (end 1.27 -3.81) (layer B.SilkS) (width 0.1))
(fp_line (start -1.27 -1.27) (end 1.27 -1.27) (layer B.SilkS) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer B.SilkS) (width 0.1))
(fp_line (start 16.51 -3.81) (end 16.51 1.27) (layer B.SilkS) (width 0.1))
(fp_line (start 16.51 1.27) (end -1.27 1.27) (layer B.SilkS) (width 0.1))
(fp_line (start -1.27 1.27) (end -1.27 -3.81) (layer B.SilkS) (width 0.1))
(fp_line (start -1.27 -3.81) (end 16.51 -3.81) (layer B.SilkS) (width 0.1))
(fp_line (start -1.75 1.75) (end -1.75 -4.3) (layer B.CrtYd) (width 0.05))
(fp_line (start 17 1.75) (end 17 -4.3) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.75 1.75) (end 17 1.75) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.75 -4.3) (end 17 -4.3) (layer B.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 1 /PB0))
(pad 2 thru_hole oval (at 0 -2.54 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 2 /PB11))
(pad 3 thru_hole oval (at 2.54 0 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 3 /PB1))
(pad 4 thru_hole oval (at 2.54 -2.54 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 4 /PB10))
(pad 5 thru_hole oval (at 5.08 0 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 5 /PB2_BOOT1))
(pad 6 thru_hole oval (at 5.08 -2.54 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 6 /PB9))
(pad 7 thru_hole oval (at 7.62 0 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 7 /PB3))
(pad 8 thru_hole oval (at 7.62 -2.54 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 8 /PB8))
(pad 9 thru_hole oval (at 10.16 0 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 9 /PB4))
(pad 10 thru_hole oval (at 10.16 -2.54 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 10 /PB7))
(pad 11 thru_hole oval (at 12.7 0 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 11 /PB5))
(pad 12 thru_hole oval (at 12.7 -2.54 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 12 /PB6))
(pad 13 thru_hole oval (at 15.24 0 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 13 +3V3))
(pad 14 thru_hole oval (at 15.24 -2.54 90) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 14 GND))
(model Socket_Strips.3dshapes/Socket_Strip_Straight_2x07.wrl
(at (xyz 0.3 -0.05 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module umetronics:Hydrabus_Shield_Conn_1x06 (layer B.Cu) (tedit 567557D8) (tstamp 567564F9)
(at 153.521 84.8265)
(descr "Through hole socket strip")
(tags "socket strip")
(path /5672B97D)
(fp_text reference J4 (at 0 -2.54) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value CONN_01X06 (at 0 3.1) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 1.27 -1.27) (end 1.27 1.27) (layer B.SilkS) (width 0.1))
(fp_line (start -1.27 -1.27) (end -1.27 1.27) (layer B.SilkS) (width 0.1))
(fp_line (start -1.27 1.27) (end 13.97 1.27) (layer B.SilkS) (width 0.1))
(fp_line (start 13.97 1.27) (end 13.97 -1.27) (layer B.SilkS) (width 0.1))
(fp_line (start 13.97 -1.27) (end -1.27 -1.27) (layer B.SilkS) (width 0.1))
(fp_line (start -1.75 1.75) (end -1.75 -1.75) (layer B.CrtYd) (width 0.05))
(fp_line (start 14.45 1.75) (end 14.45 -1.75) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.75 1.75) (end 14.45 1.75) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.75) (end 14.45 -1.75) (layer B.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 13 +3V3))
(pad 2 thru_hole oval (at 2.54 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 48 /SWD_SWCLK))
(pad 3 thru_hole oval (at 5.08 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 14 GND))
(pad 4 thru_hole oval (at 7.62 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 49 /SWD_SWDIO))
(pad 5 thru_hole oval (at 10.16 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 50 /NRST))
(pad 6 thru_hole oval (at 12.7 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 51 "Net-(J4-Pad6)"))
(model Socket_Strips.3dshapes/Socket_Strip_Straight_1x06.wrl
(at (xyz 0.25 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module umetronics:Hydrabus_Shield_Conn_2x10 (layer B.Cu) (tedit 5857F1B2) (tstamp 56755C7D)
(at 143.361 81.588)
(descr "Through hole socket strip")
(tags "socket strip")
(path /5672B7D1)
(fp_text reference J3 (at 26.162 -1.2065) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value CONN_02X10 (at 0 3.1) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 1.27 -1.27) (end -1.27 -1.27) (layer B.SilkS) (width 0.1))
(fp_line (start 1.27 1.27) (end 1.27 -3.81) (layer B.SilkS) (width 0.1))
(fp_line (start -1.27 -1.27) (end -1.27 1.27) (layer B.SilkS) (width 0.1))
(fp_line (start -1.27 1.27) (end 24.13 1.27) (layer B.SilkS) (width 0.1))
(fp_line (start 24.13 1.27) (end 24.13 -3.81) (layer B.SilkS) (width 0.1))
(fp_line (start 24.13 -3.81) (end -1.27 -3.81) (layer B.SilkS) (width 0.1))
(fp_line (start -1.27 -3.81) (end -1.27 -1.27) (layer B.SilkS) (width 0.1))
(fp_line (start -1.75 1.75) (end -1.75 -4.3) (layer B.CrtYd) (width 0.05))
(fp_line (start 24.65 1.75) (end 24.65 -4.3) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.75 1.75) (end 24.65 1.75) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.75 -4.3) (end 24.65 -4.3) (layer B.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 14 GND))
(pad 2 thru_hole oval (at 0 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 15 +5V))
(pad 3 thru_hole oval (at 2.54 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 32 /PC0))
(pad 4 thru_hole oval (at 2.54 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 33 /PC15))
(pad 5 thru_hole oval (at 5.08 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 34 /PC1))
(pad 6 thru_hole oval (at 5.08 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 35 /PC14))
(pad 7 thru_hole oval (at 7.62 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 36 /PC2))
(pad 8 thru_hole oval (at 7.62 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 37 /PC13))
(pad 9 thru_hole oval (at 10.16 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 38 /PC3))
(pad 10 thru_hole oval (at 10.16 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 39 /PC12_SDIO_CK))
(pad 11 thru_hole oval (at 12.7 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 40 /PC4))
(pad 12 thru_hole oval (at 12.7 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 41 /PC11_SDIO_D3))
(pad 13 thru_hole oval (at 15.24 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 42 /PC5))
(pad 14 thru_hole oval (at 15.24 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 43 /PC10_SDIO_D2))
(pad 15 thru_hole oval (at 17.78 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 44 /PC6))
(pad 16 thru_hole oval (at 17.78 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 45 /PC9_SDIO_D1))
(pad 17 thru_hole oval (at 20.32 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 46 /PC7))
(pad 18 thru_hole oval (at 20.32 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 47 /PC8_SDIO_D0))
(pad 19 thru_hole oval (at 22.86 0) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 14 GND))
(pad 20 thru_hole oval (at 22.86 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers *.Cu *.Mask B.SilkS)
(net 13 +3V3))
(model Socket_Strips.3dshapes/Socket_Strip_Straight_2x10.wrl
(at (xyz 0.45 -0.05 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module Pin_Headers:Pin_Header_Straight_1x02 (layer F.Cu) (tedit 58F72C24) (tstamp 574F3B3F)
(at 135.995 108.385 270)
(descr "Through hole pin header")
(tags "pin header")
(path /574F3EFB)
(fp_text reference P1 (at -2.54 1.27 360) (layer Cmts.User) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value WRITE_PROTECT (at 2.667 0.889 360) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.27 1.27) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start 1.55 -1.55) (end 1.55 0) (layer F.SilkS) (width 0.15))
(fp_line (start -1.75 -1.75) (end -1.75 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -1.75) (end 1.75 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 4.3) (end 1.75 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.27 1.27) (end -1.27 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 0) (end -1.55 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -1.55) (end 1.55 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 1.27) (end -1.27 3.81) (layer F.SilkS) (width 0.15))
(fp_line (start -1.27 3.81) (end 1.27 3.81) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole rect (at 0 0 270) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 14 GND))
(pad 2 thru_hole oval (at 0 2.54 270) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 52 "Net-(P1-Pad2)"))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x02.wrl
(at (xyz 0 -0.05 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(module Capacitors_SMD:C_0805_HandSoldering (layer B.Cu) (tedit 59423126) (tstamp 5856A1AB)
(at 128.769884 96.18746 270)
(descr "Capacitor SMD 0805, hand soldering")
(tags "capacitor 0805")
(path /574F4E5E)
(attr smd)
(fp_text reference C1 (at 3.71254 -0.030116 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 100nF (at 0 -2.1 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -2.3 1) (end 2.3 1) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.3 -1) (end 2.3 -1) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.3 1) (end -2.3 -1) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.3 1) (end 2.3 -1) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.5 0.85) (end -0.5 0.85) (layer B.SilkS) (width 0.15))
(fp_line (start -0.5 -0.85) (end 0.5 -0.85) (layer B.SilkS) (width 0.15))
(pad 1 smd rect (at -1.25 0 270) (size 1.5 1.25) (layers B.Cu B.Paste B.Mask)
(net 13 +3V3))
(pad 2 smd rect (at 1.25 0 270) (size 1.5 1.25) (layers B.Cu B.Paste B.Mask)
(net 14 GND))
(model Capacitors_SMD.3dshapes/C_0805_HandSoldering.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_SMD:C_0805_HandSoldering (layer B.Cu) (tedit 5942304E) (tstamp 5856A1B6)
(at 131.309884 96.18746 270)
(descr "Capacitor SMD 0805, hand soldering")
(tags "capacitor 0805")
(path /574F4079)
(attr smd)
(fp_text reference C2 (at 3.71254 0.009884 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 1uF (at 0 -2.1 270) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -2.3 1) (end 2.3 1) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.3 -1) (end 2.3 -1) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.3 1) (end -2.3 -1) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.3 1) (end 2.3 -1) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.5 0.85) (end -0.5 0.85) (layer B.SilkS) (width 0.15))
(fp_line (start -0.5 -0.85) (end 0.5 -0.85) (layer B.SilkS) (width 0.15))
(pad 1 smd rect (at -1.25 0 270) (size 1.5 1.25) (layers B.Cu B.Paste B.Mask)
(net 13 +3V3))
(pad 2 smd rect (at 1.25 0 270) (size 1.5 1.25) (layers B.Cu B.Paste B.Mask)
(net 14 GND))
(model Capacitors_SMD.3dshapes/C_0805_HandSoldering.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_SMD:C_0805_HandSoldering (layer B.Cu) (tedit 541A9B8D) (tstamp 5856A1C1)
(at 148.842 95.05)
(descr "Capacitor SMD 0805, hand soldering")
(tags "capacitor 0805")
(path /574F4268)
(attr smd)
(fp_text reference C3 (at 3.282 0) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 100nF (at 0 -2.1) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -2.3 1) (end 2.3 1) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.3 -1) (end 2.3 -1) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.3 1) (end -2.3 -1) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.3 1) (end 2.3 -1) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.5 0.85) (end -0.5 0.85) (layer B.SilkS) (width 0.15))
(fp_line (start -0.5 -0.85) (end 0.5 -0.85) (layer B.SilkS) (width 0.15))
(pad 1 smd rect (at -1.25 0) (size 1.5 1.25) (layers B.Cu B.Paste B.Mask)
(net 13 +3V3))
(pad 2 smd rect (at 1.25 0) (size 1.5 1.25) (layers B.Cu B.Paste B.Mask)
(net 14 GND))
(model Capacitors_SMD.3dshapes/C_0805_HandSoldering.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Capacitors_SMD:C_0805_HandSoldering (layer B.Cu) (tedit 541A9B8D) (tstamp 5856A1CC)
(at 148.842 96.828)
(descr "Capacitor SMD 0805, hand soldering")
(tags "capacitor 0805")
(path /574F4EA6)
(attr smd)
(fp_text reference C4 (at 3.282 0) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 1uF (at 0 -2.1) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -2.3 1) (end 2.3 1) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.3 -1) (end 2.3 -1) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.3 1) (end -2.3 -1) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.3 1) (end 2.3 -1) (layer B.CrtYd) (width 0.05))
(fp_line (start 0.5 0.85) (end -0.5 0.85) (layer B.SilkS) (width 0.15))
(fp_line (start -0.5 -0.85) (end 0.5 -0.85) (layer B.SilkS) (width 0.15))
(pad 1 smd rect (at -1.25 0) (size 1.5 1.25) (layers B.Cu B.Paste B.Mask)
(net 13 +3V3))
(pad 2 smd rect (at 1.25 0) (size 1.5 1.25) (layers B.Cu B.Paste B.Mask)
(net 14 GND))
(model Capacitors_SMD.3dshapes/C_0805_HandSoldering.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_text "<- PIN 1" (at 151.362 104.194) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(gr_line (start 176 111) (end 176 112) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 175 112) (end 176 112) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 174 113) (end 175 113) (angle 90) (layer Edge.Cuts) (width 0.15))
(dimension 37 (width 0.12) (layer Dwgs.User)
(gr_text "37,000 mm" (at 111.36 94.5 90) (layer Dwgs.User)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(feature1 (pts (xy 120 76) (xy 110.72 76)))
(feature2 (pts (xy 120 113) (xy 110.72 113)))
(crossbar (pts (xy 112 113) (xy 112 76)))
(arrow1a (pts (xy 112 76) (xy 112.586421 77.126504)))
(arrow1b (pts (xy 112 76) (xy 111.413579 77.126504)))
(arrow2a (pts (xy 112 113) (xy 112.586421 111.873496)))
(arrow2b (pts (xy 112 113) (xy 111.413579 111.873496)))
)
(dimension 60 (width 0.12) (layer Dwgs.User)
(gr_text "60,000 mm" (at 146 116.64) (layer Dwgs.User) (tstamp 574F36A1)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(feature1 (pts (xy 176 111) (xy 176 117.28)))
(feature2 (pts (xy 116 111) (xy 116 117.28)))
(crossbar (pts (xy 116 116) (xy 176 116)))
(arrow1a (pts (xy 176 116) (xy 174.873496 116.586421)))
(arrow1b (pts (xy 176 116) (xy 174.873496 115.413579)))
(arrow2a (pts (xy 116 116) (xy 117.126504 116.586421)))
(arrow2b (pts (xy 116 116) (xy 117.126504 115.413579)))
)
(dimension 10.668 (width 0.12) (layer Dwgs.User)
(gr_text 0,420 (at 174.862 81.334 270) (layer Dwgs.User)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(feature1 (pts (xy 171.809 86.668) (xy 175.502 86.668)))
(feature2 (pts (xy 171.809 76) (xy 175.502 76)))
(crossbar (pts (xy 174.222 76) (xy 174.222 86.668)))
(arrow1a (pts (xy 174.222 86.668) (xy 173.635579 85.541496)))
(arrow1b (pts (xy 174.222 86.668) (xy 174.808421 85.541496)))
(arrow2a (pts (xy 174.222 76) (xy 173.635579 77.126504)))
(arrow2b (pts (xy 174.222 76) (xy 174.808421 77.126504)))
)
(dimension 5.588 (width 0.12) (layer Dwgs.User)
(gr_text 0,220 (at 169.015 72.063) (layer Dwgs.User)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(feature1 (pts (xy 166.221 86.668) (xy 166.221 72.688)))
(feature2 (pts (xy 171.809 86.668) (xy 171.809 72.688)))
(crossbar (pts (xy 171.809 73.968) (xy 166.221 73.968)))
(arrow1a (pts (xy 166.221 73.968) (xy 167.347504 73.381579)))
(arrow1b (pts (xy 166.221 73.968) (xy 167.347504 74.554421)))
(arrow2a (pts (xy 171.809 73.968) (xy 170.682496 73.381579)))
(arrow2b (pts (xy 171.809 73.968) (xy 170.682496 74.554421)))
)
(dimension 4.191 (width 0.12) (layer Dwgs.User)
(gr_text 0,165 (at 173.968 72.063) (layer Dwgs.User)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(feature1 (pts (xy 171.809 86.668) (xy 171.809 72.688)))
(feature2 (pts (xy 176 86.668) (xy 176 72.688)))
(crossbar (pts (xy 176 73.968) (xy 171.809 73.968)))
(arrow1a (pts (xy 171.809 73.968) (xy 172.935504 73.381579)))
(arrow1b (pts (xy 171.809 73.968) (xy 172.935504 74.554421)))
(arrow2a (pts (xy 176 73.968) (xy 174.873496 73.381579)))
(arrow2b (pts (xy 176 73.968) (xy 174.873496 74.554421)))
)
(dimension 3.2512 (width 0.12) (layer Dwgs.User)
(gr_text 0,128 (at 136.9602 83.2136 90) (layer Dwgs.User)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(feature1 (pts (xy 153.521 81.588) (xy 137.5852 81.588)))
(feature2 (pts (xy 153.521 84.8392) (xy 137.5852 84.8392)))
(crossbar (pts (xy 138.8652 84.8392) (xy 138.8652 81.588)))
(arrow1a (pts (xy 138.8652 81.588) (xy 139.451621 82.714504)))
(arrow1b (pts (xy 138.8652 81.588) (xy 138.278779 82.714504)))
(arrow2a (pts (xy 138.8652 84.8392) (xy 139.451621 83.712696)))
(arrow2b (pts (xy 138.8652 84.8392) (xy 138.278779 83.712696)))
)
(dimension 3.048 (width 0.12) (layer Dwgs.User)
(gr_text 0,120 (at 133.328 77.651 90) (layer Dwgs.User)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(feature1 (pts (xy 143.361 76) (xy 134.588 76)))
(feature2 (pts (xy 143.361 79.048) (xy 134.588 79.048)))
(crossbar (pts (xy 135.868 79.048) (xy 135.868 76)))
(arrow1a (pts (xy 135.868 76) (xy 136.454421 77.126504)))
(arrow1b (pts (xy 135.868 76) (xy 135.281579 77.126504)))
(arrow2a (pts (xy 135.868 79.048) (xy 136.454421 77.921496)))
(arrow2b (pts (xy 135.868 79.048) (xy 135.281579 77.921496)))
)
(dimension 30.48 (width 0.12) (layer Dwgs.User)
(gr_text 1,200 (at 135.228 94.288 90) (layer Dwgs.User)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(feature1 (pts (xy 143.361 79.048) (xy 134.588 79.048)))
(feature2 (pts (xy 143.361 109.528) (xy 134.588 109.528)))
(crossbar (pts (xy 135.868 109.528) (xy 135.868 79.048)))
(arrow1a (pts (xy 135.868 79.048) (xy 136.454421 80.174504)))
(arrow1b (pts (xy 135.868 79.048) (xy 135.281579 80.174504)))
(arrow2a (pts (xy 135.868 109.528) (xy 136.454421 108.401496)))
(arrow2b (pts (xy 135.868 109.528) (xy 135.281579 108.401496)))
)
(gr_text "HydraBus Flash Shield 1.1\n(c) Baldanos" (at 116.945 78.54) (layer F.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.12)) (justify left))
)
(gr_line (start 117 113) (end 118 113) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 116 111) (end 116 112) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 117 112) (end 117 113) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 116 78) (end 116 77) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 118 76) (end 117 76) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 117 77) (end 116 77) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 176 77) (end 176 78) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 174 76) (end 175 76) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 175 77) (end 175 76) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 116 111) (end 116 78) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 174 113) (end 118 113) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 176 78) (end 176 111) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 118 76) (end 174 76) (angle 90) (layer Edge.Cuts) (width 0.15))
(segment (start 171.809 101.908) (end 171.809 101.509) (width 0.1524) (layer F.Cu) (net 1))
(segment (start 171.809 101.509) (end 170.5 100.2) (width 0.1524) (layer F.Cu) (net 1) (tstamp 5942309D))
(segment (start 170.5 100.2) (end 170.5 98.9) (width 0.1524) (layer F.Cu) (net 1) (tstamp 594230A4))
(segment (start 170.5 98.9) (end 169.7 98.1) (width 0.1524) (layer F.Cu) (net 1) (tstamp 594230A8))
(segment (start 169.7 98.1) (end 167.2 98.1) (width 0.1524) (layer F.Cu) (net 1) (tstamp 594230AB))
(segment (start 167.2 98.1) (end 166.3 97.2) (width 0.1524) (layer F.Cu) (net 1) (tstamp 594230B3))
(segment (start 166.3 97.2) (end 144.4 97.2) (width 0.1524) (layer F.Cu) (net 1) (tstamp 594230BA))
(segment (start 144.4 97.2) (end 143.9 97.7) (width 0.1524) (layer F.Cu) (net 1) (tstamp 594230C7))
(segment (start 143.9 97.7) (end 140.67 97.7) (width 0.1524) (layer F.Cu) (net 1) (tstamp 594230C9))
(segment (start 140.67 97.7) (end 140.44 97.47) (width 0.1524) (layer F.Cu) (net 1) (tstamp 594230D0))
(segment (start 145.44 91.97) (end 164.77 91.97) (width 0.1524) (layer B.Cu) (net 3))
(segment (start 173.2 97.977) (end 171.809 99.368) (width 0.1524) (layer B.Cu) (net 3) (tstamp 59422F75))
(segment (start 173.2 96.3) (end 173.2 97.977) (width 0.1524) (layer B.Cu) (net 3) (tstamp 59422F73))
(segment (start 172.4 95.5) (end 173.2 96.3) (width 0.1524) (layer B.Cu) (net 3) (tstamp 59422F71))
(segment (start 168.3 95.5) (end 172.4 95.5) (width 0.1524) (layer B.Cu) (net 3) (tstamp 59422F6D))
(segment (start 164.77 91.97) (end 168.3 95.5) (width 0.1524) (layer B.Cu) (net 3) (tstamp 59422F62))
(segment (start 142.94 92.47) (end 144.57 92.47) (width 0.1524) (layer B.Cu) (net 5))
(segment (start 170.5 98.1) (end 171.809 96.828) (width 0.1524) (layer B.Cu) (net 5) (tstamp 59422FAC))
(segment (start 168.5 98.1) (end 170.5 98.1) (width 0.1524) (layer B.Cu) (net 5) (tstamp 59422FA8))
(segment (start 167.7 97.3) (end 168.5 98.1) (width 0.1524) (layer B.Cu) (net 5) (tstamp 59422FA5))
(segment (start 167.7 96.3) (end 167.7 97.3) (width 0.1524) (layer B.Cu) (net 5) (tstamp 59422FA3))
(segment (start 164.1 92.7) (end 167.7 96.3) (width 0.1524) (layer B.Cu) (net 5) (tstamp 59422F9C))
(segment (start 144.8 92.7) (end 164.1 92.7) (width 0.1524) (layer B.Cu) (net 5) (tstamp 59422F88))
(segment (start 144.57 92.47) (end 144.8 92.7) (width 0.1524) (layer B.Cu) (net 5) (tstamp 59422F84))
(segment (start 140.44 92.97) (end 140.93 92.97) (width 0.1524) (layer B.Cu) (net 7))
(segment (start 140.93 92.97) (end 142.2 91.7) (width 0.1524) (layer B.Cu) (net 7) (tstamp 59422FB6))
(segment (start 170.521 93) (end 171.809 94.288) (width 0.1524) (layer B.Cu) (net 7) (tstamp 59422FCD))
(segment (start 167 93) (end 170.521 93) (width 0.1524) (layer B.Cu) (net 7) (tstamp 59422FCB))
(segment (start 165.2 91.2) (end 167 93) (width 0.1524) (layer B.Cu) (net 7) (tstamp 59422FC1))
(segment (start 144.5 91.2) (end 165.2 91.2) (width 0.1524) (layer B.Cu) (net 7) (tstamp 59422FBF))
(segment (start 144 91.7) (end 144.5 91.2) (width 0.1524) (layer B.Cu) (net 7) (tstamp 59422FBE))
(segment (start 142.2 91.7) (end 144 91.7) (width 0.1524) (layer B.Cu) (net 7) (tstamp 59422FBB))
(segment (start 140.44 92.97) (end 140.83 92.97) (width 0.1524) (layer B.Cu) (net 7))
(segment (start 167.694201 95.735799) (end 166.96 96.47) (width 0.1524) (layer F.Cu) (net 9))
(segment (start 166.96 96.47) (end 145.44 96.47) (width 0.1524) (layer F.Cu) (net 9))
(segment (start 171.809 91.748) (end 170.361201 93.195799) (width 0.1524) (layer F.Cu) (net 9))
(segment (start 170.361201 93.195799) (end 170.361201 95.100799) (width 0.1524) (layer F.Cu) (net 9))
(segment (start 170.361201 95.100799) (end 169.726201 95.735799) (width 0.1524) (layer F.Cu) (net 9))
(segment (start 169.726201 95.735799) (end 167.694201 95.735799) (width 0.1524) (layer F.Cu) (net 9))
(segment (start 142.94 96.97) (end 143.647106 96.97) (width 0.1524) (layer F.Cu) (net 11))
(segment (start 170.716799 90.300201) (end 170.945401 90.071599) (width 0.1524) (layer F.Cu) (net 11))
(segment (start 143.647106 96.97) (end 144.875707 95.741399) (width 0.1524) (layer F.Cu) (net 11))
(segment (start 166.199143 95.741399) (end 169.100341 92.840201) (width 0.1524) (layer F.Cu) (net 11))
(segment (start 144.875707 95.741399) (end 166.199143 95.741399) (width 0.1524) (layer F.Cu) (net 11))
(segment (start 169.100341 92.840201) (end 170.081799 92.840201) (width 0.1524) (layer F.Cu) (net 11))
(segment (start 170.081799 92.840201) (end 170.716799 92.205201) (width 0.1524) (layer F.Cu) (net 11))
(segment (start 170.716799 92.205201) (end 170.716799 90.300201) (width 0.1524) (layer F.Cu) (net 11))
(segment (start 170.945401 90.071599) (end 171.809 89.208) (width 0.1524) (layer F.Cu) (net 11))
(segment (start 126.44 94.97) (end 128.737344 94.97) (width 0.4064) (layer B.Cu) (net 13))
(segment (start 139.036212 102.663788) (end 144.036212 102.663788) (width 0.4064) (layer B.Cu) (net 13))
(segment (start 144.036212 102.663788) (end 147.592 99.108) (width 0.4064) (layer B.Cu) (net 13) (tstamp 59422EAD))
(segment (start 147.592 99.108) (end 147.592 96.828) (width 0.4064) (layer B.Cu) (net 13) (tstamp 59422EAF))
(segment (start 166.221 109.528) (end 166.221 109.579) (width 0.3048) (layer B.Cu) (net 13))
(segment (start 166.221 109.579) (end 164.6 111.2) (width 0.4064) (layer B.Cu) (net 13) (tstamp 59422E93))
(segment (start 164.6 111.2) (end 141.6 111.2) (width 0.4064) (layer B.Cu) (net 13) (tstamp 59422E96))
(segment (start 141.6 111.2) (end 139.1 108.7) (width 0.4064) (layer B.Cu) (net 13) (tstamp 59422E9D))
(segment (start 139.1 108.7) (end 139.1 102.727576) (width 0.4064) (layer B.Cu) (net 13) (tstamp 59422EA2))
(segment (start 139.1 102.727576) (end 139.036212 102.663788) (width 0.4064) (layer B.Cu) (net 13) (tstamp 59422EA7))
(segment (start 139.036212 102.663788) (end 131.309884 94.93746) (width 0.4064) (layer B.Cu) (net 13) (tstamp 59422EAB))
(segment (start 128.769884 94.93746) (end 131.309884 94.93746) (width 0.4064) (layer B.Cu) (net 13))
(segment (start 128.737344 94.97) (end 128.769884 94.93746) (width 0.3048) (layer B.Cu) (net 13) (tstamp 59422C54))
(segment (start 166.221 79.048) (end 166.948 79.048) (width 0.4064) (layer B.Cu) (net 13))
(segment (start 166.948 79.048) (end 171.809 83.909) (width 0.4064) (layer B.Cu) (net 13) (tstamp 59422C38))
(segment (start 171.809 83.909) (end 171.809 86.668) (width 0.4064) (layer B.Cu) (net 13) (tstamp 59422C3E))
(segment (start 171.809 86.668) (end 172.368 86.668) (width 0.3048) (layer B.Cu) (net 13))
(segment (start 172.368 86.668) (end 173.8 88.1) (width 0.4064) (layer B.Cu) (net 13) (tstamp 59422C2D))
(segment (start 168.672 109.528) (end 166.221 109.528) (width 0.4064) (layer B.Cu) (net 13) (tstamp 59422C34))
(segment (start 173.8 104.4) (end 168.672 109.528) (width 0.4064) (layer B.Cu) (net 13) (tstamp 59422C31))
(segment (start 173.8 88.1) (end 173.8 104.4) (width 0.4064) (layer B.Cu) (net 13) (tstamp 59422C2F))
(segment (start 166.221 109.528) (end 166.128 109.528) (width 0.3048) (layer B.Cu) (net 13))
(segment (start 147.592 96.828) (end 147.592 95.05) (width 0.3048) (layer B.Cu) (net 13))
(segment (start 145.44 94.97) (end 147.512 94.97) (width 0.3048) (layer B.Cu) (net 13))
(segment (start 147.512 94.97) (end 147.592 95.05) (width 0.3048) (layer B.Cu) (net 13) (tstamp 59422BBF))
(segment (start 128.737344 94.97) (end 128.769884 94.93746) (width 0.2032) (layer B.Cu) (net 13))
(segment (start 141.6 94.5) (end 140.47 94.5) (width 0.3048) (layer B.Cu) (net 14))
(segment (start 140.47 94.5) (end 140.44 94.47) (width 0.3048) (layer B.Cu) (net 14) (tstamp 5942349F))
(segment (start 140.44 94.47) (end 141.57 94.47) (width 0.3048) (layer F.Cu) (net 14))
(segment (start 141.57 94.47) (end 141.6 94.5) (width 0.3048) (layer F.Cu) (net 14) (tstamp 59423477))
(segment (start 139.3 94.5) (end 140.41 94.5) (width 0.3048) (layer F.Cu) (net 14))
(segment (start 140.41 94.5) (end 140.44 94.47) (width 0.3048) (layer F.Cu) (net 14) (tstamp 59423474))
(segment (start 141.57 94.47) (end 141.6 94.5) (width 0.3048) (layer B.Cu) (net 14) (tstamp 59423450))
(segment (start 140.44 94.47) (end 139.33 94.47) (width 0.3048) (layer B.Cu) (net 14))
(segment (start 139.33 94.47) (end 139.3 94.5) (width 0.3048) (layer B.Cu) (net 14) (tstamp 5942344D))
(segment (start 141.57 94.47) (end 141.6 94.5) (width 0.3048) (layer F.Cu) (net 14) (tstamp 59423433))
(segment (start 139.33 94.47) (end 139.3 94.5) (width 0.3048) (layer F.Cu) (net 14) (tstamp 5942342F))
(segment (start 141.57 94.47) (end 141.6 94.5) (width 0.3048) (layer B.Cu) (net 14) (tstamp 594233E2))
(via (at 141.6 94.5) (size 0.6858) (drill 0.3302) (layers F.Cu B.Cu) (net 14))
(segment (start 141.6 94.5) (end 141.57 94.47) (width 0.3048) (layer F.Cu) (net 14) (tstamp 594233E5))
(segment (start 141.57 94.47) (end 141.6 94.5) (width 0.3048) (layer F.Cu) (net 14) (tstamp 594233D2))
(segment (start 141.57 94.47) (end 141.6 94.5) (width 0.3048) (layer F.Cu) (net 14) (tstamp 594233C7))
(segment (start 139.33 94.47) (end 139.3 94.5) (width 0.3048) (layer B.Cu) (net 14) (tstamp 594233AD))
(via (at 139.3 94.5) (size 0.6858) (drill 0.3302) (layers F.Cu B.Cu) (net 14))
(segment (start 139.33 94.47) (end 139.3 94.5) (width 0.3048) (layer F.Cu) (net 14) (tstamp 59422DA8))
(segment (start 150.092 95.05) (end 150.092 93.908) (width 0.3048) (layer B.Cu) (net 14))
(via (at 150.1 93.9) (size 0.6858) (drill 0.3302) (layers F.Cu B.Cu) (net 14))
(segment (start 150.092 93.908) (end 150.1 93.9) (width 0.3048) (layer B.Cu) (net 14) (tstamp 59422FE5))
(segment (start 128.769884 97.43746) (end 128.769884 98.569884) (width 0.3048) (layer B.Cu) (net 14))
(via (at 128.8 98.6) (size 0.6858) (drill 0.3302) (layers F.Cu B.Cu) (net 14))
(segment (start 128.769884 98.569884) (end 128.8 98.6) (width 0.3048) (layer B.Cu) (net 14) (tstamp 59422D5F))
(segment (start 131.309884 97.43746) (end 131.309884 98.590116) (width 0.3048) (layer B.Cu) (net 14))
(via (at 131.3 98.6) (size 0.6858) (drill 0.3302) (layers F.Cu B.Cu) (net 14))
(segment (start 131.309884 98.590116) (end 131.3 98.6) (width 0.3048) (layer B.Cu) (net 14) (tstamp 59422D48))
(segment (start 150.092 96.828) (end 150.092 97.992) (width 0.3048) (layer B.Cu) (net 14))
(via (at 150.1 98) (size 0.6858) (drill 0.3302) (layers F.Cu B.Cu) (net 14))
(segment (start 150.092 97.992) (end 150.1 98) (width 0.3048) (layer B.Cu) (net 14) (tstamp 59422CF5))
(segment (start 150.092 95.05) (end 149.967 95.05) (width 0.1524) (layer B.Cu) (net 14))
(segment (start 150.092 96.828) (end 150.092 95.05) (width 0.2032) (layer B.Cu) (net 14))
(segment (start 131.309884 97.43746) (end 131.309884 97.56246) (width 0.1524) (layer B.Cu) (net 14))
(segment (start 128.769884 97.43746) (end 131.309884 97.43746) (width 0.1524) (layer B.Cu) (net 14))
(segment (start 121.44 94.47) (end 123.211399 96.241399) (width 0.1524) (layer B.Cu) (net 14))
(segment (start 127.753625 97.198601) (end 127.992484 97.43746) (width 0.1524) (layer B.Cu) (net 14))
(segment (start 123.211399 96.241399) (end 125.133069 96.241399) (width 0.1524) (layer B.Cu) (net 14))
(segment (start 125.133069 96.241399) (end 126.090271 97.198601) (width 0.1524) (layer B.Cu) (net 14))
(segment (start 126.090271 97.198601) (end 127.753625 97.198601) (width 0.1524) (layer B.Cu) (net 14))
(segment (start 127.992484 97.43746) (end 128.769884 97.43746) (width 0.1524) (layer B.Cu) (net 14))
(segment (start 128.389573 87.26027) (end 128.404522 87.194776) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 130.133517 84.465009) (end 130.156636 84.459732) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.261298 88.134447) (end 125.51713 88.390279) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 128.231142 85.164602) (end 128.189256 85.112081) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.638068 89.6896) (end 125.667215 89.629074) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 124.721123 89.621183) (end 124.781649 89.592036) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 128.404522 87.127597) (end 128.389573 87.062103) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.983278 88.337756) (end 126.012424 88.277231) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.483135 89.813156) (end 125.543661 89.784008) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.350462 89.828105) (end 125.41764 89.828105) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 123.94 90.97) (end 124.668601 90.241399) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 128.145161 84.918881) (end 128.160108 84.853387) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.682164 89.496401) (end 125.667215 89.430907) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 132.561176 82.706419) (end 132.305344 82.450587) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 124.668601 90.241399) (end 124.668601 89.663069) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 126.586611 86.395507) (end 126.647136 86.366361) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 129.704379 85.747298) (end 129.769873 85.762246) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 127.495663 85.517834) (end 127.561158 85.502884) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 124.668601 89.663069) (end 124.721123 89.621183) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 124.781649 89.592036) (end 124.847143 89.577087) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 130.829246 82.152872) (end 130.889771 82.123726) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 126.845304 86.36636) (end 126.905829 86.395508) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 132.136912 83.130684) (end 132.189434 83.172569) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.208775 88.092562) (end 125.261298 88.134447) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 128.266018 87.415204) (end 128.318541 87.373319) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.41764 89.828105) (end 125.483135 89.813156) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 124.847143 89.577087) (end 124.914322 89.577087) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 124.914322 89.577087) (end 124.979816 89.592036) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 132.219363 82.204866) (end 132.234311 82.139372) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 130.690741 82.44048) (end 130.690742 82.3733) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.171919 89.742123) (end 125.224441 89.784008) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 132.305344 82.026323) (end 133.835871 80.495799) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.941392 87.966014) (end 125.685561 87.710183) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.638068 89.370381) (end 125.596183 89.317858) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 130.982044 83.616482) (end 131.005163 83.611205) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 124.979816 89.592036) (end 125.040342 89.621183) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 127.555995 88.043303) (end 127.555995 87.976124) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 130.239412 82.972252) (end 130.299937 83.0014) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 124.837034 88.55871) (end 124.795148 88.506189) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 127.382615 86.013129) (end 127.340729 85.960608) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 132.382633 83.216665) (end 132.448128 83.201717) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.224441 89.784008) (end 125.284967 89.813156) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 124.795148 88.506189) (end 124.766 88.445663) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.543661 89.784008) (end 125.596183 89.742123) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.667215 89.430907) (end 125.638068 89.370381) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 124.766 88.445663) (end 124.751052 88.380169) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.040342 89.621183) (end 125.092865 89.663069) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.092865 89.663069) (end 125.171919 89.742123) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 130.496115 84.050298) (end 130.485826 84.028933) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 127.311581 85.900082) (end 127.296633 85.834588) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 132.315454 83.216665) (end 132.382633 83.216665) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.284967 89.813156) (end 125.350462 89.828105) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.630179 88.461311) (end 125.695673 88.476259) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.596183 89.742123) (end 125.638068 89.6896) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 130.101576 85.497722) (end 130.101576 85.430543) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 129.45141 83.849927) (end 129.503933 83.891812) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.828345 88.461312) (end 125.888871 88.432164) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 128.795326 86.566677) (end 128.855852 86.595825) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.667215 89.629074) (end 125.682164 89.56358) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.983277 88.018538) (end 125.941392 87.966014) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 127.098272 88.263731) (end 127.158798 88.292879) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.682164 89.56358) (end 125.682164 89.496401) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.596183 89.317858) (end 124.837034 88.55871) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 125.685561 87.710183) (end 125.643675 87.657662) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 124.766 88.247495) (end 124.795149 88.186969) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 128.993687 84.137534) (end 128.993688 84.070354) (width 0.1524) (layer B.Cu) (net 32))
(segment (start 126.012425 88.079063) (end 125.983277 88.018538) (width 0.1524) (layer B.Cu) (net 32))