-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPD_ElectrodeBoard_v6.kicad_pcb
12539 lines (12402 loc) · 554 KB
/
PD_ElectrodeBoard_v6.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 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "USLetter")
(title_block
(title "PurpleDrop ElectrodeBoard 6")
(date "2022-02-23")
(rev "6.2")
(company "University of Washington Molecular Information Systems Lab")
)
(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"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (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") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.15)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "outputs/gerbers/")
)
)
(net 0 "")
(net 1 "/P1")
(net 2 "/P2")
(net 3 "/P3")
(net 4 "/P4")
(net 5 "/P80")
(net 6 "/P79")
(net 7 "/P81")
(net 8 "/P78")
(net 9 "/P82")
(net 10 "/P77")
(net 11 "/P83")
(net 12 "/P76")
(net 13 "/P84")
(net 14 "/P75")
(net 15 "/P85")
(net 16 "/P74")
(net 17 "/P86")
(net 18 "/P73")
(net 19 "/P87")
(net 20 "/P72")
(net 21 "/P88")
(net 22 "/P71")
(net 23 "/P89")
(net 24 "/P70")
(net 25 "/P90")
(net 26 "/P69")
(net 27 "/P91")
(net 28 "/P68")
(net 29 "/P92")
(net 30 "/P67")
(net 31 "/P93")
(net 32 "/P66")
(net 33 "/P94")
(net 34 "/P65")
(net 35 "/P95")
(net 36 "/P64")
(net 37 "/P96")
(net 38 "/P127")
(net 39 "/P97")
(net 40 "/P126")
(net 41 "/P98")
(net 42 "/P125")
(net 43 "/P99")
(net 44 "/P124")
(net 45 "/P100")
(net 46 "/P123")
(net 47 "/P101")
(net 48 "/P122")
(net 49 "/P102")
(net 50 "/P121")
(net 51 "/P103")
(net 52 "/P120")
(net 53 "/P104")
(net 54 "/P119")
(net 55 "/P105")
(net 56 "/P118")
(net 57 "/P106")
(net 58 "/P117")
(net 59 "/P107")
(net 60 "/P116")
(net 61 "/P108")
(net 62 "/P115")
(net 63 "/P109")
(net 64 "/P114")
(net 65 "/P110")
(net 66 "/P113")
(net 67 "/P111")
(net 68 "/P112")
(net 69 "/P48")
(net 70 "/P47")
(net 71 "/P49")
(net 72 "/P46")
(net 73 "/P50")
(net 74 "/P45")
(net 75 "/P51")
(net 76 "/P44")
(net 77 "/P52")
(net 78 "/P43")
(net 79 "/P53")
(net 80 "/P42")
(net 81 "/P54")
(net 82 "/P41")
(net 83 "/P55")
(net 84 "/P40")
(net 85 "/P56")
(net 86 "/P39")
(net 87 "/P57")
(net 88 "/P38")
(net 89 "/P58")
(net 90 "/P37")
(net 91 "/P59")
(net 92 "/P36")
(net 93 "/P60")
(net 94 "/P35")
(net 95 "/P61")
(net 96 "/P34")
(net 97 "/P62")
(net 98 "/P33")
(net 99 "/P63")
(net 100 "/P32")
(net 101 "/P0")
(net 102 "/P31")
(net 103 "/P30")
(net 104 "/P29")
(net 105 "/P28")
(net 106 "/P27")
(net 107 "/P5")
(net 108 "/P26")
(net 109 "/P6")
(net 110 "/P25")
(net 111 "/P7")
(net 112 "/P24")
(net 113 "/P8")
(net 114 "/P23")
(net 115 "/P9")
(net 116 "/P22")
(net 117 "/P10")
(net 118 "/P21")
(net 119 "/P11")
(net 120 "/P20")
(net 121 "/P12")
(net 122 "/P19")
(net 123 "/P13")
(net 124 "/P18")
(net 125 "/P14")
(net 126 "/P17")
(net 127 "/P15")
(net 128 "/P16")
(net 129 "/POUR")
(footprint "PurpleDrop:tag36_11_00012_8.00mm" (layer "F.Cu")
(tedit 6216BC94) (tstamp 00000000-0000-0000-0000-00005e5fb5c7)
(at 174.32 88.89)
(descr "Fiducial Tag")
(property "Sheetfile" "PD_ElectrodeBoard_v6.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005f5cba35")
(attr through_hole)
(fp_text reference "G2" (at 0 -3) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ed5d1891-a993-433c-850b-1c3f0baef998)
)
(fp_text value "AprilTag" (at 1.5 3) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fa6994ba-95f9-461e-bfa5-592e9caa6d0d)
)
(fp_poly (pts
(xy 3.333333 2.666667)
(xy 4 2.666667)
(xy 4 3.333333)
(xy 3.333333 3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 022be376-ace6-4a1e-9773-67cc78f03d66))
(fp_poly (pts
(xy 0 -3.333333)
(xy 0.666667 -3.333333)
(xy 0.666667 -2.666667)
(xy 0 -2.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 062981c8-17e2-405e-8691-3b7d9bd7a96f))
(fp_poly (pts
(xy 2 2.666667)
(xy 2.666667 2.666667)
(xy 2.666667 3.333333)
(xy 2 3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 07e9a0cf-51ae-45e3-85a8-50223b8ee25a))
(fp_poly (pts
(xy 3.333333 2)
(xy 4 2)
(xy 4 2.666667)
(xy 3.333333 2.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 11a9b79a-7a81-4312-9dd7-06300e4027d4))
(fp_poly (pts
(xy -1.333333 -4)
(xy -0.666667 -4)
(xy -0.666667 -3.333333)
(xy -1.333333 -3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 138352e8-1db2-474a-9216-8d6ae3215ca0))
(fp_poly (pts
(xy -2.666667 -3.333333)
(xy -2 -3.333333)
(xy -2 -2.666667)
(xy -2.666667 -2.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 171bae76-0692-4c99-93ee-148de743b565))
(fp_poly (pts
(xy -2.666667 -4)
(xy -2 -4)
(xy -2 -3.333333)
(xy -2.666667 -3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 172ce322-f5ae-4152-ba2f-dac204358aa5))
(fp_poly (pts
(xy 2.666667 1.333333)
(xy 3.333333 1.333333)
(xy 3.333333 2)
(xy 2.666667 2)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 188fe198-f266-4220-a6a7-b05ff9ea6667))
(fp_poly (pts
(xy 2.666667 2.666667)
(xy 3.333333 2.666667)
(xy 3.333333 3.333333)
(xy 2.666667 3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 1aa0f4cf-f4f2-4aab-a464-0f078f1242e5))
(fp_poly (pts
(xy 0.666667 -1.333333)
(xy 1.333333 -1.333333)
(xy 1.333333 -0.666667)
(xy 0.666667 -0.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 28504f35-db2d-4f02-8d3f-8f63bda363bf))
(fp_poly (pts
(xy -4 -2)
(xy -3.333333 -2)
(xy -3.333333 -1.333333)
(xy -4 -1.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 2badb52d-9824-4415-acfb-f5200d961abf))
(fp_poly (pts
(xy -1.333333 3.333333)
(xy -0.666667 3.333333)
(xy -0.666667 4)
(xy -1.333333 4)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 2eede33d-3b62-4c88-860b-778f54ee097c))
(fp_poly (pts
(xy -0.666667 -3.333333)
(xy 0 -3.333333)
(xy 0 -2.666667)
(xy -0.666667 -2.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 34e9d889-1dca-4557-83bc-4723d052e0a1))
(fp_poly (pts
(xy 2 -3.333333)
(xy 2.666667 -3.333333)
(xy 2.666667 -2.666667)
(xy 2 -2.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 39721ba2-af68-4ed5-b7fb-2af8fe410df9))
(fp_poly (pts
(xy -0.666667 2.666667)
(xy 0 2.666667)
(xy 0 3.333333)
(xy -0.666667 3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 3b52a106-2196-4cb2-9b15-5d8cb47bb875))
(fp_poly (pts
(xy 2.666667 2)
(xy 3.333333 2)
(xy 3.333333 2.666667)
(xy 2.666667 2.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 3d081516-ee13-452f-b0ea-e60d1996430e))
(fp_poly (pts
(xy -4 2)
(xy -3.333333 2)
(xy -3.333333 2.666667)
(xy -4 2.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 4236d0ab-eded-4279-845a-f032f2ab9c0e))
(fp_poly (pts
(xy 0 -4)
(xy 0.666667 -4)
(xy 0.666667 -3.333333)
(xy 0 -3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 43da0f7a-4753-47c2-8f88-e00f60d246cc))
(fp_poly (pts
(xy -0.666667 -4)
(xy 0 -4)
(xy 0 -3.333333)
(xy -0.666667 -3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 493e4159-ddce-4a30-805c-57769f8e6a4c))
(fp_poly (pts
(xy 2 3.333333)
(xy 2.666667 3.333333)
(xy 2.666667 4)
(xy 2 4)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 4b7a73a1-2de9-4900-9129-014caa2b50de))
(fp_poly (pts
(xy 0.666667 3.333333)
(xy 1.333333 3.333333)
(xy 1.333333 4)
(xy 0.666667 4)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 4dfbbfaa-461d-4701-ad63-f10f7cff5ee2))
(fp_poly (pts
(xy -2 -4)
(xy -1.333333 -4)
(xy -1.333333 -3.333333)
(xy -2 -3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 4e36f41c-8bb7-4e06-925a-2ace3912b0a5))
(fp_poly (pts
(xy -2 2.666667)
(xy -1.333333 2.666667)
(xy -1.333333 3.333333)
(xy -2 3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 4ecdafb6-94aa-4257-8aaa-911a8bd9ec13))
(fp_poly (pts
(xy 0.666667 0)
(xy 1.333333 0)
(xy 1.333333 0.666667)
(xy 0.666667 0.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 4ff3d3a4-1553-4eca-bee1-67bffc00e811))
(fp_poly (pts
(xy 1.333333 3.333333)
(xy 2 3.333333)
(xy 2 4)
(xy 1.333333 4)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 5188f8ae-78f0-4d02-a56f-b30308254fcd))
(fp_poly (pts
(xy -3.333333 -0.666667)
(xy -2.666667 -0.666667)
(xy -2.666667 0)
(xy -3.333333 0)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 54774b41-da26-48a8-91f7-e0b7380253c2))
(fp_poly (pts
(xy 1.333333 -4)
(xy 2 -4)
(xy 2 -3.333333)
(xy 1.333333 -3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 547e04f2-7381-4ed7-a145-8676a4b7020a))
(fp_poly (pts
(xy 1.333333 -3.333333)
(xy 2 -3.333333)
(xy 2 -2.666667)
(xy 1.333333 -2.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 54f89c17-d01c-4401-bb82-2e2abe87dc14))
(fp_poly (pts
(xy -3.333333 2)
(xy -2.666667 2)
(xy -2.666667 2.666667)
(xy -3.333333 2.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 5b17259a-b2ea-4e30-93a7-464e4418e15d))
(fp_poly (pts
(xy 3.333333 0.666667)
(xy 4 0.666667)
(xy 4 1.333333)
(xy 3.333333 1.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 5b3df6f6-3665-4334-aeab-f4803199d3ba))
(fp_poly (pts
(xy -3.333333 -2.666667)
(xy -2.666667 -2.666667)
(xy -2.666667 -2)
(xy -3.333333 -2)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 6382ef82-cc0e-4b07-a2f3-2d15381f1fe2))
(fp_poly (pts
(xy 2 -4)
(xy 2.666667 -4)
(xy 2.666667 -3.333333)
(xy 2 -3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 65b5184e-af03-4402-9ca8-a20be90902da))
(fp_poly (pts
(xy -4 -3.333333)
(xy -3.333333 -3.333333)
(xy -3.333333 -2.666667)
(xy -4 -2.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 6636361a-1cb1-4896-b28b-540b674dc525))
(fp_poly (pts
(xy -0.666667 0.666667)
(xy 0 0.666667)
(xy 0 1.333333)
(xy -0.666667 1.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 68efc4f3-76ca-47b3-83ad-c485e1bfe047))
(fp_poly (pts
(xy -3.333333 -1.333333)
(xy -2.666667 -1.333333)
(xy -2.666667 -0.666667)
(xy -3.333333 -0.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 6a612147-7069-4dd1-bb1a-4dab1f9ec015))
(fp_poly (pts
(xy -2.666667 3.333333)
(xy -2 3.333333)
(xy -2 4)
(xy -2.666667 4)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 6b878362-beec-4105-ab00-79d6bfbbd01d))
(fp_poly (pts
(xy -0.666667 -1.333333)
(xy 0 -1.333333)
(xy 0 -0.666667)
(xy -0.666667 -0.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 6f71ba46-7110-459d-bb28-4396849df3c6))
(fp_poly (pts
(xy -4 0)
(xy -3.333333 0)
(xy -3.333333 0.666667)
(xy -4 0.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 795dd6ea-c2ca-418d-80ef-893cebe3d61f))
(fp_poly (pts
(xy -4 0.666667)
(xy -3.333333 0.666667)
(xy -3.333333 1.333333)
(xy -4 1.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 7967341c-d290-4aff-b4b9-2bae626fc523))
(fp_poly (pts
(xy -1.333333 -3.333333)
(xy -0.666667 -3.333333)
(xy -0.666667 -2.666667)
(xy -1.333333 -2.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 79e34c37-9396-413b-8ccb-8b4cdee13380))
(fp_poly (pts
(xy -3.333333 -2)
(xy -2.666667 -2)
(xy -2.666667 -1.333333)
(xy -3.333333 -1.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 7d16c093-2dd8-4e8b-a355-5aad53c4de5c))
(fp_poly (pts
(xy -0.666667 -0.666667)
(xy 0 -0.666667)
(xy 0 0)
(xy -0.666667 0)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 7e116ca6-3f16-4a22-866e-990342ed2133))
(fp_poly (pts
(xy 1.333333 -0.666667)
(xy 2 -0.666667)
(xy 2 0)
(xy 1.333333 0)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 803eb4d0-4ed8-4143-9ecf-dab8998bb3ba))
(fp_poly (pts
(xy 2.666667 -1.333333)
(xy 3.333333 -1.333333)
(xy 3.333333 -0.666667)
(xy 2.666667 -0.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 80678e54-337f-4bcd-b717-b05ff574fd77))
(fp_poly (pts
(xy -2 -3.333333)
(xy -1.333333 -3.333333)
(xy -1.333333 -2.666667)
(xy -2 -2.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 81a9f60c-d9e8-4cda-b1eb-0620859d1000))
(fp_poly (pts
(xy 2.666667 -2)
(xy 3.333333 -2)
(xy 3.333333 -1.333333)
(xy 2.666667 -1.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 823c986d-51f1-41b9-bf8f-6dbdea56b574))
(fp_poly (pts
(xy -3.333333 -3.333333)
(xy -2.666667 -3.333333)
(xy -2.666667 -2.666667)
(xy -3.333333 -2.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 8260dc3c-6149-48a6-bc22-3365f41590b9))
(fp_poly (pts
(xy 2.666667 -0.666667)
(xy 3.333333 -0.666667)
(xy 3.333333 0)
(xy 2.666667 0)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 86ea67c8-c838-4009-9d44-4f4336b2523f))
(fp_poly (pts
(xy 3.333333 -3.333333)
(xy 4 -3.333333)
(xy 4 -2.666667)
(xy 3.333333 -2.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 8731be85-93b0-4d4f-865f-d10e68034d6c))
(fp_poly (pts
(xy -1.333333 -2)
(xy -0.666667 -2)
(xy -0.666667 -1.333333)
(xy -1.333333 -1.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 89f934f2-3d60-4485-ae4b-c2c0281a0cfd))
(fp_poly (pts
(xy 3.333333 0)
(xy 4 0)
(xy 4 0.666667)
(xy 3.333333 0.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 8a7e47e7-fead-428a-8726-317915e4f72c))
(fp_poly (pts
(xy -1.333333 2.666667)
(xy -0.666667 2.666667)
(xy -0.666667 3.333333)
(xy -1.333333 3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 8aafb0b8-962f-47eb-92ef-7bc5d82d6d86))
(fp_poly (pts
(xy 3.333333 -0.666667)
(xy 4 -0.666667)
(xy 4 0)
(xy 3.333333 0)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 8b768986-e2b8-4c8f-b97b-5ef1c6b9a960))
(fp_poly (pts
(xy -1.333333 0)
(xy -0.666667 0)
(xy -0.666667 0.666667)
(xy -1.333333 0.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 8d59eb1b-4e54-45c9-83d4-78e105254774))
(fp_poly (pts
(xy 2.666667 0)
(xy 3.333333 0)
(xy 3.333333 0.666667)
(xy 2.666667 0.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 8f60e5bf-2e3b-4b80-bf55-d54254ae3dcf))
(fp_poly (pts
(xy 0.666667 -4)
(xy 1.333333 -4)
(xy 1.333333 -3.333333)
(xy 0.666667 -3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 96845a3d-ac03-4247-b849-dbdb5482ed12))
(fp_poly (pts
(xy -4 -1.333333)
(xy -3.333333 -1.333333)
(xy -3.333333 -0.666667)
(xy -4 -0.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 973a938e-306a-4b1e-8875-b4f4d78540a6))
(fp_poly (pts
(xy -3.333333 3.333333)
(xy -2.666667 3.333333)
(xy -2.666667 4)
(xy -3.333333 4)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 99e7d847-19ae-4d3b-9700-0ec7f0840787))
(fp_poly (pts
(xy 3.333333 1.333333)
(xy 4 1.333333)
(xy 4 2)
(xy 3.333333 2)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 9aaa425a-40c6-4935-920b-45ea7b6d6edf))
(fp_poly (pts
(xy -3.333333 0.666667)
(xy -2.666667 0.666667)
(xy -2.666667 1.333333)
(xy -3.333333 1.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 9b23e4ce-6193-4d60-b71b-5984560cbb88))
(fp_poly (pts
(xy -2.666667 2.666667)
(xy -2 2.666667)
(xy -2 3.333333)
(xy -2.666667 3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp 9d9d3053-08cc-4f8e-863f-0405ba864fd1))
(fp_poly (pts
(xy -3.333333 1.333333)
(xy -2.666667 1.333333)
(xy -2.666667 2)
(xy -3.333333 2)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp a232899f-ed13-4e72-a9cc-3e1041397022))
(fp_poly (pts
(xy -3.333333 -4)
(xy -2.666667 -4)
(xy -2.666667 -3.333333)
(xy -3.333333 -3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp a47f3a0e-14c7-4bc8-9b71-0538d31da2b8))
(fp_poly (pts
(xy -2 3.333333)
(xy -1.333333 3.333333)
(xy -1.333333 4)
(xy -2 4)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp a809431d-da25-4b85-9f6b-4511f7f9cc3c))
(fp_poly (pts
(xy -0.666667 1.333333)
(xy 0 1.333333)
(xy 0 2)
(xy -0.666667 2)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp a8ba74f6-79c6-4111-bfe0-fa71b4f2c5e0))
(fp_poly (pts
(xy 0.666667 2.666667)
(xy 1.333333 2.666667)
(xy 1.333333 3.333333)
(xy 0.666667 3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp b5ce0a7a-4c21-4c45-b0d5-ad15f9b9c715))
(fp_poly (pts
(xy 2.666667 -3.333333)
(xy 3.333333 -3.333333)
(xy 3.333333 -2.666667)
(xy 2.666667 -2.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp ba99360b-a078-4512-b87a-28acb7c48e60))
(fp_poly (pts
(xy -4 3.333333)
(xy -3.333333 3.333333)
(xy -3.333333 4)
(xy -4 4)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp bb17bb6a-3803-430d-a158-b2ff09948966))
(fp_poly (pts
(xy -3.333333 0)
(xy -2.666667 0)
(xy -2.666667 0.666667)
(xy -3.333333 0.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp bc91a59d-cd64-40dd-bedc-8707e5e06f42))
(fp_poly (pts
(xy 3.333333 -2.666667)
(xy 4 -2.666667)
(xy 4 -2)
(xy 3.333333 -2)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp c172487d-c86f-4e29-b5b4-fd42c1887220))
(fp_poly (pts
(xy -0.666667 3.333333)
(xy 0 3.333333)
(xy 0 4)
(xy -0.666667 4)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp c3b14f6b-8e58-4d60-8235-fd51fba67d8a))
(fp_poly (pts
(xy 3.333333 3.333333)
(xy 4 3.333333)
(xy 4 4)
(xy 3.333333 4)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp c8014020-2f9e-4d3c-8316-b538c6721a7e))
(fp_poly (pts
(xy 0.666667 1.333333)
(xy 1.333333 1.333333)
(xy 1.333333 2)
(xy 0.666667 2)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp cd047b52-fcc8-4c50-baee-dae0bb39164b))
(fp_poly (pts
(xy 0 3.333333)
(xy 0.666667 3.333333)
(xy 0.666667 4)
(xy 0 4)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp d1ce01c2-8aec-47dd-9b34-4b082b248407))
(fp_poly (pts
(xy -1.333333 -1.333333)
(xy -0.666667 -1.333333)
(xy -0.666667 -0.666667)
(xy -1.333333 -0.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp d21b02dd-2341-46b8-a780-a169eb6f5da2))
(fp_poly (pts
(xy -4 -4)
(xy -3.333333 -4)
(xy -3.333333 -3.333333)
(xy -4 -3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp d5834fe5-40ad-4633-a6ff-a09dd8901d6a))
(fp_poly (pts
(xy -4 1.333333)
(xy -3.333333 1.333333)
(xy -3.333333 2)
(xy -4 2)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp d7fed0b7-32cc-4669-9f8b-c6110dea16ee))
(fp_poly (pts
(xy 0.666667 0.666667)
(xy 1.333333 0.666667)
(xy 1.333333 1.333333)
(xy 0.666667 1.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp d8a601ef-b5bc-42ad-a99e-5fb9b8e0f5a7))
(fp_poly (pts
(xy 2.666667 0.666667)
(xy 3.333333 0.666667)
(xy 3.333333 1.333333)
(xy 2.666667 1.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp da1d15e1-9c5f-46d1-acf9-589f8a5b6fe9))
(fp_poly (pts
(xy -4 -0.666667)
(xy -3.333333 -0.666667)
(xy -3.333333 0)
(xy -4 0)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp defddd44-5855-4b1b-b666-c22f5d706d60))
(fp_poly (pts
(xy 2.666667 -4)
(xy 3.333333 -4)
(xy 3.333333 -3.333333)
(xy 2.666667 -3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp e2230404-d0d3-4949-890f-428ed0789f25))
(fp_poly (pts
(xy 1.333333 0)
(xy 2 0)
(xy 2 0.666667)
(xy 1.333333 0.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp e48a98d0-97cd-4dac-b1b9-7bbd64d7ea33))
(fp_poly (pts
(xy 1.333333 2.666667)
(xy 2 2.666667)
(xy 2 3.333333)
(xy 1.333333 3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp e5806cd2-12ed-42b5-bed7-cd864d68b290))
(fp_poly (pts
(xy 3.333333 -1.333333)
(xy 4 -1.333333)
(xy 4 -0.666667)
(xy 3.333333 -0.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp e852a2cc-ca36-49b0-9a17-b431af11d873))
(fp_poly (pts
(xy -2 -1.333333)
(xy -1.333333 -1.333333)
(xy -1.333333 -0.666667)
(xy -2 -0.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp e9d9b531-1b8c-49c8-b28f-18216cea24db))
(fp_poly (pts
(xy 0 2.666667)
(xy 0.666667 2.666667)
(xy 0.666667 3.333333)
(xy 0 3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp eb6d7442-c9fe-4499-92c9-bba982ac83aa))
(fp_poly (pts
(xy 2.666667 -2.666667)
(xy 3.333333 -2.666667)
(xy 3.333333 -2)
(xy 2.666667 -2)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp ec9675ba-f96b-4791-9454-b7cd91b99d8e))
(fp_poly (pts
(xy 3.333333 -4)
(xy 4 -4)
(xy 4 -3.333333)
(xy 3.333333 -3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp f023b62c-2c1e-4677-953f-0eb93d809be0))
(fp_poly (pts
(xy 0.666667 -3.333333)
(xy 1.333333 -3.333333)
(xy 1.333333 -2.666667)
(xy 0.666667 -2.666667)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp f102d52d-8ca8-45b8-9cbd-f7059d593b61))
(fp_poly (pts
(xy -4 -2.666667)
(xy -3.333333 -2.666667)
(xy -3.333333 -2)
(xy -4 -2)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp f30bbae6-cfb3-49e6-8747-04d243c4cb00))
(fp_poly (pts
(xy -4 2.666667)
(xy -3.333333 2.666667)
(xy -3.333333 3.333333)
(xy -4 3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp f7fd2c88-ed4f-4ed8-b9a0-76be3ca7ae4d))
(fp_poly (pts
(xy -3.333333 2.666667)
(xy -2.666667 2.666667)
(xy -2.666667 3.333333)
(xy -3.333333 3.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp fa7a88ef-a04d-4620-b444-a0e120afda12))
(fp_poly (pts
(xy 2.666667 3.333333)
(xy 3.333333 3.333333)
(xy 3.333333 4)
(xy 2.666667 4)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp fc3c06ec-cbc6-4a50-ab42-1ec52ebfc86a))
(fp_poly (pts
(xy 3.333333 -2)
(xy 4 -2)
(xy 4 -1.333333)
(xy 3.333333 -1.333333)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp fecafda6-a907-46ed-9b0d-905835e70df7))
(fp_poly (pts
(xy -1.333333 1.333333)
(xy -0.666667 1.333333)
(xy -0.666667 2)
(xy -1.333333 2)
) (layer "F.SilkS") (width 0.001) (fill solid) (tstamp ff9c99d4-901a-4cd2-9a25-99e819c0c78d))
)
(footprint "PurpleDrop:Keystone-4929" (layer "F.Cu")
(tedit 5E6155CE) (tstamp 00000000-0000-0000-0000-00005e625079)
(at 155 58.75)
(property "Sheetfile" "PD_ElectrodeBoard_v6.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e63bc4e")
(attr through_hole)
(fp_text reference "H1" (at 0 -6.35) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5dc74d71-488f-415b-9e61-58d0e748fb84)
)
(fp_text value "MountingHole_Pad" (at 0 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f7df0e61-4849-4be2-9d1f-69295496628f)
)
(pad "1" thru_hole circle locked (at 0 0) (size 6.2 6.2) (drill 3.7) (layers *.Cu *.Mask)
(net 129 "/POUR") (pinfunction "1") (pintype "input") (tstamp 7b43b287-1c33-4efe-8671-1b7230c63756))
)
(footprint "PurpleDrop:Keystone-4929" (layer "F.Cu")
(tedit 5E6155CE) (tstamp 00000000-0000-0000-0000-00005e62507e)
(at 245 58.75)
(property "Sheetfile" "PD_ElectrodeBoard_v6.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e63b584")
(attr through_hole)
(fp_text reference "H2" (at 0 -6.35) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b18955e3-b3db-433d-b140-55792d6d2e08)
)
(fp_text value "MountingHole_Pad" (at 0 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3270c68e-4166-49ca-af74-76c2a444d551)
)
(pad "1" thru_hole circle locked (at 0 0) (size 6.2 6.2) (drill 3.7) (layers *.Cu *.Mask)
(net 129 "/POUR") (pinfunction "1") (pintype "input") (tstamp 9027b32c-46e4-489b-bd8a-0a71bf934ca8))
)
(footprint "PurpleDrop:Keystone-4929" (layer "F.Cu")
(tedit 5E6155CE) (tstamp 00000000-0000-0000-0000-00005e625083)
(at 155 122.75)
(property "Sheetfile" "PD_ElectrodeBoard_v6.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e63aec4")
(attr through_hole)
(fp_text reference "H3" (at 0 -6.35) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d0248bda-a496-4395-9cbd-c0645f6887b6)
)
(fp_text value "MountingHole_Pad" (at 0 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 472d692c-7d6f-4010-b7b9-36e35bad722a)
)
(pad "1" thru_hole circle locked (at 0 0) (size 6.2 6.2) (drill 3.7) (layers *.Cu *.Mask)
(net 129 "/POUR") (pinfunction "1") (pintype "input") (tstamp 4985178c-645d-4119-99b2-ed67bbf34c1c))
)
(footprint "PurpleDrop:Keystone-4929" (layer "F.Cu")
(tedit 5E6155CE) (tstamp 00000000-0000-0000-0000-00005e625088)
(at 245 122.75)
(property "Sheetfile" "PD_ElectrodeBoard_v6.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e63a114")
(attr through_hole)
(fp_text reference "H4" (at 0 -6.35) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1148f2ee-558d-4beb-b976-e1dac29839e4)
)
(fp_text value "MountingHole_Pad" (at 0 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 599ddabd-dc28-47cf-8534-10aea7da8ddd)
)
(pad "1" thru_hole circle locked (at 0 0) (size 6.2 6.2) (drill 3.7) (layers *.Cu *.Mask)
(net 129 "/POUR") (pinfunction "1") (pintype "input") (tstamp ee8ba298-91de-4e9d-a74c-48f5903c2f93))
)
(footprint "PurpleDrop:CLP-132-02-F-D" locked (layer "F.Cu")
(tedit 60495EED) (tstamp 00000000-0000-0000-0000-00005f7ce9a0)
(at 233.3 87 -90)
(property "Sheetfile" "PD_ElectrodeBoard_v6.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e5efd11")
(attr through_hole)
(fp_text reference "J1" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 02f8c84d-1d5d-495b-b70f-11c31fa7eca3)
)
(fp_text value "Conn_02x32_Odd_Even" (at 0 0 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 08bb1f19-2586-4126-94d9-992c7d9b93a5)
)
(fp_text user "Copyright 2016 Accelerated Designs. All rights reserved." (at 0 0 90) (layer "Cmts.User") hide
(effects (font (size 0.127 0.127) (thickness 0.002)))
(tstamp 0568bb3d-22d0-4cde-88e4-45b8463848cb)
)
(fp_line (start 20.6629 -1.651) (end 20.24634 -1.651) (layer "B.SilkS") (width 0.1524) (tstamp 36d714bb-c571-4f3c-8a97-f376b41cc46f))
(fp_line (start 19.685 2.84734) (end 19.05 4.11734) (layer "B.SilkS") (width 0.1524) (tstamp 44cf4c1b-fa8c-46b9-bf2c-5113c6209013))
(fp_line (start 20.32 4.11734) (end 19.685 2.84734) (layer "B.SilkS") (width 0.1524) (tstamp 48b67bd8-e34a-4edb-a0da-ec39728d41e8))
(fp_line (start 20.6629 1.651) (end 20.6629 -1.651) (layer "B.SilkS") (width 0.1524) (tstamp 7c6a5b09-0e45-4258-85f6-af1de5258d3a))
(fp_line (start -20.6629 1.651) (end -20.24634 1.651) (layer "B.SilkS") (width 0.1524) (tstamp 7d86b31b-5017-4332-8f62-e3b93695ae94))
(fp_line (start 20.24634 1.651) (end 20.6629 1.651) (layer "B.SilkS") (width 0.1524) (tstamp 9ea9e68b-2b2f-43b1-aeb7-ca39b711ef97))
(fp_line (start -20.24634 -1.651) (end -20.6629 -1.651) (layer "B.SilkS") (width 0.1524) (tstamp a3ae5edd-f29e-42a9-ac70-dbafc584ae66))
(fp_line (start -20.6629 -1.651) (end -20.6629 1.651) (layer "B.SilkS") (width 0.1524) (tstamp cfea0d2b-9432-44f4-9b5b-bb632973df9b))
(fp_line (start 19.05 4.11734) (end 20.32 4.11734) (layer "B.SilkS") (width 0.1524) (tstamp e29f375d-705f-4095-a0e9-7a65b46827cd))
(fp_line (start 20.5359 1.524) (end 20.5359 -1.524) (layer "Dwgs.User") (width 0.1524) (tstamp 02d0da37-a7af-496d-ac83-12ad8849d427))
(fp_line (start 19.05 4.11734) (end 20.32 4.11734) (layer "Dwgs.User") (width 0.1524) (tstamp 0c67417e-55e0-4068-9352-993d7609c25e))
(fp_line (start 20.5359 -1.524) (end -20.5359 -1.524) (layer "Dwgs.User") (width 0.1524) (tstamp 0ffb066d-77f1-46c6-a4d9-bf6c53445dfc))
(fp_line (start -20.5359 -1.524) (end -20.5359 1.524) (layer "Dwgs.User") (width 0.1524) (tstamp 237af1aa-844d-4628-96c5-050d51c1a84d))
(fp_line (start 20.32 4.11734) (end 19.685 2.84734) (layer "Dwgs.User") (width 0.1524) (tstamp 31dd9e4f-7d34-495d-9476-2bebfb6d0b37))
(fp_line (start -20.5359 1.524) (end 20.5359 1.524) (layer "Dwgs.User") (width 0.1524) (tstamp 9f41abc4-b25b-4afb-b1e8-6f1ae20bf3ba))
(fp_line (start 19.685 2.84734) (end 19.05 4.11734) (layer "Dwgs.User") (width 0.1524) (tstamp bfa6cb05-9816-48a5-97d4-8130e6b9aebe))
(pad "" np_thru_hole circle locked (at 19.05 0 270) (size 0.6858 0.6858) (drill 0.6858) (layers *.Cu *.Mask) (tstamp 9c7bcaa7-9a81-4c27-ad6b-89eb972e5489))
(pad "" np_thru_hole circle locked (at -19.05 0 270) (size 0.6858 0.6858) (drill 0.6858) (layers *.Cu *.Mask) (tstamp de86231b-61c1-4216-a2d1-0c7fac2187bc))
(pad "1" smd rect locked (at 19.685 1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 6 "/P79") (pinfunction "Pin_1") (pintype "passive") (tstamp 4c0d0a89-174d-46a4-91f7-9b1c08459c30))
(pad "2" smd rect locked (at 19.685 -1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 5 "/P80") (pinfunction "Pin_2") (pintype "passive") (tstamp 28394b21-78a5-4f6d-a8f4-e50c4a5047ae))
(pad "3" smd rect locked (at 18.415 1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 8 "/P78") (pinfunction "Pin_3") (pintype "passive") (tstamp 1b503df6-9334-49a7-b87a-03dc5c103cb1))
(pad "4" smd rect locked (at 18.415 -1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 7 "/P81") (pinfunction "Pin_4") (pintype "passive") (tstamp b01f640b-4433-491e-bf65-9a29cde7adb3))
(pad "5" smd rect locked (at 17.145 1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 10 "/P77") (pinfunction "Pin_5") (pintype "passive") (tstamp 07c27ff0-f5e0-4d92-a4f0-2949eed8eb04))
(pad "6" smd rect locked (at 17.145 -1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 9 "/P82") (pinfunction "Pin_6") (pintype "passive") (tstamp b7a62053-061c-4e10-897d-9185cd78c310))
(pad "7" smd rect locked (at 15.875 1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 12 "/P76") (pinfunction "Pin_7") (pintype "passive") (tstamp e41886a6-4832-4569-8246-2412cb5e0d62))
(pad "8" smd rect locked (at 15.875 -1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 11 "/P83") (pinfunction "Pin_8") (pintype "passive") (tstamp d95ec955-6b83-4056-857a-d2dbf2aa8d40))
(pad "9" smd rect locked (at 14.605 1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 14 "/P75") (pinfunction "Pin_9") (pintype "passive") (tstamp 033f1ece-82ff-4f6c-a458-3c95296b1aac))
(pad "10" smd rect locked (at 14.605 -1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 13 "/P84") (pinfunction "Pin_10") (pintype "passive") (tstamp c1f9a398-2850-4fb9-b17c-7949361bf0b2))
(pad "11" smd rect locked (at 13.335 1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 16 "/P74") (pinfunction "Pin_11") (pintype "passive") (tstamp a9ae097b-b11e-4a89-bb55-8765e7a41681))
(pad "12" smd rect locked (at 13.335 -1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 15 "/P85") (pinfunction "Pin_12") (pintype "passive") (tstamp 025c6c82-77c5-4a2e-90ab-f283d5c42520))
(pad "13" smd rect locked (at 12.065 1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 18 "/P73") (pinfunction "Pin_13") (pintype "passive") (tstamp 73f9891b-c4e7-4c81-9fce-46dbcd7c0ef4))
(pad "14" smd rect locked (at 12.065 -1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 17 "/P86") (pinfunction "Pin_14") (pintype "passive") (tstamp 9e772503-bc96-45e3-851b-f15638746081))
(pad "15" smd rect locked (at 10.795 1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 20 "/P72") (pinfunction "Pin_15") (pintype "passive") (tstamp 8c1ddc90-91fd-4993-9724-d55d6738e8fa))
(pad "16" smd rect locked (at 10.795 -1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 19 "/P87") (pinfunction "Pin_16") (pintype "passive") (tstamp 83247847-4676-47f3-b8fa-8c5b679e988a))
(pad "17" smd rect locked (at 9.525 1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 22 "/P71") (pinfunction "Pin_17") (pintype "passive") (tstamp d299d93d-b7dc-4987-9e02-78a0cc6f3a99))
(pad "18" smd rect locked (at 9.525 -1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 21 "/P88") (pinfunction "Pin_18") (pintype "passive") (tstamp 3c514e00-8123-4a7d-a3c7-561af7fd199d))
(pad "19" smd rect locked (at 8.255 1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 24 "/P70") (pinfunction "Pin_19") (pintype "passive") (tstamp 687ceff0-6004-474a-8e06-48c931b2f519))
(pad "20" smd rect locked (at 8.255 -1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 23 "/P89") (pinfunction "Pin_20") (pintype "passive") (tstamp d59fc959-c0e2-4739-b027-4f595a40256a))
(pad "21" smd rect locked (at 6.985 1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 26 "/P69") (pinfunction "Pin_21") (pintype "passive") (tstamp 655c17b2-ad48-4c71-8aaf-6f6f2d7fdc24))
(pad "22" smd rect locked (at 6.985 -1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 25 "/P90") (pinfunction "Pin_22") (pintype "passive") (tstamp 374e6145-bd04-414a-b9c9-5637ee5128b8))
(pad "23" smd rect locked (at 5.715 1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 28 "/P68") (pinfunction "Pin_23") (pintype "passive") (tstamp 05355e68-e6ac-4258-8e1c-a3a8fb17eb88))
(pad "24" smd rect locked (at 5.715 -1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 27 "/P91") (pinfunction "Pin_24") (pintype "passive") (tstamp 39aa8d2c-557f-4038-a78f-135546b6e52f))
(pad "25" smd rect locked (at 4.445 1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 30 "/P67") (pinfunction "Pin_25") (pintype "passive") (tstamp 1f243728-55cf-4058-b7e3-9c29166f3ee8))
(pad "26" smd rect locked (at 4.445 -1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 29 "/P92") (pinfunction "Pin_26") (pintype "passive") (tstamp 08b79c8d-3ff6-47ac-bb65-5c6c97d2df42))
(pad "27" smd rect locked (at 3.175 1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 32 "/P66") (pinfunction "Pin_27") (pintype "passive") (tstamp fc2edf46-4b40-477e-8855-d4bc93e55501))
(pad "28" smd rect locked (at 3.175 -1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 31 "/P93") (pinfunction "Pin_28") (pintype "passive") (tstamp 1facc2ec-c811-496a-8da0-58b5814a3700))
(pad "29" smd rect locked (at 1.905 1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 34 "/P65") (pinfunction "Pin_29") (pintype "passive") (tstamp c0716a3c-cdfa-4dc2-9c5e-93ecd270c73e))
(pad "30" smd rect locked (at 1.905 -1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 33 "/P94") (pinfunction "Pin_30") (pintype "passive") (tstamp f9611756-2524-421a-b2ed-269e2784a05f))
(pad "31" smd rect locked (at 0.635 1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 36 "/P64") (pinfunction "Pin_31") (pintype "passive") (tstamp 1f7c2af0-8b22-46e8-b5eb-7d7d1d61ad08))
(pad "32" smd rect locked (at 0.635 -1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 35 "/P95") (pinfunction "Pin_32") (pintype "passive") (tstamp 848dce77-ed59-4047-b422-979c36dba04f))
(pad "33" smd rect locked (at -0.635 1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 38 "/P127") (pinfunction "Pin_33") (pintype "passive") (tstamp f7ba2b52-7a9d-4956-bfe2-521a20a73515))
(pad "34" smd rect locked (at -0.635 -1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 37 "/P96") (pinfunction "Pin_34") (pintype "passive") (tstamp 785c3fe9-6790-49e2-83de-20c983feec41))
(pad "35" smd rect locked (at -1.905 1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 40 "/P126") (pinfunction "Pin_35") (pintype "passive") (tstamp 0533db51-ae15-42d5-8243-ba91ade3d7e1))
(pad "36" smd rect locked (at -1.905 -1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 39 "/P97") (pinfunction "Pin_36") (pintype "passive") (tstamp d7f83aef-19b3-4f0c-a786-7bb4c17fec69))
(pad "37" smd rect locked (at -3.175 1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 42 "/P125") (pinfunction "Pin_37") (pintype "passive") (tstamp be6f1727-d4a7-4416-b415-fb4d08225c99))
(pad "38" smd rect locked (at -3.175 -1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 41 "/P98") (pinfunction "Pin_38") (pintype "passive") (tstamp 2c53c2fa-0158-4b87-8d3a-71c710004abc))
(pad "39" smd rect locked (at -4.445 1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 44 "/P124") (pinfunction "Pin_39") (pintype "passive") (tstamp b84e877f-3181-417d-968d-162a94977356))
(pad "40" smd rect locked (at -4.445 -1.5875 270) (size 0.4572 1.8542) (layers "B.Cu" "B.Paste" "B.Mask")
(net 43 "/P99") (pinfunction "Pin_40") (pintype "passive") (tstamp 8084adfa-f49f-4b69-a389-9895d69b59b2))