-
Notifications
You must be signed in to change notification settings - Fork 1
/
m2sata.kicad_pcb
9300 lines (9288 loc) · 348 KB
/
m2sata.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 "A4")
(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
(pad_to_mask_clearance 0.051)
(solder_mask_min_width 0.25)
(aux_axis_origin 177.625 89)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(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 false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers/")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "/SATA1_B+")
(net 3 "/SATA1_B-")
(net 4 "/SATA1_A-")
(net 5 "/SATA1_A+")
(net 6 "/SATA2_B+")
(net 7 "/SATA2_B-")
(net 8 "/SATA2_A-")
(net 9 "/SATA2_A+")
(net 10 "/SATA3_B+")
(net 11 "/SATA3_B-")
(net 12 "/SATA3_A-")
(net 13 "/SATA3_A+")
(net 14 "/SATA4_B+")
(net 15 "/SATA4_B-")
(net 16 "/SATA4_A-")
(net 17 "/SATA4_A+")
(net 18 "unconnected-(U1-Pad2)")
(net 19 "unconnected-(U1-Pad4)")
(net 20 "unconnected-(U1-Pad6)")
(net 21 "unconnected-(U1-Pad8)")
(net 22 "unconnected-(U1-Pad10)")
(net 23 "unconnected-(U1-Pad12)")
(net 24 "unconnected-(U1-Pad14)")
(net 25 "unconnected-(U1-Pad16)")
(net 26 "unconnected-(U1-Pad18)")
(net 27 "unconnected-(U1-Pad20)")
(net 28 "unconnected-(U1-Pad22)")
(net 29 "unconnected-(U1-Pad24)")
(net 30 "unconnected-(U1-Pad26)")
(net 31 "unconnected-(U1-Pad28)")
(net 32 "unconnected-(U1-Pad30)")
(net 33 "unconnected-(U1-Pad32)")
(net 34 "unconnected-(U1-Pad34)")
(net 35 "unconnected-(U1-Pad36)")
(net 36 "unconnected-(U1-Pad38)")
(net 37 "unconnected-(U1-Pad40)")
(net 38 "unconnected-(U1-Pad42)")
(net 39 "unconnected-(U1-Pad44)")
(net 40 "unconnected-(U1-Pad46)")
(net 41 "unconnected-(U1-Pad48)")
(net 42 "unconnected-(U1-Pad50)")
(net 43 "unconnected-(U1-Pad52)")
(net 44 "unconnected-(U1-Pad53)")
(net 45 "unconnected-(U1-Pad54)")
(net 46 "unconnected-(U1-Pad55)")
(net 47 "unconnected-(U1-Pad56)")
(net 48 "unconnected-(U1-Pad58)")
(net 49 "unconnected-(U1-Pad67)")
(net 50 "unconnected-(U1-Pad68)")
(net 51 "unconnected-(U1-Pad70)")
(net 52 "unconnected-(U1-Pad72)")
(net 53 "unconnected-(U1-Pad74)")
(footprint "nvme_to_dual_ssd:NGFF_M" (layer "F.Cu")
(tedit 0) (tstamp 00000000-0000-0000-0000-00006183cd54)
(at 97.625 100 -90)
(property "Sheetfile" "m2sata.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061838243")
(attr through_hole)
(fp_text reference "U1" (at 0 4 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ea252d1b-3155-4cd3-83f3-26743d897095)
)
(fp_text value "IN" (at 0 2 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6c80d223-d6c9-4766-88f4-f5b9e1f8eb3e)
)
(fp_poly (pts
(xy -5.525 0)
(xy 9.925 0)
(xy 9.925 -2.5)
(xy -5.525 -2.5)
) (layer "B.Mask") (width 0.1) (fill solid) (tstamp b3ecac67-397b-435b-aff6-de1389340dd0))
(fp_poly (pts
(xy -9.925 0)
(xy -6.725 0)
(xy -6.725 -2.5)
(xy -9.925 -2.5)
) (layer "B.Mask") (width 0.1) (fill solid) (tstamp b90bb856-083f-4f22-9bf5-c3f342a71ae6))
(fp_poly (pts
(xy -9.925 0)
(xy -6.725 0)
(xy -6.725 -2)
(xy -9.925 -2)
) (layer "F.Mask") (width 0.1) (fill solid) (tstamp 96edebf8-747c-4f1d-a543-4d731852045e))
(fp_poly (pts
(xy -5.525 0)
(xy 9.925 0)
(xy 9.925 -2)
(xy -5.525 -2)
) (layer "F.Mask") (width 0.1) (fill solid) (tstamp a5b0c99b-bd8d-4d22-8010-6719e0913aca))
(fp_line (start -5.525 -2.9) (end -5.525 0) (layer "Edge.Cuts") (width 0.05) (tstamp 061779e8-11be-4873-af29-14a5a2e62eca))
(fp_line (start 0 0) (end 9.925 0) (layer "Edge.Cuts") (width 0.05) (tstamp 1194e393-46eb-40a5-af16-1f9a7f8e0997))
(fp_line (start -6.725 0) (end -6.725 -2.9) (layer "Edge.Cuts") (width 0.05) (tstamp 2c6ea776-ea2d-440d-846c-2f8f3e7879d6))
(fp_line (start 9.925 0) (end 9.925 -3.5) (layer "Edge.Cuts") (width 0.05) (tstamp 37f6f8e5-a886-46c3-bd59-322a1a92e543))
(fp_line (start -5.525 0) (end 0 0) (layer "Edge.Cuts") (width 0.05) (tstamp 41882d82-81fe-4457-84d8-9788c2d36fb0))
(fp_line (start -11 -4) (end -10.425 -4) (layer "Edge.Cuts") (width 0.05) (tstamp 4dcca98b-913d-4c4a-a698-1ac35ff90cb5))
(fp_line (start 10.425 -4) (end 11 -4) (layer "Edge.Cuts") (width 0.05) (tstamp 837d25ce-7a92-42fe-b315-439d2e927eab))
(fp_line (start -9.925 0) (end -6.725 0) (layer "Edge.Cuts") (width 0.05) (tstamp e749d063-45f1-4e6d-876a-5e80f2650882))
(fp_line (start -9.925 -3.5) (end -9.925 0) (layer "Edge.Cuts") (width 0.05) (tstamp f9c99426-2729-489d-8fcd-234d00bdd57c))
(fp_arc (start -6.725 -2.9) (mid -6.125 -3.5) (end -5.525 -2.9) (layer "Edge.Cuts") (width 0.05) (tstamp 302122c4-e852-45c9-b477-5b608697c8fd))
(fp_arc (start 9.925 -3.5) (mid 10.071447 -3.853553) (end 10.425 -4) (layer "Edge.Cuts") (width 0.05) (tstamp bb9f0675-16a1-4dd3-ba2b-eff8574fd7d8))
(fp_arc (start -10.425 -4) (mid -10.071447 -3.853553) (end -9.925 -3.5) (layer "Edge.Cuts") (width 0.05) (tstamp d8fab11e-a33b-4d1a-a9b6-97b269f3752f))
(pad "1" smd rect locked (at 9.25 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 1 "GND") (pinfunction "C3") (pintype "input") (tstamp 7c9a9b4c-a224-4621-884b-0a4a49ed374c))
(pad "2" smd rect locked (at 9 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 18 "unconnected-(U1-Pad2)") (pinfunction "3.3V") (pintype "input+no_connect") (tstamp ba6f17ae-dd85-4e05-9a55-dcb4ef5e47a2))
(pad "3" smd rect locked (at 8.75 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp d9bf67f2-7717-4677-8695-de4f006a9c6b))
(pad "4" smd rect locked (at 8.5 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 19 "unconnected-(U1-Pad4)") (pinfunction "3.3V") (pintype "input+no_connect") (tstamp 191afe38-718a-4c39-b418-45c759b95302))
(pad "5" smd rect locked (at 8.25 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 15 "/SATA4_B-") (pinfunction "PER3-") (pintype "input") (tstamp 9ab9fb71-96f4-4b86-a451-20ec769e5663))
(pad "6" smd rect locked (at 8 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 20 "unconnected-(U1-Pad6)") (pinfunction "N/A") (pintype "input+no_connect") (tstamp 12fd1fbd-eb84-4a3e-b38c-aa59c3940824))
(pad "7" smd rect locked (at 7.75 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 14 "/SATA4_B+") (pinfunction "PER3+") (pintype "input") (tstamp 2d914163-f661-497b-9756-46a9d094b86b))
(pad "8" smd rect locked (at 7.5 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 21 "unconnected-(U1-Pad8)") (pinfunction "N/A") (pintype "input+no_connect") (tstamp 3ea51f4d-93f1-427c-b253-7b607de8250c))
(pad "9" smd rect locked (at 7.25 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp 9922f31c-8167-4254-bf04-94284c5ea080))
(pad "10" smd rect locked (at 7 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 22 "unconnected-(U1-Pad10)") (pinfunction "DAS/DSS") (pintype "input+no_connect") (tstamp a7822c40-a3b7-4b9e-a75e-5b9d16c0ca08))
(pad "11" smd rect locked (at 6.75 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 16 "/SATA4_A-") (pinfunction "PET3-") (pintype "input") (tstamp 3805a351-23d8-4fd4-b639-7d63a8a84e53))
(pad "12" smd rect locked (at 6.5 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 23 "unconnected-(U1-Pad12)") (pinfunction "3.3V") (pintype "input+no_connect") (tstamp 12abc75b-1980-459d-8ddd-de311a5610ff))
(pad "13" smd rect locked (at 6.25 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 17 "/SATA4_A+") (pinfunction "PET3+") (pintype "input") (tstamp 60a88cf2-5f18-4f0e-92bd-a94112f547d7))
(pad "14" smd rect locked (at 6 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 24 "unconnected-(U1-Pad14)") (pinfunction "3.3V") (pintype "input+no_connect") (tstamp 33fea3b8-fb89-4ebc-a223-0ab864c791af))
(pad "15" smd rect locked (at 5.75 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp defcbb72-9e5f-4dc0-8a45-8e12815cbab8))
(pad "16" smd rect locked (at 5.5 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 25 "unconnected-(U1-Pad16)") (pinfunction "3.3V") (pintype "input+no_connect") (tstamp 4c8b98e5-45f1-410a-a52a-48f1587ad8b3))
(pad "17" smd rect locked (at 5.25 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 11 "/SATA3_B-") (pinfunction "PER2-") (pintype "input") (tstamp de7e4db1-566f-4ad7-a962-5808fa9a6450))
(pad "18" smd rect locked (at 5 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 26 "unconnected-(U1-Pad18)") (pinfunction "3.3V") (pintype "input+no_connect") (tstamp 8ac35588-1128-4d27-8c89-54b33b6a2d67))
(pad "19" smd rect locked (at 4.75 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 10 "/SATA3_B+") (pinfunction "PER2+") (pintype "input") (tstamp 85bf32c9-b8ba-4d02-9f21-9514245b2658))
(pad "20" smd rect locked (at 4.5 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 27 "unconnected-(U1-Pad20)") (pinfunction "N/A") (pintype "input+no_connect") (tstamp fc25ea06-413c-40d1-8bc6-b9dc40b28280))
(pad "21" smd rect locked (at 4.25 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 1 "GND") (pinfunction "C0") (pintype "input") (tstamp aab66ecc-081c-4347-a357-92e01f91d51d))
(pad "22" smd rect locked (at 4 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 28 "unconnected-(U1-Pad22)") (pinfunction "N/A") (pintype "input+no_connect") (tstamp 1f44b952-7f87-411a-a922-3e5f80120861))
(pad "23" smd rect locked (at 3.75 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 12 "/SATA3_A-") (pinfunction "PET2-") (pintype "input") (tstamp 2d9adeaa-5010-433b-8a0e-25db76a62a22))
(pad "24" smd rect locked (at 3.5 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 29 "unconnected-(U1-Pad24)") (pinfunction "N/A") (pintype "input+no_connect") (tstamp fe57f187-73c0-48bd-95e6-0ed35b460e5b))
(pad "25" smd rect locked (at 3.25 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 13 "/SATA3_A+") (pinfunction "PET2+") (pintype "input") (tstamp bee53e98-977c-4598-805c-e4a2d31875ca))
(pad "26" smd rect locked (at 3 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 30 "unconnected-(U1-Pad26)") (pinfunction "N/A") (pintype "input+no_connect") (tstamp c25b83fe-f3d1-453d-a98c-b800332337e1))
(pad "27" smd rect locked (at 2.75 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp d5ba9dd0-895b-4634-8841-801fcc9eded8))
(pad "28" smd rect locked (at 2.5 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 31 "unconnected-(U1-Pad28)") (pinfunction "N/A") (pintype "input+no_connect") (tstamp b8f02aff-dc78-4e6f-bea9-8139d6fff1b2))
(pad "29" smd rect locked (at 2.25 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 7 "/SATA2_B-") (pinfunction "PER1-") (pintype "input") (tstamp f13536e0-363b-474e-be4d-fdbf8bafda49))
(pad "30" smd rect locked (at 2 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 32 "unconnected-(U1-Pad30)") (pinfunction "N/A") (pintype "input+no_connect") (tstamp cdfa9e8e-b58f-41a8-bd36-0f735b879010))
(pad "31" smd rect locked (at 1.75 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 6 "/SATA2_B+") (pinfunction "PER1+") (pintype "input") (tstamp 686ac51d-e43d-45cd-aafb-f15950b5f608))
(pad "32" smd rect locked (at 1.5 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 33 "unconnected-(U1-Pad32)") (pinfunction "N/A") (pintype "input+no_connect") (tstamp be088c31-86d0-4afc-8549-51cdfbf60e3f))
(pad "33" smd rect locked (at 1.25 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp 1bf73660-c031-43a5-8d8d-07f3a86d70d3))
(pad "34" smd rect locked (at 1 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 34 "unconnected-(U1-Pad34)") (pinfunction "N/A") (pintype "input+no_connect") (tstamp fc8bfba9-1e6a-4691-b559-e48b840cba2d))
(pad "35" smd rect locked (at 0.75 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 8 "/SATA2_A-") (pinfunction "PET1-") (pintype "input") (tstamp 7ef801e3-983a-4374-8ca0-6b8b32f98e06))
(pad "36" smd rect locked (at 0.5 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 35 "unconnected-(U1-Pad36)") (pinfunction "N/A") (pintype "input+no_connect") (tstamp 65a9b448-c1c6-4eb4-8c9f-5cbe7f75b4e5))
(pad "37" smd rect locked (at 0.25 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 9 "/SATA2_A+") (pinfunction "PET1+") (pintype "input") (tstamp 1f93bded-8621-4f7f-b15a-aea1741bb7b8))
(pad "38" smd rect locked (at 0 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 36 "unconnected-(U1-Pad38)") (pinfunction "DEVSLP") (pintype "input+no_connect") (tstamp c472460a-e41a-4177-9187-50421ec94879))
(pad "39" smd rect locked (at -0.25 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp 6a342060-269f-4a55-88ca-59fcf70f2eff))
(pad "40" smd rect locked (at -0.5 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 37 "unconnected-(U1-Pad40)") (pinfunction "N/A") (pintype "input+no_connect") (tstamp 20730fc2-da71-4b9f-ac8a-b2730a2d3ae0))
(pad "41" smd rect locked (at -0.75 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 2 "/SATA1_B+") (pinfunction "PER0-/B+") (pintype "input") (tstamp 264e8028-1b43-4ec8-a9f8-ebe103a78dfe))
(pad "42" smd rect locked (at -1 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 38 "unconnected-(U1-Pad42)") (pinfunction "N/A") (pintype "input+no_connect") (tstamp 17329908-44c3-4816-aafa-573cebb314a2))
(pad "43" smd rect locked (at -1.25 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 3 "/SATA1_B-") (pinfunction "PER0+/B-") (pintype "input") (tstamp 41837de1-c46f-4e60-a288-6dacf811077e))
(pad "44" smd rect locked (at -1.5 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 39 "unconnected-(U1-Pad44)") (pinfunction "N/A") (pintype "input+no_connect") (tstamp 990ea83c-81ec-482e-8289-9d2391875a3a))
(pad "45" smd rect locked (at -1.75 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp 815bea1d-7256-427a-9414-61f22c7ffb77))
(pad "46" smd rect locked (at -2 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 40 "unconnected-(U1-Pad46)") (pinfunction "N/A") (pintype "input+no_connect") (tstamp 36ac41a0-e053-4176-a5a1-97e1a467bf23))
(pad "47" smd rect locked (at -2.25 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 4 "/SATA1_A-") (pinfunction "PET0-/A-") (pintype "input") (tstamp 6fec9a76-55cf-4586-9609-683badb2ecce))
(pad "48" smd rect locked (at -2.5 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 41 "unconnected-(U1-Pad48)") (pinfunction "N/A") (pintype "input+no_connect") (tstamp 357671f9-fd3f-4840-ba03-dae72db70494))
(pad "49" smd rect locked (at -2.75 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 5 "/SATA1_A+") (pinfunction "PET0+/A+") (pintype "input") (tstamp 843d729f-d317-4962-a507-3bbdc7baa02c))
(pad "50" smd rect locked (at -3 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 42 "unconnected-(U1-Pad50)") (pinfunction "~{PERST}") (pintype "input+no_connect") (tstamp e7286663-1b17-4d0d-a78d-8b04599228cb))
(pad "51" smd rect locked (at -3.25 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp 1d183a30-c76e-44e2-a819-9e369bcf03eb))
(pad "52" smd rect locked (at -3.5 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 43 "unconnected-(U1-Pad52)") (pinfunction "~{CLKREQ}") (pintype "input+no_connect") (tstamp d7ff9446-665e-4fa5-89da-b33e0690b322))
(pad "53" smd rect locked (at -3.75 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 44 "unconnected-(U1-Pad53)") (pinfunction "REFCLK-") (pintype "input+no_connect") (tstamp a6bc2bda-385e-4b69-acc4-8da393be0fb8))
(pad "54" smd rect locked (at -4 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 45 "unconnected-(U1-Pad54)") (pinfunction "~{PEWAKE}") (pintype "input+no_connect") (tstamp b66df636-ae6c-406c-9e7f-1e7539d20086))
(pad "55" smd rect locked (at -4.25 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 46 "unconnected-(U1-Pad55)") (pinfunction "REFCLK+") (pintype "input+no_connect") (tstamp 6a8cba51-1845-42e3-bd97-99dbffaf822a))
(pad "56" smd rect locked (at -4.5 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 47 "unconnected-(U1-Pad56)") (pinfunction "MFG1") (pintype "input+no_connect") (tstamp 82f6c7a8-cd37-4cf8-93db-0f7fc3376357))
(pad "57" smd rect locked (at -4.75 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp a512dd58-2635-4e8e-8fce-37414b3d5ad8))
(pad "58" smd rect locked (at -5 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 48 "unconnected-(U1-Pad58)") (pinfunction "MFG2") (pintype "input+no_connect") (tstamp 0448c4c4-e20c-4386-9eb4-88a67ff86df4))
(pad "67" smd rect locked (at -7.25 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 49 "unconnected-(U1-Pad67)") (pinfunction "N/A") (pintype "input+no_connect") (tstamp 3d4d1bf6-5bde-4990-8832-165a49b2a762))
(pad "68" smd rect locked (at -7.5 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 50 "unconnected-(U1-Pad68)") (pinfunction "SUSCLK") (pintype "input+no_connect") (tstamp 2d82e912-3586-4f76-8412-99b8ed7449a7))
(pad "69" smd rect locked (at -7.75 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 1 "GND") (pinfunction "C1") (pintype "input") (tstamp 965a231b-3e63-4654-903b-d2ac43f1b349))
(pad "70" smd rect locked (at -8 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 51 "unconnected-(U1-Pad70)") (pinfunction "3.3V") (pintype "input+no_connect") (tstamp f524ecc9-9517-4d47-bade-5909b27bd9be))
(pad "71" smd rect locked (at -8.25 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp 8c3f77b5-f6e0-40e1-b3d8-0f626897cd50))
(pad "72" smd rect locked (at -8.5 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 52 "unconnected-(U1-Pad72)") (pinfunction "3.3V") (pintype "input+no_connect") (tstamp 554f8e21-d038-4614-a14a-b887fb2e9e86))
(pad "73" smd rect locked (at -8.75 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 1 "GND") (pinfunction "GND") (pintype "input") (tstamp fa481815-97b8-4978-9f6e-3e3e86d7bb9f))
(pad "74" smd rect locked (at -9 -1.525 270) (size 0.35 1.95) (layers "B.Cu")
(net 53 "unconnected-(U1-Pad74)") (pinfunction "3.3V") (pintype "input+no_connect") (tstamp c0925696-6d1f-4c00-8705-4bf247f4b465))
(pad "75" smd rect locked (at -9.25 -1.275 270) (size 0.35 1.45) (layers "F.Cu")
(net 1 "GND") (pinfunction "C2") (pintype "input") (tstamp f2e5defd-7d3c-4a4d-b0ec-f5b6e1fb9655))
)
(footprint "nvme_to_dual_ssd:SATA-7_THT_VERT_1" (layer "F.Cu")
(tedit 0) (tstamp 25e890dd-f793-4595-a6ae-eda8c19c19b2)
(at 162.447238 93.473494 180)
(property "Sheetfile" "m2sata.kicad_sch")
(property "Sheetname" "")
(path "/4b8f6635-c25b-4717-a388-27e185251171")
(attr through_hole)
(fp_text reference "J4" (at -3.81 -4.69) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2c6a802e-7704-4935-a63a-d8590ae67729)
)
(fp_text value "SATA" (at -3.81 -2.79) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a024430e-3904-4a8d-b5e7-f06198b89399)
)
(fp_line (start -12.26 2.73) (end -12.26 -3.73) (layer "F.SilkS") (width 0.12) (tstamp 437fbb32-9f95-43c9-9935-77f125ad631b))
(fp_line (start -12.26 -3.73) (end 4.64 -3.73) (layer "F.SilkS") (width 0.12) (tstamp 4c9c65e3-2f1e-410f-85d0-be96d333a353))
(fp_line (start 4.64 -3.73) (end 4.64 2.73) (layer "F.SilkS") (width 0.12) (tstamp 6d1e0b0e-0ef6-44cf-9e2d-36cdc51f433f))
(fp_line (start 4.64 2.73) (end -12.26 2.73) (layer "F.SilkS") (width 0.12) (tstamp c4e9b4ae-4747-44ef-b9a4-ada3ac9d3603))
(fp_line (start -12.51 -3.98) (end 4.89 -3.98) (layer "F.CrtYd") (width 0.05) (tstamp 247d4fa8-db4b-400e-a17a-4e644b02e636))
(fp_line (start -12.51 -3.98) (end -12.51 2.98) (layer "F.CrtYd") (width 0.05) (tstamp 4c5be191-ddd1-4c96-8603-bcdf96723de3))
(fp_line (start 4.89 2.98) (end -12.51 2.98) (layer "F.CrtYd") (width 0.05) (tstamp a34b05c1-9851-426c-afd1-e8bc84c8152a))
(fp_line (start 4.89 2.98) (end 4.89 -3.98) (layer "F.CrtYd") (width 0.05) (tstamp fb7a4306-b38c-4031-ad67-495084f9a766))
(pad "1" thru_hole oval locked (at 0 0 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 2188d45d-fc62-422b-ab17-3a0321f2cd2c))
(pad "2" thru_hole oval locked (at -1.27 -1 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 17 "/SATA4_A+") (pinfunction "Pin_2") (pintype "passive") (tstamp ee8525bf-d6b8-47c9-af14-4bb7e809358d))
(pad "3" thru_hole oval locked (at -2.54 -1 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 16 "/SATA4_A-") (pinfunction "Pin_3") (pintype "passive") (tstamp 4ee99632-8535-4dac-a365-1bcecf8a6c7f))
(pad "4" thru_hole oval locked (at -3.81 0 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp d0fb5b78-f9fc-4b25-81ff-5a0321401df8))
(pad "5" thru_hole oval locked (at -5.08 -1 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 15 "/SATA4_B-") (pinfunction "Pin_5") (pintype "passive") (tstamp 5a3ff39d-f259-4943-b169-32766658e640))
(pad "6" thru_hole oval locked (at -6.35 -1 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 14 "/SATA4_B+") (pinfunction "Pin_6") (pintype "passive") (tstamp dfc8f189-a547-4bd5-b3ee-30164d3c2d15))
(pad "7" thru_hole oval locked (at -7.62 0 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_7") (pintype "passive") (tstamp af7b85f1-ead2-49af-a7db-4ac74f81f3d4))
(pad "8" thru_hole circle locked (at -10.29 -0.5 180) (size 2.5 2.5) (drill 1.35) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_8") (pintype "passive") (tstamp 1c6066a9-719a-48d2-a78d-3a01437cad48))
(pad "9" thru_hole circle locked (at 2.67 -0.5 180) (size 2.5 2.5) (drill 1.35) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_9") (pintype "passive") (tstamp 0e57e22f-d1d9-45e6-bcb4-e983872a7e1e))
)
(footprint "nvme_to_dual_ssd:SATA-7_THT_VERT_1" (layer "F.Cu")
(tedit 0) (tstamp 25f6796c-e248-4935-b9dd-a8c3fa3f8d7c)
(at 107.95 93.48 180)
(property "Sheetfile" "m2sata.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000618daf78")
(attr through_hole)
(fp_text reference "J1" (at -3.81 -4.69) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d49ed8aa-af2a-49be-8052-99a6085cef50)
)
(fp_text value "SATA" (at -3.81 -2.79) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fbbae369-4355-450b-96f8-b430b0115dfa)
)
(fp_line (start 4.64 -3.73) (end 4.64 2.73) (layer "F.SilkS") (width 0.12) (tstamp 026a4954-ea02-4d80-a853-4138bc9b25a0))
(fp_line (start -12.26 -3.73) (end 4.64 -3.73) (layer "F.SilkS") (width 0.12) (tstamp 027270d7-6efe-4a30-a9ba-122a351a576b))
(fp_line (start 4.64 2.73) (end -12.26 2.73) (layer "F.SilkS") (width 0.12) (tstamp 2045b211-48e7-4e88-84dd-00ba6a72d5da))
(fp_line (start -12.26 2.73) (end -12.26 -3.73) (layer "F.SilkS") (width 0.12) (tstamp 31afba77-9273-4ddf-b5d1-dd90f238378a))
(fp_line (start 4.89 2.98) (end 4.89 -3.98) (layer "F.CrtYd") (width 0.05) (tstamp 0bc1c962-67f3-4086-9a57-dbd44e104b35))
(fp_line (start 4.89 2.98) (end -12.51 2.98) (layer "F.CrtYd") (width 0.05) (tstamp 37a0745f-97a1-4893-845b-d7b30e05e9c4))
(fp_line (start -12.51 -3.98) (end 4.89 -3.98) (layer "F.CrtYd") (width 0.05) (tstamp 7f55839b-7a9d-48f1-a238-28618fab65e2))
(fp_line (start -12.51 -3.98) (end -12.51 2.98) (layer "F.CrtYd") (width 0.05) (tstamp a5c4e45d-a356-41fa-9b3b-51dfdad38928))
(pad "1" thru_hole oval locked (at 0 0 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 4cfdbf63-caa0-4643-937d-fcd57e67ce0f))
(pad "2" thru_hole oval locked (at -1.27 -1 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 5 "/SATA1_A+") (pinfunction "Pin_2") (pintype "passive") (tstamp 7760b16a-3513-4e84-81f9-453925304f38))
(pad "3" thru_hole oval locked (at -2.54 -1 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 4 "/SATA1_A-") (pinfunction "Pin_3") (pintype "passive") (tstamp d858b503-4d12-4ed6-81c8-b80097a335b8))
(pad "4" thru_hole oval locked (at -3.81 0 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp 504e88cf-0ee1-4c8c-8966-9bd8ab820c45))
(pad "5" thru_hole oval locked (at -5.08 -1 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 3 "/SATA1_B-") (pinfunction "Pin_5") (pintype "passive") (tstamp c9629e71-caf3-43ec-a876-66799d001866))
(pad "6" thru_hole oval locked (at -6.35 -1 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 2 "/SATA1_B+") (pinfunction "Pin_6") (pintype "passive") (tstamp 4e8798e3-3217-425f-8b71-8d53044cede8))
(pad "7" thru_hole oval locked (at -7.62 0 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_7") (pintype "passive") (tstamp 21f3979a-f0e4-44e6-8b82-68febed7b581))
(pad "8" thru_hole circle locked (at -10.29 -0.5 180) (size 2.5 2.5) (drill 1.35) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_8") (pintype "passive") (tstamp 60fb0e8c-5eed-4406-8e6d-6b61d830b6ca))
(pad "9" thru_hole circle locked (at 2.67 -0.5 180) (size 2.5 2.5) (drill 1.35) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_9") (pintype "passive") (tstamp 46255a79-a890-4b38-90c3-4e803fa14552))
)
(footprint "nvme_to_dual_ssd:SATA-7_THT_VERT_1" (layer "F.Cu")
(tedit 0) (tstamp ad0534d5-ce3f-49c7-b9af-85c5d24b06dd)
(at 144.281492 93.48 180)
(property "Sheetfile" "m2sata.kicad_sch")
(property "Sheetname" "")
(path "/b48de0f3-bb14-4b28-a376-f22c4eeb4280")
(attr through_hole)
(fp_text reference "J3" (at -3.81 -4.69) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1ac23206-d643-4f3f-b1ba-129d3ed9c203)
)
(fp_text value "SATA" (at -3.81 -2.79) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e4f052c4-2aa5-48fd-932d-febc4d49bdc2)
)
(fp_line (start -12.26 2.73) (end -12.26 -3.73) (layer "F.SilkS") (width 0.12) (tstamp 269dd4de-f31d-4ded-8ae0-06324031b799))
(fp_line (start 4.64 -3.73) (end 4.64 2.73) (layer "F.SilkS") (width 0.12) (tstamp 49a70d06-8746-4a7e-a698-08a9abc9259e))
(fp_line (start -12.26 -3.73) (end 4.64 -3.73) (layer "F.SilkS") (width 0.12) (tstamp 4a3f9207-84f1-4eb1-b3c4-370e65ee161c))
(fp_line (start 4.64 2.73) (end -12.26 2.73) (layer "F.SilkS") (width 0.12) (tstamp fdaf3797-c512-43ca-9a17-78ab8b1092e8))
(fp_line (start 4.89 2.98) (end 4.89 -3.98) (layer "F.CrtYd") (width 0.05) (tstamp 07af828a-55b3-4c64-a4fc-1053a5baafb8))
(fp_line (start -12.51 -3.98) (end 4.89 -3.98) (layer "F.CrtYd") (width 0.05) (tstamp 69f89be7-1076-4460-9665-ac812a81c8b0))
(fp_line (start 4.89 2.98) (end -12.51 2.98) (layer "F.CrtYd") (width 0.05) (tstamp e48d60e0-9587-4cdf-9329-79f717586c01))
(fp_line (start -12.51 -3.98) (end -12.51 2.98) (layer "F.CrtYd") (width 0.05) (tstamp ec7aae40-95f9-44e4-aa4a-be3249f5182b))
(pad "1" thru_hole oval locked (at 0 0 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 1adbc3c8-82bb-4a01-96ba-21742c60f7fe))
(pad "2" thru_hole oval locked (at -1.27 -1 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 13 "/SATA3_A+") (pinfunction "Pin_2") (pintype "passive") (tstamp e0156b09-486d-4d8e-bfce-bb1dffc1538b))
(pad "3" thru_hole oval locked (at -2.54 -1 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 12 "/SATA3_A-") (pinfunction "Pin_3") (pintype "passive") (tstamp 979f9438-c983-40be-a2f7-ac4f956bb669))
(pad "4" thru_hole oval locked (at -3.81 0 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp 2e81ea26-ab89-410c-add7-242637594a29))
(pad "5" thru_hole oval locked (at -5.08 -1 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 11 "/SATA3_B-") (pinfunction "Pin_5") (pintype "passive") (tstamp 00335eea-3fb5-4a8d-b224-6186efce6cb1))
(pad "6" thru_hole oval locked (at -6.35 -1 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 10 "/SATA3_B+") (pinfunction "Pin_6") (pintype "passive") (tstamp 0c58d2dd-0b8c-44dd-95c5-2f58ac261be4))
(pad "7" thru_hole oval locked (at -7.62 0 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_7") (pintype "passive") (tstamp 896fb676-612f-44b1-abf1-8acdde007f02))
(pad "8" thru_hole circle locked (at -10.29 -0.5 180) (size 2.5 2.5) (drill 1.35) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_8") (pintype "passive") (tstamp f35ca9d7-9501-4602-93b9-6cbd09971e6e))
(pad "9" thru_hole circle locked (at 2.67 -0.5 180) (size 2.5 2.5) (drill 1.35) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_9") (pintype "passive") (tstamp 41c8aa71-ddfe-42c8-b824-758ce43e3ee9))
)
(footprint "nvme_to_dual_ssd:SATA-7_THT_VERT_1" (layer "F.Cu")
(tedit 0) (tstamp f42b72a8-13d9-48ce-85b6-d577bbd30648)
(at 126.115746 93.48 180)
(property "Sheetfile" "m2sata.kicad_sch")
(property "Sheetname" "")
(path "/e48acab9-6ee4-4d20-8d35-d9fdf928101b")
(attr through_hole)
(fp_text reference "J2" (at -3.81 -4.69) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd15a5dc-ff2a-458e-84c6-77d5c5f79462)
)
(fp_text value "SATA" (at -3.81 -2.79) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5466cef9-e130-43a5-ad8e-e4348d26394d)
)
(fp_line (start -12.26 -3.73) (end 4.64 -3.73) (layer "F.SilkS") (width 0.12) (tstamp 0d48ec6e-c3e8-4a66-90e0-fd8843300f41))
(fp_line (start 4.64 -3.73) (end 4.64 2.73) (layer "F.SilkS") (width 0.12) (tstamp a78b7539-ee71-40d6-bb0a-b999778d46ec))
(fp_line (start -12.26 2.73) (end -12.26 -3.73) (layer "F.SilkS") (width 0.12) (tstamp b06dcf4a-4498-4398-8ce0-02ebb00bfd6e))
(fp_line (start 4.64 2.73) (end -12.26 2.73) (layer "F.SilkS") (width 0.12) (tstamp b75e3941-e1bb-4851-b854-bcca6edc1709))
(fp_line (start 4.89 2.98) (end -12.51 2.98) (layer "F.CrtYd") (width 0.05) (tstamp 12e75fcf-32d1-46ef-801d-51c66ea8daf5))
(fp_line (start -12.51 -3.98) (end -12.51 2.98) (layer "F.CrtYd") (width 0.05) (tstamp 59af5120-6b39-43ef-ad1b-edd8488ccc79))
(fp_line (start -12.51 -3.98) (end 4.89 -3.98) (layer "F.CrtYd") (width 0.05) (tstamp 9d8737d3-f2d5-4178-9e29-82a57259b021))
(fp_line (start 4.89 2.98) (end 4.89 -3.98) (layer "F.CrtYd") (width 0.05) (tstamp b08219de-a07d-43e4-bc36-ed9ddc3aaa63))
(pad "1" thru_hole oval locked (at 0 0 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp faad8b6c-f141-46db-b9d7-7b8749b3e9e5))
(pad "2" thru_hole oval locked (at -1.27 -1 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 9 "/SATA2_A+") (pinfunction "Pin_2") (pintype "passive") (tstamp 24a78a07-473c-4d6b-9073-f5ba013bd4e4))
(pad "3" thru_hole oval locked (at -2.54 -1 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 8 "/SATA2_A-") (pinfunction "Pin_3") (pintype "passive") (tstamp a296ce97-3687-4637-93fb-30ae95a42b73))
(pad "4" thru_hole oval locked (at -3.81 0 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp 60e96c69-0c94-4af6-b7dd-cc118d291b11))
(pad "5" thru_hole oval locked (at -5.08 -1 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 7 "/SATA2_B-") (pinfunction "Pin_5") (pintype "passive") (tstamp 43831b2a-ab60-4310-9539-9e6ca6e575b2))
(pad "6" thru_hole oval locked (at -6.35 -1 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 6 "/SATA2_B+") (pinfunction "Pin_6") (pintype "passive") (tstamp 4cb376a5-35fa-44d2-b61a-040e57865dcb))
(pad "7" thru_hole oval locked (at -7.62 0 180) (size 1.1 1.3) (drill 0.74) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_7") (pintype "passive") (tstamp 8dad5f52-ec02-4126-81f0-04e3744a0b38))
(pad "8" thru_hole circle locked (at -10.29 -0.5 180) (size 2.5 2.5) (drill 1.35) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_8") (pintype "passive") (tstamp c59f5713-42f5-49ea-8e63-af3bba25c31b))
(pad "9" thru_hole circle locked (at 2.67 -0.5 180) (size 2.5 2.5) (drill 1.35) (layers *.Cu *.Mask)
(net 1 "GND") (pinfunction "Pin_9") (pintype "passive") (tstamp 23f960ef-108e-4e01-b572-37f8c6c880d0))
)
(gr_line (start 101.625 111) (end 177.625 111) (layer "Edge.Cuts") (width 0.05) (tstamp 00000000-0000-0000-0000-00006188b760))
(gr_line (start 177.625 111) (end 177.625 101.55) (layer "Edge.Cuts") (width 0.05) (tstamp 00000000-0000-0000-0000-00006188b87e))
(gr_line (start 177.625 98.45) (end 177.625 89) (layer "Edge.Cuts") (width 0.05) (tstamp 00000000-0000-0000-0000-00006188b87f))
(gr_line (start 177.625 89) (end 101.625 89) (layer "Edge.Cuts") (width 0.05) (tstamp 43bf5058-8ceb-4745-a58f-fea291fcde05))
(gr_arc (start 177.625 101.55) (mid 176.075 100) (end 177.625 98.45) (layer "Edge.Cuts") (width 0.05) (tstamp 6aa7e3ed-87be-4796-9299-4e0f310710c0))
(gr_text "Lane 3" (at 166.257238 99.06) (layer "F.SilkS") (tstamp 34fc9cc7-4f24-467f-b02b-9fb646f0fe75)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "Lane 1" (at 129.925746 99.06) (layer "F.SilkS") (tstamp 752c36e7-e48a-4be2-8285-6cf7603bc672)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "Lane 2" (at 148.091492 99.06) (layer "F.SilkS") (tstamp a1d7d87c-8670-4aed-a56d-f2b5515a8d8e)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "Lane 0" (at 111.76 99.06) (layer "F.SilkS") (tstamp a3791844-26f8-4bd3-8fcb-647e17405d71)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "M.2 SATA Port Reclaimer\n2022 RichardG867\nBased on M.2 card designs by CRImier" (at 138.979011 105.270734) (layer "F.SilkS") (tstamp b2ca1e9e-d7c7-4bf2-8d8c-49b73115fbd2)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(via (at 115 97.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 012c4558-88f8-4b31-beb9-761e040d4626))
(via (at 132.5 100) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 0322776e-e059-49ee-8457-3d3ab4da3d0a))
(via (at 125 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 04e94409-5512-4261-b6bb-d6509a3258fa))
(via (at 175 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 0bbc6a27-d3b6-4031-92f8-7b093180b505))
(via (at 147.5 105) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 0c3e67a7-fc6f-4b05-8a5f-c3a50e189a6e))
(via (at 115 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 0c6dff16-5e72-445f-91a7-491f152d57af))
(via (at 112.5 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 120c8e95-5cab-4fb0-b0c6-09ca61515fd2))
(via (at 142.5 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 123b6468-f6db-45b1-a133-328586fd0081))
(via (at 155 97.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 14bc00d3-b066-44e3-b14f-8e89c8f4f1e7))
(via (at 102.5 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 1848852e-e1d9-4716-96ee-6830459383c2))
(via (at 110 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 1a28e6df-9fc8-4ac3-85eb-67035c77c917))
(via (at 127.5 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 1a2e87fc-28ab-46f2-bf2d-d6539db17ee4))
(via (at 112.5 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 1d071179-53e0-4d64-b2dd-553b95039c9e))
(via (at 122.5 97.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 1d0c2a3b-34b6-43ae-941f-ee972556eab9))
(via (at 160 97.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 1fa67f05-67dc-47d1-87dd-30f395f16759))
(via (at 137.5 100) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 1fc200de-e469-41d8-9e07-1c3d687a375d))
(via (at 132.5 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 1fd048d1-dc13-4d06-b681-94cd3c0ff02e))
(via (at 125 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 2dc038a0-8e3c-48cc-a058-6da58b2e4a4d))
(via (at 135 100) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 2f40429f-0a82-494c-8d13-5b88158a9eac))
(via (at 132.5 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 3113c10c-cf74-4f92-9ad8-c1d9c38e12bf))
(via (at 105 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 34eb28ff-ef4f-4783-b74b-9f4ac7ed3129))
(via (at 162.5 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 35ec9f8c-8c54-474c-8e6b-f313cf7ef3b9))
(via (at 165 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 3915f34f-260c-48ed-89d7-bcf7e59012bc))
(via (at 150 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 3a1e6c53-af08-43b8-ac10-6d5ce19e85e7))
(via (at 115 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 3e307541-35e9-4f10-8e37-0c390d59f0fb))
(via (at 150 102.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 3eeef4c4-e9bd-4373-8b4c-84b1e794bc96))
(via (at 120 97.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 4154d11a-3d14-4aa8-93a0-cc526ac8a039))
(via (at 102.5 92.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 41cf0c3c-8264-4af4-9fe8-e37cbad16695))
(via (at 157.5 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 421a47ab-4910-44b1-9f94-671b0de496db))
(via (at 170 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 450f7fe6-facf-4a18-9836-a88acdbb6ce4))
(via (at 107.5 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 4a8d0a8d-6314-4015-a214-323a98dd9089))
(via (at 140 100) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 4a975062-f09c-41fc-be80-deb587ae2553))
(via (at 135 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 4e6f42b4-7d40-436f-8fdc-f53208dc28f3))
(via (at 157.5 100) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 4f214733-e873-4e5c-aaf5-fa724db6181a))
(via (at 165 105) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 5157d8d4-ec8d-438f-90a9-dfee100ccbaf))
(via (at 152.5 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 52110f8a-76eb-4607-92b3-cfaaa40b2af2))
(via (at 135 97.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 52d1e5e2-0379-4607-a60e-dd5e2c5e0b35))
(via (at 172.5 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 58287cf5-b512-4af2-b49c-4a99c60eada5))
(via (at 162.5 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 592210be-92bc-4a51-a42e-6b711134038a))
(via (at 120 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 60106baa-1db4-4202-9449-46ecdfc314bc))
(via (at 170 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 60f0a61c-9154-45b5-adbf-92a7054190ba))
(via (at 110 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 61a4444c-c2ea-4052-969c-da03a87d586e))
(via (at 137.5 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 621d2f90-1a86-49f6-947e-6b63f61df119))
(via (at 137.5 97.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 63770dbc-3373-449f-8686-1867b69ee141))
(via (at 142.5 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 6726b0dd-a097-4caa-b337-9c874b5b3cbf))
(via (at 155 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 69c6aeb9-2f0d-46de-a11d-6b5bd42ee472))
(via (at 172.5 97.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 73ab3219-3098-4313-96f6-d016c6515bd7))
(via (at 152.5 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 766df6a1-3167-4ecb-820b-7766a91cfcfd))
(via (at 175 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 7910a176-de8a-4753-9b5f-6d487965dd90))
(via (at 122.5 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 7ab53db8-0a08-4981-a283-f1a6b88e68b9))
(via (at 145 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 7b07c969-5fe1-4dae-93ae-2d7f8d89ad1f))
(via (at 102.5 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 7d3a8f00-547b-48ca-b682-9ebb1f316df0))
(via (at 107.5 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 7da3705b-1a39-44c1-b0e3-9e0d033a2489))
(via (at 175 105) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 7e201c07-c512-48a6-b22c-2886b9df2e44))
(via (at 155 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 8005c996-ed8b-401f-a013-77e3ed2d6b47))
(via (at 145 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 85242c3d-f197-475c-82dd-efc7486f2ee0))
(via (at 140 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 8c60ee0a-00e1-4880-bc6b-30f4aadb4912))
(via (at 102.5 95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 9291e053-807e-4912-9d9c-e52cceafcf0d))
(via (at 135 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 974241a4-f429-4443-b348-50313e7d8c2d))
(via (at 160 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp 9b382230-e98c-429d-9fbd-35746fced373))
(via (at 147.5 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp a0fd3539-713a-4633-b69c-18eaf3a90086))
(via (at 105 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp a3764519-f3aa-41cc-adc7-f701b9c3bc2b))
(via (at 175 107.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp a3f1ceec-fb98-4d7f-9562-ef65ff8b27db))
(via (at 150 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp a9de2a0c-6b77-4da2-8b79-3ed361ec2892))
(via (at 140 97.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp afb2bce2-c90d-4cbe-a068-981a91504a3d))
(via (at 170 97.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp b0a06c40-b6d0-4673-9cc2-6c1f87de3fee))
(via (at 130 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp bcb85c93-8dbf-4ca6-a0cf-d176df3dd4b8))
(via (at 122.5 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp bd8efe65-cdfc-4f4e-89a1-055a885d4a09))
(via (at 127.5 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp bde48df0-ee37-4f16-bb3d-106855c0a4ab))
(via (at 167.5 102.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp c06b973f-e835-4633-bd79-0611f0a4a943))
(via (at 152.5 97.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp c0b64c68-9c93-4648-b234-a0e8fdbd2ad2))
(via (at 120 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp c5411ffb-a1f3-40b6-bd10-6bca0aa576b6))
(via (at 175 97.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp c60a52b9-c4a7-41bf-a8e3-fa93f62fcd52))
(via (at 165 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp c6891bec-f9b8-4f6a-ad0f-11eaeb427124))
(via (at 117.5 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp ca1c44fa-ec13-4572-8476-8d07231ec7b9))
(via (at 157.5 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp cd2bfb5c-9c0d-454c-8c57-4ad089130cfc))
(via (at 155 102.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp d59c16ea-75c5-421c-aa47-8cf8a81b2143))
(via (at 167.5 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp d711dae0-5764-4218-8edb-48cfbc40d971))
(via (at 162.5 107.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp d9e55d52-90ff-4fd5-b7dc-2d1272c735a5))
(via (at 170 100) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp dd21acea-f926-4a5d-810e-3ebb7438b798))
(via (at 130 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp dd96b753-af7b-4f69-965b-e4659b9fd9cf))
(via (at 175 102.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp e0212435-4dfd-4166-a234-59bdcf5d9352))
(via (at 147.5 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp e5518d07-57b8-49dc-9af0-bc81474f4ca5))
(via (at 117.5 97.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp e7c0cf8a-7e17-45f5-b3fb-b55df59f6038))
(via (at 140 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp ea3090dc-c6fe-47d4-8a57-85b5266f7c06))
(via (at 137.5 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp ec49e4a1-642b-4ba2-9e18-dd231f8e5720))
(via (at 172.5 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp ef544792-a099-495e-911b-4d230c48a095))
(via (at 142.5 97.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp ef79cb4c-6357-4fbd-afab-c845e70b8bb5))
(via (at 157.5 97.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp f0bf6bb8-7b15-4b3a-9958-6e6cfdda8105))
(via (at 152.5 100) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp f35030c3-b8f5-4bfe-87f6-848025992cbf))
(via (at 117.5 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp f3f5bf9b-aa0e-405e-b48d-450537531a60))
(via (at 125 97.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp f42b05b5-88c3-4201-8de6-1f560238e66f))
(via (at 175 95) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp f8a1ddc0-ee0b-4ffa-b073-b00a52070107))
(via (at 152.5 105) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp fb9a5b0d-50fe-45c1-9b85-8bf5724d6815))
(via (at 160 110) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp fc3933df-fc77-41d8-8bf0-8d7f7299c38d))
(via (at 167.5 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp fc7159e0-4459-4634-b93c-f1d581a387b5))
(via (at 175 92.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp fcffd227-8f66-4ff7-af13-2b69d97234b8))
(via (at 175 100) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 1) (tstamp fe33cb13-b8b0-4c43-8ed0-b3cf3009cea2))
(segment (start 100.012501 99.225) (end 111.300676 99.225) (width 0.3) (layer "F.Cu") (net 2) (tstamp 0718ad8a-103d-4cfd-aa5a-794d05b3063d))
(segment (start 113.89 96.635676) (end 113.89 95.54) (width 0.3) (layer "F.Cu") (net 2) (tstamp 6e406882-647b-4608-8083-3e874de7243c))
(segment (start 113.89 95.54) (end 114.3 95.13) (width 0.3) (layer "F.Cu") (net 2) (tstamp a3396a8f-5213-4feb-8baf-573b5604aca3))
(segment (start 99.987501 99.25) (end 100.012501 99.225) (width 0.3) (layer "F.Cu") (net 2) (tstamp ac9389db-9705-401e-967a-e76875d0a09e))
(segment (start 111.300676 99.225) (end 113.89 96.635676) (width 0.3) (layer "F.Cu") (net 2) (tstamp b54cbcb4-dad5-4c9d-a51d-28fcc116ef6a))
(segment (start 98.9 99.25) (end 99.987501 99.25) (width 0.3) (layer "F.Cu") (net 2) (tstamp bb69a948-e347-41cf-b674-2d422cc8a775))
(segment (start 114.3 95.13) (end 114.3 94.48) (width 0.3) (layer "F.Cu") (net 2) (tstamp c0bef92f-09de-4d02-a35d-508f9a9cb027))
(segment (start 113.44 96.449276) (end 113.44 95.54) (width 0.3) (layer "F.Cu") (net 3) (tstamp 3551e61c-58a0-47be-bb83-67bcb4765945))
(segment (start 113.03 95.13) (end 113.03 94.48) (width 0.3) (layer "F.Cu") (net 3) (tstamp 48114598-fe5b-4bfe-9aaf-971aa2f7559b))
(segment (start 100.012501 98.775) (end 111.114276 98.775) (width 0.3) (layer "F.Cu") (net 3) (tstamp 67911ccd-c2c6-4067-9c54-8badfaa439f2))
(segment (start 111.114276 98.775) (end 113.44 96.449276) (width 0.3) (layer "F.Cu") (net 3) (tstamp 9fdb4db0-0a1d-4298-a888-6b915286cc77))
(segment (start 99.987501 98.75) (end 100.012501 98.775) (width 0.3) (layer "F.Cu") (net 3) (tstamp b6c69404-0fa7-4696-8c45-b067c47ad40c))
(segment (start 113.44 95.54) (end 113.03 95.13) (width 0.3) (layer "F.Cu") (net 3) (tstamp de1b8662-128c-435c-802c-32a42c5a5652))
(segment (start 98.9 98.75) (end 99.987501 98.75) (width 0.3) (layer "F.Cu") (net 3) (tstamp e51622d4-5fb3-45a4-8c09-24d1c9151b2b))
(segment (start 100.012501 97.725) (end 108.889048 97.725) (width 0.3) (layer "F.Cu") (net 4) (tstamp 047a53b1-874d-47f0-a0e4-109bb9b42951))
(segment (start 99.987501 97.75) (end 100.012501 97.725) (width 0.3) (layer "F.Cu") (net 4) (tstamp 2e77c042-f56a-4572-aeef-e59c31e89312))
(segment (start 98.9 97.75) (end 99.987501 97.75) (width 0.3) (layer "F.Cu") (net 4) (tstamp 3e71cc48-fcc2-4ea3-81ef-dcf983e97f72))
(segment (start 110.08 96.534048) (end 110.08 95.54) (width 0.3) (layer "F.Cu") (net 4) (tstamp 5df509fc-a542-4985-9704-c214599e3098))
(segment (start 110.08 95.54) (end 110.49 95.13) (width 0.3) (layer "F.Cu") (net 4) (tstamp 991d1454-8d84-4671-b52c-81ecda704019))
(segment (start 108.889048 97.725) (end 110.08 96.534048) (width 0.3) (layer "F.Cu") (net 4) (tstamp 9dd1cd16-22a4-474e-b321-1586f91d08e1))
(segment (start 110.49 95.13) (end 110.49 94.48) (width 0.3) (layer "F.Cu") (net 4) (tstamp b19e3b39-f8c2-422b-9723-0333c3c1260d))
(segment (start 109.63 96.347648) (end 109.63 95.54) (width 0.3) (layer "F.Cu") (net 5) (tstamp 04a6647e-9ba7-4e3a-ad3f-1e709426c972))
(segment (start 99.987501 97.25) (end 100.012501 97.275) (width 0.3) (layer "F.Cu") (net 5) (tstamp 2f8a6d69-ff80-4a90-b2c8-f027667e46d6))
(segment (start 109.22 95.13) (end 109.22 94.48) (width 0.3) (layer "F.Cu") (net 5) (tstamp 3b1c2e04-b67f-4a52-ad86-d639f3f8fa99))
(segment (start 109.63 95.54) (end 109.22 95.13) (width 0.3) (layer "F.Cu") (net 5) (tstamp 3d844430-3203-467f-ae3f-54204202df36))
(segment (start 108.702648 97.275) (end 109.63 96.347648) (width 0.3) (layer "F.Cu") (net 5) (tstamp c833e65b-3bad-43d2-b1bb-ccae4708321a))
(segment (start 98.9 97.25) (end 99.987501 97.25) (width 0.3) (layer "F.Cu") (net 5) (tstamp d99cfbd7-af30-4f88-9cb9-7b7d56231a23))
(segment (start 100.012501 97.275) (end 108.702648 97.275) (width 0.3) (layer "F.Cu") (net 5) (tstamp db1b593e-640d-48d2-a035-9094594ffb66))
(segment (start 100.012981 101.77548) (end 99.987501 101.75) (width 0.3) (layer "F.Cu") (net 6) (tstamp 38332cc0-edb8-4773-a0e8-4428cc3a897f))
(segment (start 126.584941 101.3968) (end 126.206261 101.77548) (width 0.3) (layer "F.Cu") (net 6) (tstamp 49ecc63c-8611-44b9-bcd7-200c9df9a2d6))
(segment (start 128.473197 101.3968) (end 126.584941 101.3968) (width 0.3) (layer "F.Cu") (net 6) (tstamp 53293d61-44a2-48ec-a1d3-7624035a1042))
(segment (start 126.206261 101.77548) (end 100.012981 101.77548) (width 0.3) (layer "F.Cu") (net 6) (tstamp 93dbd48b-db02-4c80-a5c5-df639945c74d))
(segment (start 128.497974 101.421577) (end 128.473197 101.3968) (width 0.3) (layer "F.Cu") (net 6) (tstamp aaa7052f-4586-45e4-8be4-45537a2aa4c0))
(segment (start 99.987501 101.75) (end 98.9 101.75) (width 0.3) (layer "F.Cu") (net 6) (tstamp d9a703d2-3acc-4493-beb7-da40a271b9e9))
(via (at 128.497974 101.421577) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 6) (tstamp d6959e17-89d7-43a7-9361-0d594c30de5e))
(segment (start 132.465746 95.13) (end 132.465746 94.48) (width 0.3) (layer "B.Cu") (net 6) (tstamp 4a7f1235-5880-48e1-9709-1d13dcccd22d))
(segment (start 128.497974 101.421577) (end 128.497974 101.068051) (width 0.3) (layer "B.Cu") (net 6) (tstamp 7120e30c-d844-4867-997d-e2c573fe7430))
(segment (start 132.055746 95.54) (end 132.465746 95.13) (width 0.3) (layer "B.Cu") (net 6) (tstamp 7ff8523d-38e6-47fc-b217-3c790fc767b4))
(segment (start 132.055064 97.510961) (end 132.055746 97.510961) (width 0.3) (layer "B.Cu") (net 6) (tstamp 9d91c471-18c6-4786-84a2-f18c173e4895))
(segment (start 128.497974 101.068051) (end 132.055064 97.510961) (width 0.3) (layer "B.Cu") (net 6) (tstamp a040c575-2299-497a-89f9-c1a45525ab86))
(segment (start 132.055746 97.510961) (end 132.055746 95.54) (width 0.3) (layer "B.Cu") (net 6) (tstamp bfa8e8b2-752b-4b9b-9677-7d28c9fea2af))
(segment (start 99.987501 102.25) (end 98.9 102.25) (width 0.3) (layer "F.Cu") (net 7) (tstamp 63f25419-2149-462a-8675-627cd8ba3373))
(segment (start 126.906094 102.0963) (end 126.777394 102.225) (width 0.3) (layer "F.Cu") (net 7) (tstamp 7d14f85d-5822-48b1-8bd4-809781576123))
(segment (start 126.777394 102.225) (end 100.012501 102.225) (width 0.3) (layer "F.Cu") (net 7) (tstamp 99a107ca-b8c3-4b02-aeb7-adb832e58bb1))
(segment (start 100.012501 102.225) (end 99.987501 102.25) (width 0.3) (layer "F.Cu") (net 7) (tstamp f23f3ab3-1ca8-4a11-a730-6795a9b3e68d))
(via (at 126.906094 102.0963) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 7) (tstamp 80093fa5-092c-4fb0-9e56-653070be7df3))
(segment (start 131.605746 95.54) (end 131.195746 95.13) (width 0.3) (layer "B.Cu") (net 7) (tstamp 20ab87e1-69c4-4f11-be76-767ec914fe9e))
(segment (start 131.195746 95.13) (end 131.195746 94.48) (width 0.3) (layer "B.Cu") (net 7) (tstamp 3c02cb7f-5e9e-4327-8fec-4de455c3692f))
(segment (start 126.906094 102.0963) (end 126.906094 102.024213) (width 0.3) (layer "B.Cu") (net 7) (tstamp 7ec237a3-eaa6-43d8-abbd-5c8e42fb0d1e))
(segment (start 126.906094 102.024213) (end 131.605746 97.324561) (width 0.3) (layer "B.Cu") (net 7) (tstamp a20415ea-3cd9-4ad7-b632-94b532bc1e47))
(segment (start 131.605746 97.324561) (end 131.605746 95.54) (width 0.3) (layer "B.Cu") (net 7) (tstamp a6a10747-c71d-4c11-ae9d-128e42ae8df9))
(segment (start 128.245746 95.54) (end 128.655746 95.13) (width 0.3) (layer "F.Cu") (net 8) (tstamp 0efd57df-6022-4a81-82c3-353b02bbe45e))
(segment (start 124.87943 100.725) (end 128.245746 97.358684) (width 0.3) (layer "F.Cu") (net 8) (tstamp 4c3ff713-a65b-43bc-82a4-7427c89ec45e))
(segment (start 128.245746 97.358684) (end 128.245746 95.54) (width 0.3) (layer "F.Cu") (net 8) (tstamp 7585e14c-4570-49a9-b948-37baf8e76126))
(segment (start 98.9 100.75) (end 99.987501 100.75) (width 0.3) (layer "F.Cu") (net 8) (tstamp a055e438-8549-43c3-8a81-e4bf694c046d))
(segment (start 100.012501 100.725) (end 124.87943 100.725) (width 0.3) (layer "F.Cu") (net 8) (tstamp b71759cb-5711-4b32-bb23-70fc0e00df4b))
(segment (start 99.987501 100.75) (end 100.012501 100.725) (width 0.3) (layer "F.Cu") (net 8) (tstamp df5d83ec-41b1-4ece-9581-6e507c4c4d43))
(segment (start 128.655746 95.13) (end 128.655746 94.48) (width 0.3) (layer "F.Cu") (net 8) (tstamp eeb26a76-83b2-48a0-b657-67a6ab101070))
(segment (start 127.795746 97.172284) (end 127.795746 95.54) (width 0.3) (layer "F.Cu") (net 9) (tstamp 18684849-5c68-461a-b8f6-4526d8a345b6))
(segment (start 127.385746 95.13) (end 127.385746 94.48) (width 0.3) (layer "F.Cu") (net 9) (tstamp 466af63c-9c1d-4093-acb6-43ed4ac28b8c))
(segment (start 98.9 100.25) (end 99.987501 100.25) (width 0.3) (layer "F.Cu") (net 9) (tstamp 786f39e3-d215-46cf-8470-64173ce6cb39))
(segment (start 100.012501 100.275) (end 124.69303 100.275) (width 0.3) (layer "F.Cu") (net 9) (tstamp 97c0d7b8-7715-47c9-88a3-abc233c6fb3a))
(segment (start 124.69303 100.275) (end 127.795746 97.172284) (width 0.3) (layer "F.Cu") (net 9) (tstamp c00e6130-5c9b-460f-a8b2-bfc1fc8b878c))
(segment (start 127.795746 95.54) (end 127.385746 95.13) (width 0.3) (layer "F.Cu") (net 9) (tstamp c54392ff-8e30-4e6d-a251-bc3e1d08e409))
(segment (start 99.987501 100.25) (end 100.012501 100.275) (width 0.3) (layer "F.Cu") (net 9) (tstamp ddb96ba5-54d2-4315-bb8b-d302a15c9d6e))
(segment (start 143.51 104.394) (end 141.50388 104.394) (width 0.3) (layer "F.Cu") (net 10) (tstamp 40f92de2-f755-4767-9fec-82e957499a45))
(segment (start 100.012981 104.77548) (end 99.987501 104.75) (width 0.3) (layer "F.Cu") (net 10) (tstamp 4ffa7989-137a-4184-9abd-b1767200ff89))
(segment (start 141.1224 104.77548) (end 100.012981 104.77548) (width 0.3) (layer "F.Cu") (net 10) (tstamp 8f4ffe5b-5f05-4b05-a2d1-4b17584a324b))
(segment (start 141.50388 104.394) (end 141.1224 104.77548) (width 0.3) (layer "F.Cu") (net 10) (tstamp baca2e65-7387-4948-b485-901ba9d8ac2a))
(segment (start 143.581921 104.465921) (end 143.51 104.394) (width 0.3) (layer "F.Cu") (net 10) (tstamp bf26e4c3-537a-4333-98e3-ed7e2c903484))
(segment (start 99.987501 104.75) (end 98.9 104.75) (width 0.3) (layer "F.Cu") (net 10) (tstamp d34f8583-fc00-490b-b8c9-fa2d8bd31b23))
(via (at 143.581921 104.465921) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 22a7d2c4-6cff-4b42-90f0-4afd19f0b610))
(segment (start 150.221492 95.54) (end 150.631492 95.13) (width 0.3) (layer "B.Cu") (net 10) (tstamp 094d78d3-2f75-47fb-814f-bd65be1cbade))
(segment (start 150.22081 97.473507) (end 150.221492 97.473507) (width 0.3) (layer "B.Cu") (net 10) (tstamp 68c54738-e5c9-405e-9ff4-131e20efa4aa))
(segment (start 150.221492 97.473507) (end 150.221492 95.54) (width 0.3) (layer "B.Cu") (net 10) (tstamp bd8d3855-d292-48cc-ae54-fac71fe069ca))
(segment (start 143.581921 104.112396) (end 150.22081 97.473507) (width 0.3) (layer "B.Cu") (net 10) (tstamp c94c95a4-38f0-4966-8f46-f7651382dacd))
(segment (start 143.581921 104.465921) (end 143.581921 104.112396) (width 0.3) (layer "B.Cu") (net 10) (tstamp f0a4d952-8850-45d7-ab72-6ab2ab34bc83))
(segment (start 150.631492 95.13) (end 150.631492 94.48) (width 0.3) (layer "B.Cu") (net 10) (tstamp fec811bb-2bcc-4815-8157-ac2ef03638d4))
(segment (start 141.765518 105.121606) (end 141.662124 105.225) (width 0.3) (layer "F.Cu") (net 11) (tstamp 390107c2-6b51-4b71-a6d5-eed37655fc5e))
(segment (start 99.987501 105.25) (end 98.9 105.25) (width 0.3) (layer "F.Cu") (net 11) (tstamp 75f3cf86-e613-4311-ae91-643aeedbc051))
(segment (start 141.662124 105.225) (end 100.012501 105.225) (width 0.3) (layer "F.Cu") (net 11) (tstamp 82c6d0f9-fc28-4fa1-a0d5-cea2b4b753c1))
(segment (start 100.012501 105.225) (end 99.987501 105.25) (width 0.3) (layer "F.Cu") (net 11) (tstamp b42da3d2-90db-4597-8dbd-0cffa0ed0074))
(via (at 141.765518 105.121606) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 380ef123-7a69-4a27-93ae-7217cc9687c1))
(segment (start 141.936993 105.121606) (end 149.771492 97.287107) (width 0.3) (layer "B.Cu") (net 11) (tstamp 15f46950-a6fb-45cc-ada5-0012a8dad9a3))
(segment (start 141.765518 105.121606) (end 141.936993 105.121606) (width 0.3) (layer "B.Cu") (net 11) (tstamp 45649c86-417a-4115-92e6-9801af2ea7c8))
(segment (start 149.771492 97.287107) (end 149.771492 95.54) (width 0.3) (layer "B.Cu") (net 11) (tstamp 47cb20e8-a648-4196-8c13-5e33ec2811a7))
(segment (start 149.361492 95.13) (end 149.361492 94.48) (width 0.3) (layer "B.Cu") (net 11) (tstamp 51643bb6-9ba8-447a-9fae-b31904ccca35))
(segment (start 149.771492 95.54) (end 149.361492 95.13) (width 0.3) (layer "B.Cu") (net 11) (tstamp ddc4fa24-8af8-41c3-8fca-aa47865df6db))
(segment (start 146.411492 97.461488) (end 146.411492 95.54) (width 0.3) (layer "F.Cu") (net 12) (tstamp 3b282d12-1d53-45fb-b437-b6a4768cbb8a))
(segment (start 146.411492 95.54) (end 146.821492 95.13) (width 0.3) (layer "F.Cu") (net 12) (tstamp 5214e2a9-9a86-434e-ae46-ae3e904ba050))
(segment (start 99.987501 103.75) (end 100.012501 103.725) (width 0.3) (layer "F.Cu") (net 12) (tstamp 72ebc11e-955c-461a-9153-d9134ab84bad))
(segment (start 146.821492 95.13) (end 146.821492 94.48) (width 0.3) (layer "F.Cu") (net 12) (tstamp 90fe922c-4edd-41eb-bb77-6c5e2157a512))
(segment (start 98.9 103.75) (end 99.987501 103.75) (width 0.3) (layer "F.Cu") (net 12) (tstamp ca3c529c-1fd5-4e35-a315-fe8280766e42))
(segment (start 140.14798 103.725) (end 146.411492 97.461488) (width 0.3) (layer "F.Cu") (net 12) (tstamp d8ad578e-871a-4e70-bbf9-b0eb39fc8c8e))
(segment (start 100.012501 103.725) (end 140.14798 103.725) (width 0.3) (layer "F.Cu") (net 12) (tstamp ecb73ac7-614d-4556-b7d3-650ed5463dc9))
(segment (start 145.961492 95.54) (end 145.551492 95.13) (width 0.3) (layer "F.Cu") (net 13) (tstamp 1f492a40-c11d-4b9d-9884-488a48d7517b))
(segment (start 100.012501 103.275) (end 139.96158 103.275) (width 0.3) (layer "F.Cu") (net 13) (tstamp 2610dede-93e2-4e41-bb4e-031032a3c5ae))
(segment (start 145.961492 97.275088) (end 145.961492 95.54) (width 0.3) (layer "F.Cu") (net 13) (tstamp 7403a2f6-aac3-47cc-a0cd-70bc1a88b460))
(segment (start 145.551492 95.13) (end 145.551492 94.48) (width 0.3) (layer "F.Cu") (net 13) (tstamp b19b0372-e673-420d-ad9c-cc1f631a7730))
(segment (start 99.987501 103.25) (end 100.012501 103.275) (width 0.3) (layer "F.Cu") (net 13) (tstamp bb38792f-2180-4414-8d80-986283c47409))
(segment (start 98.9 103.25) (end 99.987501 103.25) (width 0.3) (layer "F.Cu") (net 13) (tstamp bc329266-acea-4a55-adfd-99799762ea4f))
(segment (start 139.96158 103.275) (end 145.961492 97.275088) (width 0.3) (layer "F.Cu") (net 13) (tstamp e96b1739-27b6-4804-9b37-ce6e41db64a5))
(segment (start 156.763272 107.504489) (end 156.492281 107.77548) (width 0.3) (layer "F.Cu") (net 14) (tstamp 0ce64960-a285-4dde-9527-e3a7018d7979))
(segment (start 156.492281 107.77548) (end 155.77588 107.77548) (width 0.3) (layer "F.Cu") (net 14) (tstamp 1ede2016-b894-461f-a45a-476ae40e5749))
(segment (start 100.012501 107.775) (end 99.987501 107.75) (width 0.3) (layer "F.Cu") (net 14) (tstamp 248d8c00-5d83-447e-a1d0-a4537b252b50))
(segment (start 155.77588 107.77548) (end 155.7754 107.775) (width 0.3) (layer "F.Cu") (net 14) (tstamp 57779952-5de3-4e31-8306-6ad9fa800248))
(segment (start 158.710889 107.504489) (end 156.763272 107.504489) (width 0.3) (layer "F.Cu") (net 14) (tstamp 663b4277-31dd-4f4c-9a98-d922b10f4442))
(segment (start 99.987501 107.75) (end 98.9 107.75) (width 0.3) (layer "F.Cu") (net 14) (tstamp 66c404be-266f-4b31-aa32-899d9f0a288f))
(segment (start 155.7754 107.775) (end 100.012501 107.775) (width 0.3) (layer "F.Cu") (net 14) (tstamp a13329ab-dd6c-4fa6-b2f6-1c95b949e80e))
(segment (start 158.726332 107.519932) (end 158.710889 107.504489) (width 0.3) (layer "F.Cu") (net 14) (tstamp f505ed94-e7c6-4cd3-a46d-8f3cda0c19d7))
(via (at 158.726332 107.519932) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 14) (tstamp 14fe80ea-67c0-40e0-9a30-e0fd95e251fe))
(segment (start 168.797238 94.473494) (end 168.797238 95.123494) (width 0.3) (layer "B.Cu") (net 14) (tstamp 39684cbd-11fd-4502-9701-1b0824aa41ec))
(segment (start 158.726332 107.166406) (end 158.726332 107.519932) (width 0.3) (layer "B.Cu") (net 14) (tstamp 3c4bcd01-1750-47cb-b85d-5114e6e61952))
(segment (start 168.797238 95.123494) (end 168.387238 95.533494) (width 0.3) (layer "B.Cu") (net 14) (tstamp 66c388a5-175c-4cea-81cc-e9053f96edf1))
(segment (start 168.386556 97.506182) (end 158.726332 107.166406) (width 0.3) (layer "B.Cu") (net 14) (tstamp 6f5787fe-0220-44cf-840e-8d075277a0c9))
(segment (start 168.387238 97.506182) (end 168.386556 97.506182) (width 0.3) (layer "B.Cu") (net 14) (tstamp ce42957d-143c-4d40-b916-8047666cdb59))
(segment (start 168.387238 95.533494) (end 168.387238 97.506182) (width 0.3) (layer "B.Cu") (net 14) (tstamp e90839eb-664d-4949-a17e-c527f9937264))
(segment (start 99.987501 108.25) (end 100.012501 108.225) (width 0.3) (layer "F.Cu") (net 15) (tstamp 06ae97a4-88d2-4834-88aa-1e7d52cb384c))
(segment (start 100.012501 108.225) (end 157.03202 108.225) (width 0.3) (layer "F.Cu") (net 15) (tstamp 612bbfc9-4074-45f4-a518-4ad00607eeb8))
(segment (start 157.03202 108.225) (end 157.05302 108.204) (width 0.3) (layer "F.Cu") (net 15) (tstamp 6f287adf-122d-4b95-bd02-015c179afded))
(segment (start 98.9 108.25) (end 99.987501 108.25) (width 0.3) (layer "F.Cu") (net 15) (tstamp d239a11c-3200-4ea6-a08f-33f6daffbd1f))
(via (at 157.05302 108.204) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 15) (tstamp 6c7ae708-393b-4204-ab85-ecb9085bb1d9))
(segment (start 167.527238 95.123494) (end 167.527238 94.473494) (width 0.3) (layer "B.Cu") (net 15) (tstamp 443898e4-3472-4349-85fc-93973054f416))
(segment (start 167.937238 97.319782) (end 167.937238 95.533494) (width 0.3) (layer "B.Cu") (net 15) (tstamp 8e76089b-3d3b-486a-8c8c-b1f3b0c70b20))
(segment (start 167.937238 95.533494) (end 167.527238 95.123494) (width 0.3) (layer "B.Cu") (net 15) (tstamp ae77c1c8-b0c9-4ea3-a823-e04593127520))
(segment (start 167.937238 97.319782) (end 157.05302 108.204) (width 0.3) (layer "B.Cu") (net 15) (tstamp dcc29deb-4dd9-4a98-b6aa-c8d66a1a514a))
(segment (start 98.9 106.75) (end 99.987501 106.75) (width 0.3) (layer "F.Cu") (net 16) (tstamp 28186c37-59da-458e-aa49-d88de562f9ab))
(segment (start 164.577238 97.424034) (end 164.577238 95.533494) (width 0.3) (layer "F.Cu") (net 16) (tstamp 7b9bd050-122d-45de-bf16-b9ff8732a9fc))
(segment (start 99.987501 106.75) (end 100.012501 106.725) (width 0.3) (layer "F.Cu") (net 16) (tstamp 7ccba839-5416-4464-a99b-1ea9ef8c9d98))
(segment (start 164.987238 95.123494) (end 164.987238 94.473494) (width 0.3) (layer "F.Cu") (net 16) (tstamp 926a5715-f601-4121-8054-119f988402cd))
(segment (start 164.577238 95.533494) (end 164.987238 95.123494) (width 0.3) (layer "F.Cu") (net 16) (tstamp a3dc1eea-f9e9-45d2-8354-f822dfb55e4a))
(segment (start 155.276272 106.725) (end 164.577238 97.424034) (width 0.3) (layer "F.Cu") (net 16) (tstamp bb0fc435-b3a5-49a4-bfff-a6f54cbd9c70))
(segment (start 100.012501 106.725) (end 155.276272 106.725) (width 0.3) (layer "F.Cu") (net 16) (tstamp d699b21c-487a-4f04-829d-3911b878fa6d))
(segment (start 164.127238 95.533494) (end 163.717238 95.123494) (width 0.3) (layer "F.Cu") (net 17) (tstamp 0e2d8c84-1656-48a6-941b-566038427e7e))
(segment (start 164.127238 97.237634) (end 164.127238 95.533494) (width 0.3) (layer "F.Cu") (net 17) (tstamp 343c1d18-84af-4e86-8a7d-9a9db151db8f))
(segment (start 163.717238 95.123494) (end 163.717238 94.473494) (width 0.3) (layer "F.Cu") (net 17) (tstamp 3ad50f66-8a50-4ecf-bea9-cd58cf79a2f1))
(segment (start 100.012501 106.275) (end 155.089872 106.275) (width 0.3) (layer "F.Cu") (net 17) (tstamp 4d2a0ac3-ef52-47fa-8540-c1cc8fccd63a))
(segment (start 155.089872 106.275) (end 164.127238 97.237634) (width 0.3) (layer "F.Cu") (net 17) (tstamp 53445a08-ff95-4325-b4bf-04b596365566))
(segment (start 98.9 106.25) (end 99.987501 106.25) (width 0.3) (layer "F.Cu") (net 17) (tstamp 7dbb2be7-1f17-4c81-af9a-4f34b42a9ef6))
(segment (start 99.987501 106.25) (end 100.012501 106.275) (width 0.3) (layer "F.Cu") (net 17) (tstamp e9852e30-aabf-42f1-b600-c2182511c028))
(zone (net 1) (net_name "GND") (layers F&B.Cu) (tstamp 00000000-0000-0000-0000-00006188dfbc) (hatch edge 0.508)
(connect_pads (clearance 0.2))
(min_thickness 0.2) (filled_areas_thickness no)
(fill yes (thermal_gap 0.2) (thermal_bridge_width 0.21))
(polygon
(pts
(xy 177.8 111.252)
(xy 97.6376 111.252)
(xy 97.6376 89.0016)
(xy 177.8 89.0016)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 177.383691 89.219407)
(xy 177.419655 89.268907)
(xy 177.4245 89.2995)
(xy 177.4245 98.172397)
(xy 177.405593 98.230588)
(xy 177.356093 98.266552)
(xy 177.346546 98.269135)
(xy 177.130568 98.316118)
(xy 176.895959 98.403622)
(xy 176.892863 98.405313)
(xy 176.892862 98.405313)
(xy 176.859956 98.423281)
(xy 176.676191 98.523624)
(xy 176.633941 98.555252)
(xy 176.499817 98.655656)
(xy 176.475738 98.673681)
(xy 176.298681 98.850738)
(xy 176.148624 99.051191)
(xy 176.028622 99.270959)
(xy 175.941118 99.505568)
(xy 175.887892 99.750242)
(xy 175.870029 100)
(xy 175.887892 100.249758)
(xy 175.941118 100.494432)
(xy 176.028622 100.729041)
(xy 176.148624 100.948809)
(xy 176.230681 101.058424)
(xy 176.295491 101.145)
(xy 176.298681 101.149262)
(xy 176.475738 101.326319)
(xy 176.478565 101.328435)
(xy 176.478567 101.328437)
(xy 176.504887 101.34814)
(xy 176.676191 101.476376)
(xy 176.895959 101.596378)
(xy 177.130568 101.683882)
(xy 177.340577 101.729567)
(xy 177.346544 101.730865)
(xy 177.399386 101.76171)
(xy 177.424006 101.817724)
(xy 177.4245 101.827603)
(xy 177.4245 110.7005)
(xy 177.405593 110.758691)
(xy 177.356093 110.794655)
(xy 177.3255 110.7995)
(xy 101.9245 110.7995)
(xy 101.866309 110.780593)
(xy 101.830345 110.731093)
(xy 101.8255 110.7005)
(xy 101.8255 110.459281)
(xy 101.828057 110.436926)
(xy 101.829388 110.431183)
(xy 101.830655 110.425718)
(xy 101.830656 110.425)
(xy 101.828935 110.417458)
(xy 101.826933 110.405144)
(xy 101.815841 110.29252)
(xy 101.815841 110.292519)
(xy 101.815364 110.287678)
(xy 101.775309 110.155633)
(xy 101.759227 110.125545)
(xy 101.728223 110.067543)
(xy 101.710262 110.03394)
(xy 101.622725 109.927275)
(xy 101.51606 109.839738)
(xy 101.394367 109.774691)
(xy 101.262322 109.734636)
(xy 101.257483 109.734159)
(xy 101.257481 109.734159)
(xy 101.145896 109.723169)
(xy 101.133248 109.72109)
(xy 101.131184 109.720612)
(xy 101.131183 109.720612)
(xy 101.125718 109.719345)
(xy 101.125 109.719344)
(xy 101.119548 109.720588)
(xy 101.119545 109.720588)
(xy 101.113266 109.72202)
(xy 101.091248 109.7245)
(xy 99.850201 109.7245)
(xy 99.79201 109.705593)
(xy 99.756046 109.656093)
(xy 99.756046 109.594907)
(xy 99.771045 109.57043)
(xy 99.769192 109.569192)
(xy 99.807979 109.511142)
(xy 99.815298 109.493474)
(xy 99.824052 109.449462)
(xy 99.825 109.43984)
(xy 99.825 109.37068)
(xy 99.820878 109.357995)
(xy 99.816757 109.355)
(xy 98.894 109.355)
(xy 98.835809 109.336093)
(xy 98.799845 109.286593)
(xy 98.795 109.256)
(xy 98.795 109.12932)
(xy 99.005 109.12932)
(xy 99.009122 109.142005)
(xy 99.013243 109.145)
(xy 99.80932 109.145)
(xy 99.822005 109.140878)
(xy 99.825 109.136757)
(xy 99.825 109.06016)
(xy 99.824052 109.050536)
(xy 99.817842 109.019313)
(xy 99.817842 108.980687)
(xy 99.824052 108.949464)
(xy 99.825 108.93984)
(xy 99.825 108.87068)
(xy 99.820878 108.857995)
(xy 99.816757 108.855)
(xy 99.02068 108.855)
(xy 99.007995 108.859122)
(xy 99.005 108.863243)
(xy 99.005 109.12932)
(xy 98.795 109.12932)
(xy 98.795 108.744)
(xy 98.813907 108.685809)
(xy 98.863407 108.649845)
(xy 98.894 108.645)
(xy 99.80932 108.645)
(xy 99.822513 108.640713)
(xy 99.871191 108.605346)
(xy 99.901785 108.6005)
(xy 99.939553 108.6005)
(xy 99.960389 108.602718)
(xy 99.961671 108.602994)
(xy 99.970762 108.604951)
(xy 100.002572 108.601186)
(xy 100.008464 108.600839)
(xy 100.008464 108.600836)
(xy 100.012531 108.6005)
(xy 100.016616 108.6005)
(xy 100.020642 108.59983)
(xy 100.020653 108.599829)
(xy 100.03462 108.597504)
(xy 100.039227 108.596848)
(xy 100.06219 108.59413)
(xy 100.078513 108.592198)
(xy 100.078514 108.592198)
(xy 100.086639 108.591236)
(xy 100.093623 108.587882)
(xy 100.094955 108.587461)
(xy 100.102604 108.586188)
(xy 100.109805 108.582302)
(xy 100.114082 108.580838)
(xy 100.146151 108.5755)
(xy 156.532347 108.5755)
(xy 156.590538 108.594407)
(xy 156.610888 108.614232)
(xy 156.624738 108.632282)
(xy 156.750179 108.728536)
(xy 156.896258 108.789044)
(xy 157.05302 108.809682)
(xy 157.209782 108.789044)
(xy 157.355861 108.728536)
(xy 157.481302 108.632282)
(xy 157.577556 108.506841)
(xy 157.638064 108.360762)
(xy 157.658702 108.204)
(xy 157.638064 108.047238)
(xy 157.615132 107.991875)
(xy 157.610331 107.930878)
(xy 157.642301 107.878709)
(xy 157.698829 107.855294)
(xy 157.706596 107.854989)
(xy 158.177695 107.854989)
(xy 158.235886 107.873896)
(xy 158.256236 107.893721)
(xy 158.29805 107.948214)
(xy 158.423491 108.044468)
(xy 158.56957 108.104976)
(xy 158.726332 108.125614)
(xy 158.883094 108.104976)
(xy 159.029173 108.044468)
(xy 159.154614 107.948214)
(xy 159.250868 107.822773)
(xy 159.311376 107.676694)
(xy 159.332014 107.519932)
(xy 159.311376 107.36317)
(xy 159.250868 107.217091)
(xy 159.154614 107.09165)
(xy 159.029173 106.995396)
(xy 158.883094 106.934888)
(xy 158.726332 106.91425)
(xy 158.56957 106.934888)
(xy 158.423491 106.995396)
(xy 158.29805 107.09165)
(xy 158.279937 107.115256)
(xy 158.229514 107.149912)
(xy 158.201395 107.153989)
(xy 156.81122 107.153989)
(xy 156.790384 107.151771)
(xy 156.789102 107.151495)
(xy 156.780011 107.149538)
(xy 156.748201 107.153303)
(xy 156.742309 107.15365)
(xy 156.742309 107.153653)
(xy 156.738242 107.153989)
(xy 156.734157 107.153989)
(xy 156.730131 107.154659)
(xy 156.73012 107.15466)
(xy 156.716153 107.156985)
(xy 156.711541 107.157642)
(xy 156.664133 107.163253)
(xy 156.65715 107.166606)
(xy 156.655816 107.167028)
(xy 156.648169 107.168301)
(xy 156.640968 107.172187)
(xy 156.640967 107.172187)
(xy 156.606133 107.190983)
(xy 156.601975 107.193101)
(xy 156.56456 107.211067)
(xy 156.564559 107.211068)
(xy 156.558946 107.213763)
(xy 156.554998 107.217081)
(xy 156.553488 107.218591)
(xy 156.552201 107.219771)
(xy 156.551175 107.220637)
(xy 156.545478 107.223711)
(xy 156.539927 107.229716)
(xy 156.539922 107.22972)
(xy 156.511463 107.260507)
(xy 156.508769 107.26331)
(xy 156.376095 107.395984)
(xy 156.321578 107.423761)
(xy 156.306091 107.42498)
(xy 155.84118 107.42498)
(xy 155.835628 107.42474)
(xy 155.835626 107.424777)
(xy 155.833488 107.424685)
(xy 155.831356 107.4245)
(xy 155.829212 107.4245)
(xy 155.827499 107.424426)
(xy 155.826138 107.424311)
(xy 155.819936 107.422456)
(xy 155.811765 107.422777)
(xy 155.769846 107.424424)
(xy 155.765959 107.4245)
(xy 100.136954 107.4245)
(xy 100.108585 107.420348)