-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAKBDB.kicad_pcb
3405 lines (3388 loc) · 136 KB
/
AKBDB.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 "User" 150.012 150.012)
(title_block
(title "AKB DB")
(rev "R1")
)
(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.25)
(pcbplotparams
(layerselection 0x00310fc_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 true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "../gerbers-C3")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "VCC")
(net 3 "Net-(J1-PadA5)")
(net 4 "Net-(J1-PadB5)")
(net 5 "VBUS")
(net 6 "unconnected-(J1-PadA8)")
(net 7 "unconnected-(J1-PadB8)")
(net 8 "DBus+")
(net 9 "DBus-")
(net 10 "DN")
(net 11 "DP")
(net 12 "GNDPWR")
(footprint "random-keyboard-parts:Generic-Mounthole" (layer "F.Cu")
(tedit 5E77ED0E) (tstamp 0f54db53-a272-4955-88fb-d7ab00657bb0)
(at 56.1975 63.463)
(property "Sheetfile" "AKBDB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c91ec94")
(attr exclude_from_pos_files)
(fp_text reference "MH2" (at 0 2) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 80094b70-85ab-4ff6-934b-60d5ee65023a)
)
(fp_text value "Mount-M2" (at 0 -2) (layer "Dwgs.User") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d4a1d3c4-b315-4bec-9220-d12a9eab51e0)
)
(pad "1" thru_hole circle locked (at 0 0) (size 3.500001 3.500001) (drill 2.2) (layers *.Cu *.Mask)
(net 12 "GNDPWR") (pinfunction "Pin_1") (pintype "passive") (tstamp bfc0aadc-38cf-466e-a642-68fdc3138c78))
)
(footprint "random-keyboard-parts:Generic-Mounthole" (layer "F.Cu")
(tedit 5C91B17B) (tstamp 318cf86b-7a79-4a1c-aea4-6dea0788c7a3)
(at 27.314 63.467682)
(property "Sheetfile" "AKBDB.kicad_sch")
(property "Sheetname" "")
(path "/615b1bcb-7693-4670-829b-2b21b2ca00f2")
(attr exclude_from_pos_files)
(fp_text reference "MH1" (at 0 2) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4c9fdea7-ba0c-45cc-8f66-240980c37d5c)
)
(fp_text value "Mount-M2" (at 0 -2) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c58960d9-4cac-4036-ad2e-1aef26946dae)
)
(pad "1" thru_hole circle locked (at 0 0) (size 3.5 3.5) (drill 2.2) (layers *.Cu *.Mask)
(net 12 "GNDPWR") (pinfunction "Pin_1") (pintype "passive") (tstamp 6919ceca-add4-40e0-ab4b-a1f58809f080))
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp 3172f2e2-18d2-4a80-ae30-5707b3409798)
(at 41.0525 61.63 90)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Package" "R0603")
(property "Sheetfile" "AKBDB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c91b0d9")
(attr smd)
(fp_text reference "R2" (at 0 1.17 270) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b994142f-02ac-4881-9587-6d3df53c96d2)
)
(fp_text value "5.1k" (at 0 -1.17 270) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp b603d26a-e034-42fb-8327-b60c5bf9cdd2)
)
(fp_text user "${REFERENCE}" (at 0 0 270) (layer "B.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)) (justify mirror))
(tstamp 7e969d15-6cc0-4258-8b27-586608a21adb)
)
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "B.SilkS") (width 0.12) (tstamp 2f538dc6-030c-4a10-89a8-bc88ece804a6))
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "B.SilkS") (width 0.12) (tstamp 6f9f5b27-060f-4959-80cd-5031a971d7d0))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 2bef89de-08c7-4a13-9d85-67948d429ca0))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 6bb457a7-b906-4260-8a94-5a930b04f8ee))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp 6ca3c38c-4e71-4202-b6c1-1b25f04a27ae))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp fc0a4225-db46-4d48-8163-d522602d57cd))
(fp_line (start 0.525 0.27) (end 0.525 -0.27) (layer "B.Fab") (width 0.1) (tstamp 29256b3d-9450-4c0a-a4d4-911f04b9c140))
(fp_line (start 0.525 -0.27) (end -0.525 -0.27) (layer "B.Fab") (width 0.1) (tstamp 37e4dc66-4492-4061-908d-7213940a2ec3))
(fp_line (start -0.525 -0.27) (end -0.525 0.27) (layer "B.Fab") (width 0.1) (tstamp 483f60da-14d7-4f88-8d01-3f9f30784c70))
(fp_line (start -0.525 0.27) (end 0.525 0.27) (layer "B.Fab") (width 0.1) (tstamp fb03d859-dcc9-4533-b352-64830e0e5423))
(pad "1" smd roundrect (at -0.51 0 90) (size 0.54 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(J1-PadB5)") (pintype "passive") (tstamp 68b52f01-fa04-4908-bf88-60c62ace1cfa))
(pad "2" smd roundrect (at 0.51 0 90) (size 0.54 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 12 "GNDPWR") (pintype "passive") (tstamp b8c83ad1-b3c9-495c-bdc6-62dead00f5ad))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23-6" (layer "B.Cu")
(tedit 5F6F9B37) (tstamp 7a20eed4-0de7-4ded-ba09-88dcb5f209dd)
(at 39.45 65.74 180)
(descr "SOT, 6 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "AKBDB.kicad_sch")
(property "Sheetname" "")
(path "/ab4d3cc6-46c6-4604-bd23-c61d13cacd62")
(attr smd)
(fp_text reference "U1" (at 0 2.4) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 4051828d-70a1-4696-8596-3e888c60c4f1)
)
(fp_text value "USBLC6-2SC6" (at 0 -2.4) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 2d833f53-95af-4ea0-b94e-80bb8989b6f5)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp 3cd0d019-2b0a-4c61-82f1-9d93e0b22ec0)
)
(fp_line (start 0 -1.56) (end 0.8 -1.56) (layer "B.SilkS") (width 0.12) (tstamp 1048e1e0-9c7a-4ba5-bf98-97083e34db21))
(fp_line (start 0 -1.56) (end -0.8 -1.56) (layer "B.SilkS") (width 0.12) (tstamp 74658f73-bf02-4871-9ace-adacc9cfee91))
(fp_line (start 0 1.56) (end -1.8 1.56) (layer "B.SilkS") (width 0.12) (tstamp 7b06b5be-c805-41f9-8e2a-23b1ec287e16))
(fp_line (start 0 1.56) (end 0.8 1.56) (layer "B.SilkS") (width 0.12) (tstamp c2ad3a49-c475-44a7-901e-50baef927973))
(fp_line (start 2.05 -1.7) (end 2.05 1.7) (layer "B.CrtYd") (width 0.05) (tstamp 492d4ccd-3ec4-4109-a693-4c18fc15f796))
(fp_line (start -2.05 -1.7) (end 2.05 -1.7) (layer "B.CrtYd") (width 0.05) (tstamp b55810e0-896c-448e-aeab-bd3d9edd6018))
(fp_line (start 2.05 1.7) (end -2.05 1.7) (layer "B.CrtYd") (width 0.05) (tstamp b5e90aa2-b4c4-48fe-b486-64e22a6faa8c))
(fp_line (start -2.05 1.7) (end -2.05 -1.7) (layer "B.CrtYd") (width 0.05) (tstamp b63987d3-c07b-40f9-acaa-a5ccb49c7815))
(fp_line (start 0.8 -1.45) (end -0.8 -1.45) (layer "B.Fab") (width 0.1) (tstamp 779e89bd-bee8-4e67-bd3e-192f7120c87a))
(fp_line (start -0.8 -1.45) (end -0.8 1.05) (layer "B.Fab") (width 0.1) (tstamp 951fcb11-99b5-4a0f-8c22-d6efd2815eae))
(fp_line (start 0.8 1.45) (end 0.8 -1.45) (layer "B.Fab") (width 0.1) (tstamp b0170a8f-f0b0-4b25-a7df-84d4d238f4d4))
(fp_line (start -0.8 1.05) (end -0.4 1.45) (layer "B.Fab") (width 0.1) (tstamp cbc1604b-e032-4c9f-99e3-3a4221496b92))
(fp_line (start -0.4 1.45) (end 0.8 1.45) (layer "B.Fab") (width 0.1) (tstamp e0f9e8d9-4b6e-4a7b-a347-85b1f78bc107))
(pad "1" smd roundrect (at -1.1375 0.95 180) (size 1.325 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 8 "DBus+") (pinfunction "I/O1") (pintype "passive") (tstamp 3a63dd42-b90b-4823-9c57-3b0995fe0a0d))
(pad "2" smd roundrect (at -1.1375 0 180) (size 1.325 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 12 "GNDPWR") (pinfunction "GND") (pintype "passive") (tstamp 0a923e5e-765e-4d98-96f4-9778cf5b22cf))
(pad "3" smd roundrect (at -1.1375 -0.95 180) (size 1.325 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 9 "DBus-") (pinfunction "I/O2") (pintype "passive") (tstamp f61ff554-e982-44c6-bf78-e8b26ea824ee))
(pad "4" smd roundrect (at 1.1375 -0.95 180) (size 1.325 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 10 "DN") (pinfunction "I/O2") (pintype "passive") (tstamp 3529d64c-be7a-4bf8-86f1-f43fc0a28acd))
(pad "5" smd roundrect (at 1.1375 0 180) (size 1.325 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "VCC") (pinfunction "VBUS") (pintype "passive") (tstamp dc135ec0-0fe9-4508-96e6-fc6c850089e5))
(pad "6" smd roundrect (at 1.1375 0.95 180) (size 1.325 0.6) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 11 "DP") (pinfunction "I/O1") (pintype "passive") (tstamp da96c2bb-a90f-4808-81eb-127707d4948f))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-6.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "logo:JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal" (layer "B.Cu")
(tedit 61E7EA3B) (tstamp 8da933a9-35f8-42e6-8504-d1bab7264306)
(at 33.1425 63.223)
(descr "JST SH series connector, SM04B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator")
(tags "connector JST SH top entry")
(property "LCSC Part No" "C160404")
(property "Manufacturer" "JST Sales America")
(property "Manufacturer Part No" "SM04B-SRSS-TB(LF)(SN)")
(property "Sheetfile" "AKBDB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c91afcb")
(attr smd)
(fp_text reference "J2" (at -4.8925 -2.453) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp a7453b01-7dfc-4677-880c-51345204acf1)
)
(fp_text value "SM04B-SRSS-TB(LF)(SN)" (at 0 -3.98) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 36e88275-a50a-4763-bcf5-aeb8ef5d2bd0)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 2050b632-6c68-4b86-9464-8b442ca8b101)
)
(fp_line (start -1.94 -2.685) (end 1.94 -2.685) (layer "B.SilkS") (width 0.12) (tstamp 41fe49db-0895-4a54-802c-6d1dc70e6c39))
(fp_line (start -2.06 1.785) (end -2.06 2.775) (layer "B.SilkS") (width 0.12) (tstamp 59c5e836-56e3-4b88-82e4-be54a410ecac))
(fp_line (start -3.11 1.785) (end -2.06 1.785) (layer "B.SilkS") (width 0.12) (tstamp 755da163-923e-4ec3-af8c-3bf1cb71ef50))
(fp_line (start 3.11 1.785) (end 2.06 1.785) (layer "B.SilkS") (width 0.12) (tstamp a02705d4-b485-496f-bdad-4b176340793f))
(fp_line (start 3.11 -0.715) (end 3.11 1.785) (layer "B.SilkS") (width 0.12) (tstamp c3892406-bd2a-4284-a1cc-908c5c151d65))
(fp_line (start -3.11 -0.715) (end -3.11 1.785) (layer "B.SilkS") (width 0.12) (tstamp ca058241-0fbb-4b51-8547-ed4c0abd4d1e))
(fp_line (start -3.9 -3.28) (end 3.9 -3.28) (layer "B.CrtYd") (width 0.05) (tstamp 2e4e6311-cc3e-4792-b3a8-9addb4d5cd4d))
(fp_line (start -3.9 3.28) (end -3.9 -3.28) (layer "B.CrtYd") (width 0.05) (tstamp 30b48882-6be4-4fa8-9834-ba60f0f9670a))
(fp_line (start 3.9 -3.28) (end 3.9 3.28) (layer "B.CrtYd") (width 0.05) (tstamp 7acd4496-b624-4869-931b-e4f72e0473ac))
(fp_line (start 3.9 3.28) (end -3.9 3.28) (layer "B.CrtYd") (width 0.05) (tstamp 8bfe74d8-d1bd-4e20-a37d-ba5e3727d0ea))
(fp_line (start 3 1.675) (end 3 -2.575) (layer "B.Fab") (width 0.1) (tstamp 1c3a6aec-e97b-485f-abc4-129ddfdf9788))
(fp_line (start -3 -2.575) (end 3 -2.575) (layer "B.Fab") (width 0.1) (tstamp 5ba4f14b-3667-4c0e-82ed-ecf65ed0bc88))
(fp_line (start -2 1.675) (end -1.5 0.967893) (layer "B.Fab") (width 0.1) (tstamp 6af0cd65-b51e-4108-b296-4b296e68f295))
(fp_line (start -1.5 0.967893) (end -1 1.675) (layer "B.Fab") (width 0.1) (tstamp dddcb145-6ca5-45bd-806d-3de11687c1e5))
(fp_line (start -3 1.675) (end -3 -2.575) (layer "B.Fab") (width 0.1) (tstamp eb99f1b8-e4d9-4c75-bb9d-a11d3618a548))
(fp_line (start -3 1.675) (end 3 1.675) (layer "B.Fab") (width 0.1) (tstamp f3787023-4fd8-4cb2-ab09-fa2311b48fad))
(pad "1" smd roundrect (at -1.5 2) (size 0.6 1.55) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "VCC") (pinfunction "Pin_1") (pintype "passive") (tstamp ef536672-0414-4a3f-a002-9a8437a35f9a))
(pad "2" smd roundrect (at -0.5 2) (size 0.6 1.55) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 10 "DN") (pinfunction "Pin_2") (pintype "passive") (tstamp 5faf6edf-744f-4c91-b795-fc6c626cf1e4))
(pad "3" smd roundrect (at 0.5 2) (size 0.6 1.55) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 11 "DP") (pinfunction "Pin_3") (pintype "passive") (tstamp 79ddf0f5-265d-46c7-9f1b-ec5584b3d3fa))
(pad "4" smd roundrect (at 1.5 2) (size 0.6 1.55) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "Pin_4") (pintype "passive") (tstamp b210cc74-6876-47f9-9837-a023f8867683))
(pad "MP" smd roundrect (at -2.8 -1.875) (size 1.2 1.8) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.208333)
(net 12 "GNDPWR") (pinfunction "MountPin") (pintype "passive") (tstamp 8edd36ea-c586-47ae-b87e-ab2950cb5ffa))
(pad "MP" smd roundrect (at 2.8 -1.875) (size 1.2 1.8) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.208333)
(net 12 "GNDPWR") (pinfunction "MountPin") (pintype "passive") (tstamp b735284f-ed50-4462-8340-fa3056d7645a))
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KICAD6_3DMODEL_DIR}/Connector_JST.3dshapes/JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Fuse:Fuse_0603_1608Metric" (layer "B.Cu")
(tedit 5F68FEF1) (tstamp 9c8ccb2a-b1e9-4f2c-94fe-301b5975277e)
(at 39.5275 62.193 -90)
(descr "Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "fuse")
(property "LCSC Part No" "C135342")
(property "Manufacturer" "Shenzhen JDT Fuse")
(property "Manufacturer Part No" "ASMD1206-150")
(property "Package" "F1206")
(property "Sheetfile" "AKBDB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e78a38e")
(attr smd)
(fp_text reference "F1" (at -2.113 0.0375 180) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 1bf544e3-5940-4576-9291-2464e95c0ee2)
)
(fp_text value "ASMD1206-150" (at 0 -1.43 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp c0515cd2-cdaa-467e-8354-0f6eadfa35c9)
)
(fp_line (start -0.162779 0.51) (end 0.162779 0.51) (layer "B.SilkS") (width 0.12) (tstamp 666713b0-70f4-42df-8761-f65bc212d03b))
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) (layer "B.SilkS") (width 0.12) (tstamp 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e))
(fp_line (start 1.48 0.73) (end 1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 42713045-fffd-4b2d-ae1e-7232d705fb12))
(fp_line (start -1.48 0.73) (end 1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 7aed3a71-054b-4aaa-9c0a-030523c32827))
(fp_line (start -1.48 -0.73) (end -1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 2d210a96-f81f-42a9-8bf4-1b43c11086f3))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 6c2e273e-743c-4f1e-a647-4171f8122550))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 9bb20359-0f8b-45bc-9d38-6626ed3a939d))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp e857610b-4434-4144-b04e-43c1ebdc5ceb))
(pad "1" smd roundrect locked (at -0.7875 0 270) (size 0.875 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 5 "VBUS") (pintype "passive") (tstamp 4c8eb964-bdf4-44de-90e9-e2ab82dd5313))
(pad "2" smd roundrect locked (at 0.7875 0 270) (size 0.875 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 2 "VCC") (pintype "passive") (tstamp aa14c3bd-4acc-4908-9d28-228585a22a9d))
(model "${KICAD6_3DMODEL_DIR}/Fuse.3dshapes/Fuse_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0402_1005Metric" (layer "B.Cu")
(tedit 5F68FEEE) (tstamp e8c50f1b-c316-4110-9cce-5c24c65a1eaa)
(at 53.83 60.65)
(descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Package" "R0603")
(property "Sheetfile" "AKBDB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005c91b042")
(attr smd)
(fp_text reference "R1" (at 0 1.17 180) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp bbb15673-6d42-42b8-9d51-7515b3ad9ee9)
)
(fp_text value "5.1k" (at 0 -1.17 180) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 0f3c9e3a-9c59-4881-b27a-d0e982b3ea8e)
)
(fp_text user "${REFERENCE}" (at 0 0 180) (layer "B.Fab")
(effects (font (size 0.26 0.26) (thickness 0.04)) (justify mirror))
(tstamp 23e66461-bcf2-4335-93c2-5c91dfd00187)
)
(fp_line (start -0.153641 -0.38) (end 0.153641 -0.38) (layer "B.SilkS") (width 0.12) (tstamp 3559e287-424e-4397-b080-77c7ba6f395b))
(fp_line (start -0.153641 0.38) (end 0.153641 0.38) (layer "B.SilkS") (width 0.12) (tstamp dd2f6b13-9e35-4a67-90ac-cf0d1ea34e5a))
(fp_line (start 0.93 0.47) (end 0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp 646d9e91-59b4-4865-a2fc-29780ed32563))
(fp_line (start 0.93 -0.47) (end -0.93 -0.47) (layer "B.CrtYd") (width 0.05) (tstamp 87c78429-be2b-40ed-8d3b-56cb9666a56f))
(fp_line (start -0.93 0.47) (end 0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp 99030c03-63b4-49ba-b5ab-4d56974f7963))
(fp_line (start -0.93 -0.47) (end -0.93 0.47) (layer "B.CrtYd") (width 0.05) (tstamp e6521bef-4109-48f7-8b88-4121b0468927))
(fp_line (start 0.525 -0.27) (end -0.525 -0.27) (layer "B.Fab") (width 0.1) (tstamp 02165243-61a3-4857-84ba-71a77cb9a387))
(fp_line (start 0.525 0.27) (end 0.525 -0.27) (layer "B.Fab") (width 0.1) (tstamp 825c70b0-4860-42b7-97dc-86bfa46e06fd))
(fp_line (start -0.525 0.27) (end 0.525 0.27) (layer "B.Fab") (width 0.1) (tstamp 9ff4672a-e1a4-4a1e-887d-1b9a3429d278))
(fp_line (start -0.525 -0.27) (end -0.525 0.27) (layer "B.Fab") (width 0.1) (tstamp edc9ab4f-487a-48dc-95f2-4d87f0e9cf9e))
(pad "1" smd roundrect (at -0.51 0) (size 0.54 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(J1-PadA5)") (pintype "passive") (tstamp 3934cdea-42c8-4ab1-b1be-2c4978ab08ae))
(pad "2" smd roundrect (at 0.51 0) (size 0.54 0.64) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 12 "GNDPWR") (pintype "passive") (tstamp d0dfd7c1-401d-4f64-8463-f4c0813ac28f))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "logo:USB_C_Receptacle_HRO_TYPE-C-31-M-12" (layer "B.Cu")
(tedit 619E8C01) (tstamp eb667eea-300e-4ca7-8a6f-4b00de80cd45)
(at 47.2425 64.693 180)
(descr "USB Type-C receptacle for USB 2.0 and PD, http://www.krhro.com/uploads/soft/180320/1-1P320120243.pdf")
(tags "usb usb-c 2.0 pd")
(property "LCSC Part No" "C165948")
(property "Manufacturer" "Korean Hroparts")
(property "Manufacturer Part No" "TYPE-C-31-M-12")
(property "Sheetfile" "AKBDB.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e77a5d1")
(attr smd)
(fp_text reference "J1" (at -6.1975 -0.867) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 70a78ddc-e3ca-4fe8-a80f-fe31af1f7126)
)
(fp_text value "TYPE-C-31-M12_13" (at 0 -5.1) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 6e634d39-8bdf-4f6f-ad25-2568fd83e508)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 7c40b417-c3b6-4fdd-babe-4db7c3476953)
)
(fp_line (start 4.7 -2) (end 4.7 -3.9) (layer "B.SilkS") (width 0.12) (tstamp 0983b7ec-542a-4e9c-92f2-2a2001afff1b))
(fp_line (start -4.7 -2) (end -4.7 -3.9) (layer "B.SilkS") (width 0.12) (tstamp 30f719b6-4d0b-4afb-a5dd-ba636dec49f5))
(fp_line (start -4.7 -3.9) (end 4.7 -3.9) (layer "B.SilkS") (width 0.12) (tstamp aa3fdd51-43cd-4907-b9b5-f37e13bb5ab7))
(fp_line (start 4.7 1.9) (end 4.7 -0.1) (layer "B.SilkS") (width 0.12) (tstamp ab678f08-0093-45d6-87e1-8df6ced11bfe))
(fp_line (start -4.7 1.9) (end -4.7 -0.1) (layer "B.SilkS") (width 0.12) (tstamp fd97141f-fb40-455d-a654-92cff720ef41))
(fp_line (start -5.32 5.27) (end -5.32 -4.15) (layer "B.CrtYd") (width 0.05) (tstamp 15aa9c2c-8b56-4299-9fab-c00589673eb6))
(fp_line (start -5.32 5.27) (end 5.32 5.27) (layer "B.CrtYd") (width 0.05) (tstamp 1aa7d25b-1a43-4efc-b9e3-6eab91a7fd7c))
(fp_line (start 5.32 5.27) (end 5.32 -4.15) (layer "B.CrtYd") (width 0.05) (tstamp e322d42c-4c6e-48c6-a6bb-f853df03b252))
(fp_line (start -5.32 -4.15) (end 5.32 -4.15) (layer "B.CrtYd") (width 0.05) (tstamp f054af60-f9aa-47f4-a250-d5e6079f3652))
(fp_line (start 4.47 3.65) (end 4.47 -3.65) (layer "B.Fab") (width 0.1) (tstamp 01cfd043-361c-4f3c-8389-f7f07510117c))
(fp_line (start -4.47 3.65) (end -4.47 -3.65) (layer "B.Fab") (width 0.1) (tstamp 1ba5bc40-fa27-4d11-9ab7-d8dd21bda073))
(fp_line (start -4.47 3.65) (end 4.47 3.65) (layer "B.Fab") (width 0.1) (tstamp 58cbe7ba-25e2-4ac9-bd5d-f6cc04f4b481))
(fp_line (start -4.47 -3.65) (end 4.47 -3.65) (layer "B.Fab") (width 0.1) (tstamp 70ef53d2-5381-449e-bd9e-f3a8b63d826e))
(pad "" np_thru_hole circle locked (at 2.89 2.6 180) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp ae94b842-5994-4b46-8a7f-f60775cfc4d6))
(pad "" np_thru_hole circle locked (at -2.89 2.6 180) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp cefaf9a6-886c-460a-81ac-bb4dfcd94ed7))
(pad "A1" smd rect locked (at -3.25 4.045 180) (size 0.6 1.45) (layers "B.Cu" "B.Paste" "B.Mask")
(net 12 "GNDPWR") (pinfunction "GND") (pintype "passive") (tstamp 2b026d47-70de-4872-9345-7251c0bb1138))
(pad "A4" smd rect locked (at -2.45 4.045 180) (size 0.6 1.45) (layers "B.Cu" "B.Paste" "B.Mask")
(net 5 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp e02b649f-f34c-4a8c-978c-17db49889d01))
(pad "A5" smd rect locked (at -1.25 4.045 180) (size 0.3 1.45) (layers "B.Cu" "B.Paste" "B.Mask")
(net 3 "Net-(J1-PadA5)") (pinfunction "CC1") (pintype "bidirectional") (tstamp 51bc9712-56fc-4f94-8944-a463eb0daf62))
(pad "A6" smd rect locked (at -0.25 4.045 180) (size 0.3 1.45) (layers "B.Cu" "B.Paste" "B.Mask")
(net 8 "DBus+") (pinfunction "D+") (pintype "bidirectional") (tstamp 371e08b1-2028-4a39-b382-96c7066d99f1))
(pad "A7" smd rect locked (at 0.25 4.045 180) (size 0.3 1.45) (layers "B.Cu" "B.Paste" "B.Mask")
(net 9 "DBus-") (pinfunction "D-") (pintype "bidirectional") (tstamp e0c12a91-5a03-4572-a3d5-777cd26f3fd9))
(pad "A8" smd rect locked (at 1.25 4.045 180) (size 0.3 1.45) (layers "B.Cu" "B.Paste" "B.Mask")
(net 6 "unconnected-(J1-PadA8)") (pinfunction "SBU1") (pintype "bidirectional+no_connect") (tstamp 7427a1a7-eb30-474c-b568-19171309a034))
(pad "A9" smd rect locked (at 2.45 4.045 180) (size 0.6 1.45) (layers "B.Cu" "B.Paste" "B.Mask")
(net 5 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp f09d2787-4ab5-45d8-a9e2-4d5f39b5146b))
(pad "A12" smd rect locked (at 3.25 4.045 180) (size 0.6 1.45) (layers "B.Cu" "B.Paste" "B.Mask")
(net 12 "GNDPWR") (pinfunction "GND") (pintype "passive") (tstamp 100bf934-7af7-4d5c-bf8e-669c5177687a))
(pad "B1" smd rect locked (at 3.25 4.045 180) (size 0.6 1.45) (layers "B.Cu" "B.Paste" "B.Mask")
(net 12 "GNDPWR") (pinfunction "GND") (pintype "passive") (tstamp 54f8359b-4b20-4ee7-9f10-204b1ca73f2a))
(pad "B4" smd rect locked (at 2.45 4.045 180) (size 0.6 1.45) (layers "B.Cu" "B.Paste" "B.Mask")
(net 5 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 62811bf6-543b-4c1a-97ad-3fb68d2c42cc))
(pad "B5" smd rect locked (at 1.75 4.045 180) (size 0.3 1.45) (layers "B.Cu" "B.Paste" "B.Mask")
(net 4 "Net-(J1-PadB5)") (pinfunction "CC2") (pintype "bidirectional") (tstamp 18608a66-82d3-45e3-a9db-e7a59f7af092))
(pad "B6" smd rect locked (at 0.75 4.045 180) (size 0.3 1.45) (layers "B.Cu" "B.Paste" "B.Mask")
(net 8 "DBus+") (pinfunction "D+") (pintype "bidirectional") (tstamp 594eeb12-acf6-499a-bc69-f06ea93c5baf))
(pad "B7" smd rect locked (at -0.75 4.045 180) (size 0.3 1.45) (layers "B.Cu" "B.Paste" "B.Mask")
(net 9 "DBus-") (pinfunction "D-") (pintype "bidirectional") (tstamp b0e94ca2-1981-4138-b09a-16f5d67cf5ae))
(pad "B8" smd rect locked (at -1.75 4.045 180) (size 0.3 1.45) (layers "B.Cu" "B.Paste" "B.Mask")
(net 7 "unconnected-(J1-PadB8)") (pinfunction "SBU2") (pintype "bidirectional+no_connect") (tstamp 143bdb27-642e-4cc7-a00a-7236629e7865))
(pad "B9" smd rect locked (at -2.45 4.045 180) (size 0.6 1.45) (layers "B.Cu" "B.Paste" "B.Mask")
(net 5 "VBUS") (pinfunction "VBUS") (pintype "passive") (tstamp 299be432-54d2-4ae3-9774-bf9f33211dcd))
(pad "B12" smd rect locked (at -3.25 4.045 180) (size 0.6 1.45) (layers "B.Cu" "B.Paste" "B.Mask")
(net 12 "GNDPWR") (pinfunction "GND") (pintype "passive") (tstamp 73a1ecb8-7b49-4bec-8698-2857cae9a4b1))
(pad "S1" thru_hole oval locked (at -4.32 3.13 180) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask)
(net 12 "GNDPWR") (pinfunction "SHIELD") (pintype "passive") (tstamp 2ff19db4-d505-4c86-a563-e0715a39d752))
(pad "S1" thru_hole oval locked (at 4.32 3.13 180) (size 1 2.1) (drill oval 0.6 1.7) (layers *.Cu *.Mask)
(net 12 "GNDPWR") (pinfunction "SHIELD") (pintype "passive") (tstamp 3ae1fb5e-6e5b-4bef-b751-be431d156393))
(pad "S1" thru_hole oval locked (at 4.32 -1.05 180) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask)
(net 12 "GNDPWR") (pinfunction "SHIELD") (pintype "passive") (tstamp 6b9147be-ef3f-40e6-b07f-fb9b1328bed0))
(pad "S1" thru_hole oval locked (at -4.32 -1.05 180) (size 1 1.6) (drill oval 0.6 1.2) (layers *.Cu *.Mask)
(net 12 "GNDPWR") (pinfunction "SHIELD") (pintype "passive") (tstamp df62fa8b-09e7-484f-83d6-d9dc75fde425))
(model "C:/Users/Martin/Downloads/Unified-Daughterboard-master/Unified-Daughterboard-master/Design Resources/C3/HRO__TYPE-C-31-M-12.step"
(offset (xyz -4.46 -3.65 0))
(scale (xyz 1 1 1))
(rotate (xyz 90 -180 180))
)
)
(footprint "Inductor_SMD:L_0603_1608Metric" (layer "B.Cu")
(tedit 5F68FEF0) (tstamp f1dd8642-b405-490b-a449-d1cc5797fda8)
(at 37.93 62.19 -90)
(descr "Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
(tags "inductor")
(property "Sheetfile" "AKBDB.kicad_sch")
(property "Sheetname" "")
(path "/539ff21e-64a5-4d0a-a3c6-87ad104f3729")
(attr smd)
(fp_text reference "L1" (at -1.22 1.195 90) (layer "B.SilkS")
(effects (font (size 0.5 0.5) (thickness 0.125)) (justify mirror))
(tstamp 71c77456-1405-42e3-95ed-69e629de0558)
)
(fp_text value "60R@100MHz" (at 0 -1.43 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 04f5865e-f449-4408-a0c8-771cccfcb129)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "B.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)) (justify mirror))
(tstamp f144a97d-c3f0-423f-b0a9-3f7dbc42478b)
)
(fp_line (start -0.162779 0.51) (end 0.162779 0.51) (layer "B.SilkS") (width 0.12) (tstamp f0075da0-51ac-41f6-8f1f-b82170d4c241))
(fp_line (start -0.162779 -0.51) (end 0.162779 -0.51) (layer "B.SilkS") (width 0.12) (tstamp fc671e78-77a7-4eeb-9c5f-5fa70df61d4a))
(fp_line (start -1.48 0.73) (end 1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 2a5046cb-616d-4a6b-b35d-0f43c43012bd))
(fp_line (start 1.48 -0.73) (end -1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp 2d6718e7-f18d-444d-9792-ddf1a113460c))
(fp_line (start -1.48 -0.73) (end -1.48 0.73) (layer "B.CrtYd") (width 0.05) (tstamp 70237570-85ec-492d-ab91-fef97bc7b8b3))
(fp_line (start 1.48 0.73) (end 1.48 -0.73) (layer "B.CrtYd") (width 0.05) (tstamp d374554c-a8a9-4a37-884d-c8b2d846d166))
(fp_line (start 0.8 0.4) (end 0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp 3b1c1768-766c-42cf-92e2-5ac179219634))
(fp_line (start -0.8 0.4) (end 0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp 6fa93467-6afc-4d49-ba3a-7d790c3ddbf9))
(fp_line (start 0.8 -0.4) (end -0.8 -0.4) (layer "B.Fab") (width 0.1) (tstamp d8680809-5aa7-4530-aefe-0b773618e572))
(fp_line (start -0.8 -0.4) (end -0.8 0.4) (layer "B.Fab") (width 0.1) (tstamp e63a47b7-5887-44b0-82a9-7391b4f4a945))
(pad "1" smd roundrect locked (at -0.7875 0 270) (size 0.875 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 12 "GNDPWR") (pinfunction "1") (pintype "input") (tstamp f022716e-b121-4cbf-a833-20e924070c22))
(pad "2" smd roundrect locked (at 0.7875 0 270) (size 0.875 0.95) (layers "B.Cu" "B.Paste" "B.Mask") (roundrect_rratio 0.25)
(net 1 "GND") (pinfunction "2") (pintype "input") (tstamp cb868d2e-5efb-4bfb-8796-88435b326918))
(model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_arc (start 58.048 66.102682) (mid 57.637949 67.092631) (end 56.648 67.502682) (layer "Edge.Cuts") (width 0.1) (tstamp 38fbd884-7514-43a2-9a61-655b3888f615))
(gr_arc (start 25.282 60.837682) (mid 25.692051 59.847733) (end 26.682 59.437682) (layer "Edge.Cuts") (width 0.1) (tstamp 6ab35056-327b-4e4a-a677-6f94502f78eb))
(gr_arc (start 26.681999 67.502682) (mid 25.69205 67.092631) (end 25.282 66.102681) (layer "Edge.Cuts") (width 0.1) (tstamp 7f263271-b885-4f92-b229-871e7627eeeb))
(gr_line (start 56.648 67.502682) (end 26.682 67.502681) (layer "Edge.Cuts") (width 0.1) (tstamp 80a6f16d-e702-4d00-ac65-cd2202e594d2))
(gr_arc (start 56.648 59.437682) (mid 57.637949 59.847733) (end 58.048 60.837682) (layer "Edge.Cuts") (width 0.1) (tstamp 8d3bdc6c-f832-4f3a-b760-308cbf2f365b))
(gr_line (start 58.048 60.837682) (end 58.048 66.102682) (layer "Edge.Cuts") (width 0.1) (tstamp a63e3f73-0493-4d82-87c2-522d53c8b0d0))
(gr_line (start 26.682 59.437682) (end 56.648 59.437682) (layer "Edge.Cuts") (width 0.1) (tstamp b628cb33-c4b6-4982-8f35-57cad2500f6f))
(gr_line (start 25.282 66.102681) (end 25.282 60.837682) (layer "Edge.Cuts") (width 0.1) (tstamp c2e261aa-d21b-4664-8cbf-b85fec701329))
(segment (start 34.64 65.2205) (end 34.6425 65.223) (width 0.508) (layer "B.Cu") (net 1) (tstamp 0fd63885-740c-4de9-912d-b4c053174f76))
(segment (start 37.93 62.9775) (end 35.64 62.9775) (width 0.508) (layer "B.Cu") (net 1) (tstamp 4a52c640-62a0-4fd6-b7b8-d9d32a5e96ed))
(segment (start 34.64 65.2205) (end 34.64 63.9775) (width 0.508) (layer "B.Cu") (net 1) (tstamp 8db03881-a114-484d-bd93-b09ad87c195d))
(arc (start 35.64 62.9775) (mid 34.932893 63.270393) (end 34.64 63.9775) (width 0.508) (layer "B.Cu") (net 1) (tstamp b0602ac8-efef-4e7d-8a68-7f7d0c636d48))
(segment (start 31.65092 63.99908) (end 31.64 64.01) (width 0.508) (layer "F.Cu") (net 2) (tstamp dbadf01b-c575-429d-a316-57833ae53883))
(segment (start 39.51908 63.99908) (end 31.65092 63.99908) (width 0.508) (layer "F.Cu") (net 2) (tstamp f5300988-ed64-415e-be65-4b1227a1de96))
(via (at 39.51908 63.99908) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 439dcc7d-7036-4a64-a4d0-e5ef6783b0ad))
(via (at 31.64 64.01) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 8ac80e15-9d44-4689-8f5a-0c494ffca3c6))
(segment (start 31.64 64.01) (end 31.64 65.4205) (width 0.508) (layer "B.Cu") (net 2) (tstamp 352f8718-26de-4e23-a268-5803745cbdf1))
(segment (start 39.12 65.74) (end 38.3125 65.74) (width 0.508) (layer "B.Cu") (net 2) (tstamp 824f5bc4-800e-4512-af24-c04d1a06245b))
(segment (start 39.51908 62.98892) (end 39.51908 65.34092) (width 0.508) (layer "B.Cu") (net 2) (tstamp b11e69a7-bdc0-4cb5-9cb4-d14a5c12e472))
(segment (start 39.5275 62.9805) (end 39.51908 62.98892) (width 0.508) (layer "B.Cu") (net 2) (tstamp c499d360-d3af-4d45-a462-1acb7527a42f))
(segment (start 39.51908 65.34092) (end 39.12 65.74) (width 0.508) (layer "B.Cu") (net 2) (tstamp fa5d2b8a-dbbf-454c-a9bb-638c6b670c9e))
(segment (start 53.3125 64.233) (end 49.353754 64.233) (width 0.254) (layer "F.Cu") (net 3) (tstamp 9ddb5477-9e88-4d56-9fe9-b9caf6016466))
(segment (start 53.3125 64.233) (end 53.3275 64.218) (width 0.254) (layer "F.Cu") (net 3) (tstamp a49e8f5a-d9c7-4499-8a97-ad9bbde46f18))
(segment (start 48.353754 61.997751) (end 48.353754 63.233) (width 0.254) (layer "F.Cu") (net 3) (tstamp dea160a0-c7eb-439d-aa99-b60757115fc7))
(via (at 53.3275 64.218) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp baa3a57e-8a11-44cd-a968-48d8875fd642))
(via (at 48.353754 61.997751) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 3) (tstamp ee6379e8-baa3-4077-98da-26cb178881b6))
(arc (start 49.353754 64.233) (mid 48.646647 63.940107) (end 48.353754 63.233) (width 0.254) (layer "F.Cu") (net 3) (tstamp 9d7add1e-d22e-4c3c-ab8e-6362e975e5d0))
(segment (start 48.4925 61.859005) (end 48.353754 61.997751) (width 0.254) (layer "B.Cu") (net 3) (tstamp 2bbdb967-ab92-4569-86e9-d9b822f7e406))
(segment (start 53.3275 64.218) (end 53.32 60.65) (width 0.254) (layer "B.Cu") (net 3) (tstamp 325ed895-5487-4db3-a885-9f6364ea8820))
(segment (start 48.4925 60.648) (end 48.4925 61.859005) (width 0.254) (layer "B.Cu") (net 3) (tstamp bef2f38e-3a8b-4cdc-ad2e-3d5e4975ee2e))
(segment (start 45.566025 61.965912) (end 45.566025 62.543) (width 0.254) (layer "F.Cu") (net 4) (tstamp 0aa1e38d-f07a-4820-b628-a171234563bb))
(segment (start 41.0525 63.043) (end 45.066025 63.043) (width 0.254) (layer "F.Cu") (net 4) (tstamp e9f7c1f4-5795-4d15-84b5-feea53d19f0e))
(via (at 45.566025 61.965912) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (tstamp b41023fe-7365-4cd2-a14b-7c2a608e55e4))
(via (at 41.0525 63.043) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (tstamp e77ad7d2-5bb7-4094-ae31-9a87bfcc1d08))
(arc (start 45.066025 63.043) (mid 45.419578 62.896553) (end 45.566025 62.543) (width 0.254) (layer "F.Cu") (net 4) (tstamp 6024ea82-89e7-47fa-a1cd-0f37ee126f02))
(segment (start 41.0525 63.043) (end 41.0525 62.14) (width 0.254) (layer "B.Cu") (net 4) (tstamp 09b1d05c-45db-4f82-846a-0822a62adc17))
(segment (start 45.4925 60.648) (end 45.4925 61.892387) (width 0.254) (layer "B.Cu") (net 4) (tstamp 266e7ca9-435e-4e61-9521-84921fe813aa))
(segment (start 45.4925 61.892387) (end 45.566025 61.965912) (width 0.254) (layer "B.Cu") (net 4) (tstamp 39af2bef-fbe9-4ee5-ad68-9e78994b9973))
(segment (start 42.38 60.08) (end 48.3025 60.08) (width 0.508) (layer "F.Cu") (net 5) (tstamp 66899dd2-d917-46f0-b074-6911681b8f70))
(segment (start 49.3025 61.968) (end 49.3025 61.08) (width 0.508) (layer "F.Cu") (net 5) (tstamp 9eb4e618-7b51-4ed2-955f-d6a01cd88816))
(via (at 42.38 60.08) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 5) (tstamp af4e9376-9ee4-4052-ae16-44d26e5ee9ab))
(via (at 49.3025 61.968) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 5) (tstamp f7899419-7d6a-4492-8ac4-c6963422cda5))
(arc (start 48.3025 60.08) (mid 49.009607 60.372893) (end 49.3025 61.08) (width 0.508) (layer "F.Cu") (net 5) (tstamp eaf3d8ae-48c3-4b37-a129-8f8f296aee6b))
(segment (start 42.39 60.08) (end 42.38 60.08) (width 0.508) (layer "B.Cu") (net 5) (tstamp 2151cc7c-3054-49b3-b719-f247d4ec3947))
(segment (start 44.400511 59.669489) (end 42.790511 59.669489) (width 0.254) (layer "B.Cu") (net 5) (tstamp 330b2a4c-8835-4215-8a4f-1f68f54269ad))
(segment (start 39.5275 61.4055) (end 39.5275 60.83) (width 0.508) (layer "B.Cu") (net 5) (tstamp 66e30bda-9155-4939-9331-e1c93e589aee))
(segment (start 49.308522 61.968) (end 49.6925 61.584022) (width 0.508) (layer "B.Cu") (net 5) (tstamp 67010813-b3de-491d-bca8-d557c23f2f89))
(segment (start 44.7925 60.061478) (end 44.400511 59.669489) (width 0.254) (layer "B.Cu") (net 5) (tstamp 723e4993-19d6-4352-9093-32f977211f5c))
(segment (start 42.790511 59.669489) (end 42.38 60.08) (width 0.254) (layer "B.Cu") (net 5) (tstamp 97c308ba-9c30-4260-a2ce-7c46cef5b2c9))
(segment (start 44.7925 60.648) (end 44.7925 60.061478) (width 0.254) (layer "B.Cu") (net 5) (tstamp a5b8bd3f-4b65-4d8a-abf0-3ac017205084))
(segment (start 42.39 60.08) (end 40.2775 60.08) (width 0.508) (layer "B.Cu") (net 5) (tstamp d2e6a467-df2f-4e89-a5c1-c599594030e7))
(segment (start 49.6925 61.584022) (end 49.6925 60.648) (width 0.508) (layer "B.Cu") (net 5) (tstamp edab886c-83cb-473d-95a3-2e513d86515e))
(arc (start 39.5275 60.83) (mid 39.74717 60.29967) (end 40.2775 60.08) (width 0.508) (layer "B.Cu") (net 5) (tstamp 1d7fc389-9fe9-4dff-8318-a59ea82451e5))
(segment (start 46.79 62.2705) (end 46.79 63.443) (width 0.2) (layer "F.Cu") (net 8) (tstamp 146273ac-92fc-4f1d-8c78-b7bcd1147fcd))
(segment (start 46.4925 61.973) (end 46.79 62.2705) (width 0.2) (layer "F.Cu") (net 8) (tstamp 82870fc3-076e-4761-a05b-45235a42905c))
(segment (start 41.9825 64.443) (end 45.79 64.443) (width 0.2) (layer "F.Cu") (net 8) (tstamp 8c2acbc7-2376-4bef-b41e-3fdd560a59ac))
(via (at 46.4925 61.973) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 8) (tstamp 6a12b548-bd97-43a0-9597-855a4d71982e))
(via (at 41.9825 64.443) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 8) (tstamp 797c22d2-4288-4e98-a7db-507fc0df5aee))
(arc (start 46.79 63.443) (mid 46.497107 64.150107) (end 45.79 64.443) (width 0.2) (layer "F.Cu") (net 8) (tstamp d6b652b2-da2d-43f5-af5c-622aebe8523c))
(segment (start 47.4925 59.763) (end 47.4925 60.648) (width 0.2) (layer "B.Cu") (net 8) (tstamp 081c514a-85e0-4ccf-b453-0751b8338886))
(segment (start 46.4925 60.648) (end 46.4925 61.973) (width 0.2) (layer "B.Cu") (net 8) (tstamp 0bc14116-fe17-4f52-84c9-675093ae76ec))
(segment (start 46.4925 60.648) (end 46.4925 59.819978) (width 0.2) (layer "B.Cu") (net 8) (tstamp 19fe57ce-cf98-4c00-b82b-99ef42b01083))
(segment (start 46.619478 59.693) (end 47.4225 59.693) (width 0.2) (layer "B.Cu") (net 8) (tstamp 32c42870-615b-48fb-8a0b-0aaca905d988))
(segment (start 40.59 64.793) (end 41.6325 64.793) (width 0.2) (layer "B.Cu") (net 8) (tstamp 6c2d0b04-eddb-4840-8665-384d9a207a82))
(segment (start 41.6325 64.793) (end 41.9825 64.443) (width 0.2) (layer "B.Cu") (net 8) (tstamp a2ab0cbc-f695-4d62-8559-58e4327d6709))
(segment (start 47.4225 59.693) (end 47.4925 59.763) (width 0.2) (layer "B.Cu") (net 8) (tstamp ae7958d6-9be1-4864-9904-1b4518648fd7))
(segment (start 46.4925 59.819978) (end 46.619478 59.693) (width 0.2) (layer "B.Cu") (net 8) (tstamp c231bb92-7ab6-49f8-8500-237f9e5edfc5))
(segment (start 43.987 65.903) (end 43.987 65.76952) (width 0.2) (layer "F.Cu") (net 9) (tstamp 0a38a4d1-4822-46d9-9675-59446fc5bc25))
(segment (start 47.11652 62.29348) (end 47.11652 63.51952) (width 0.2) (layer "F.Cu") (net 9) (tstamp 0de5349b-0398-47b2-a326-b1159a7aeb72))
(segment (start 47.4225 61.993) (end 47.417 61.993) (width 0.2) (layer "F.Cu") (net 9) (tstamp 757fc15e-0a28-4b50-9a1d-06826f6bcee7))
(segment (start 41.9925 66.903) (end 42.987 66.903) (width 0.2) (layer "F.Cu") (net 9) (tstamp e08e26db-b1ec-4bb7-89ce-e6ba16450c26))
(segment (start 47.417 61.993) (end 47.11652 62.29348) (width 0.2) (layer "F.Cu") (net 9) (tstamp e864ef12-d421-45a5-827b-c56d2d7cc58b))
(segment (start 45.86652 64.76952) (end 44.987 64.76952) (width 0.2) (layer "F.Cu") (net 9) (tstamp f4281049-f662-443c-97f6-c0f716030e43))
(via (at 47.4225 61.993) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 9) (tstamp 0021d46d-fbc5-4743-b694-a84a952e2958))
(via (at 41.9925 66.903) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 9) (tstamp 2811e00a-202f-4aac-ae12-93f5a543261f))
(arc (start 42.987 66.903) (mid 43.694107 66.610107) (end 43.987 65.903) (width 0.2) (layer "F.Cu") (net 9) (tstamp 1e9c0f57-43c6-4725-aec7-2864e33f7492))
(arc (start 43.987 65.76952) (mid 44.279893 65.062413) (end 44.987 64.76952) (width 0.2) (layer "F.Cu") (net 9) (tstamp 45300a1a-6c50-4d16-9cdd-29cd9bd9ee47))
(arc (start 47.11652 63.51952) (mid 46.750403 64.403403) (end 45.86652 64.76952) (width 0.2) (layer "F.Cu") (net 9) (tstamp cc8bd7c0-f5c2-490c-aa5d-c86871d3c645))
(segment (start 47.7825 61.683) (end 47.4225 61.683) (width 0.2) (layer "B.Cu") (net 9) (tstamp 231bbfd6-0ca4-4f19-84cc-2c4deca4e2e0))
(segment (start 41.7825 66.693) (end 41.9925 66.903) (width 0.2) (layer "B.Cu") (net 9) (tstamp 2d7ec980-31d9-4350-9384-050b5c286e94))
(segment (start 47.9925 60.648) (end 47.9925 61.473) (width 0.2) (layer "B.Cu") (net 9) (tstamp 3353591e-bf93-47a9-86e4-23640290d874))
(segment (start 47.199478 61.683) (end 46.9925 61.476022) (width 0.2) (layer "B.Cu") (net 9) (tstamp 50464967-d915-44d1-8538-d0a16d535d25))
(segment (start 40.59 66.693) (end 41.7825 66.693) (width 0.2) (layer "B.Cu") (net 9) (tstamp 7f258153-4281-42f8-b604-2aa8fc18893e))
(segment (start 47.9925 61.473) (end 47.7825 61.683) (width 0.2) (layer "B.Cu") (net 9) (tstamp 9a288d65-1a37-4f5e-915d-cf213fd1b029))
(segment (start 46.9925 61.476022) (end 46.9925 60.648) (width 0.2) (layer "B.Cu") (net 9) (tstamp a922257a-032f-423c-8a51-0b3abe3c27f9))
(segment (start 47.4225 61.683) (end 47.4225 61.993) (width 0.2) (layer "B.Cu") (net 9) (tstamp f8e72552-826f-4c78-a672-60e0cdb3383f))
(segment (start 47.4225 61.683) (end 47.199478 61.683) (width 0.2) (layer "B.Cu") (net 9) (tstamp f932f481-4b55-4aed-927a-595d9197c1fc))
(segment (start 38.3125 66.69) (end 33.1425 66.69) (width 0.2) (layer "B.Cu") (net 10) (tstamp 8148f06e-3e09-4403-8a6b-099e425a5e1b))
(segment (start 32.6425 65.223) (end 32.6425 66.19) (width 0.2) (layer "B.Cu") (net 10) (tstamp bc9f4fc7-269c-4929-9e8b-109880e964fe))
(arc (start 32.6425 66.19) (mid 32.788947 66.543553) (end 33.1425 66.69) (width 0.2) (layer "B.Cu") (net 10) (tstamp e6370a18-df10-4e5b-9423-b0399ccd17a5))
(segment (start 33.6425 65.223) (end 33.6425 65.86348) (width 0.2) (layer "B.Cu") (net 11) (tstamp 7b949dcc-db05-4a0a-83b0-8dfa7b934603))
(segment (start 36.63 65.61348) (end 36.63 65.54) (width 0.2) (layer "B.Cu") (net 11) (tstamp 8b76fba7-f3cd-4253-a9d6-a0b51fec600f))
(segment (start 35.88 66.36348) (end 34.1425 66.36348) (width 0.2) (layer "B.Cu") (net 11) (tstamp 9ce81f35-1bda-4cf9-85e5-01f63503e567))
(segment (start 38.3125 64.79) (end 37.38 64.79) (width 0.2) (layer "B.Cu") (net 11) (tstamp f6a2b38e-13d4-4539-bc88-4be38254129e))
(arc (start 37.38 64.79) (mid 36.84967 65.00967) (end 36.63 65.54) (width 0.2) (layer "B.Cu") (net 11) (tstamp 5666bcee-5088-46b8-895c-e80b4512a904))
(arc (start 33.6425 65.86348) (mid 33.788947 66.217033) (end 34.1425 66.36348) (width 0.2) (layer "B.Cu") (net 11) (tstamp c0187d96-75c2-4f14-a265-f1191a1e72ef))
(arc (start 36.63 65.61348) (mid 36.41033 66.14381) (end 35.88 66.36348) (width 0.2) (layer "B.Cu") (net 11) (tstamp c7e1346e-b2aa-4dbc-84e6-f54563d4874c))
(via (at 37.93 60.37) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp 527cb22a-7e33-4cab-9561-11aa15db26ff))
(via (at 55.22 60.65) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp b96bc556-0a12-4225-a583-7e44d672199e))
(segment (start 54.34 60.65) (end 55.22 60.65) (width 0.254) (layer "B.Cu") (net 12) (tstamp 033c564d-3d11-4dc7-8633-0c6732489a73))
(segment (start 50.6475 60.648) (end 51.5625 61.563) (width 0.508) (layer "B.Cu") (net 12) (tstamp 11b7ce2b-2202-46b8-a0b9-71b7244c9a78))
(segment (start 42.4795 61.12) (end 42.9225 61.563) (width 0.254) (layer "B.Cu") (net 12) (tstamp 31a0bd8f-8aaf-49dc-9ae2-1eac5b71ffef))
(segment (start 51.5625 65.743) (end 53.8625 65.743) (width 0.508) (layer "B.Cu") (net 12) (tstamp 34082ce8-9679-4bf0-b73c-fa03e1436d47))
(segment (start 41.0525 61.12) (end 42.4795 61.12) (width 0.254) (layer "B.Cu") (net 12) (tstamp 38786210-3a67-4c17-8d97-76709615639c))
(segment (start 50.4925 60.648) (end 50.6475 60.648) (width 0.508) (layer "B.Cu") (net 12) (tstamp 38e927a7-fbed-43df-be40-29a27a48e201))
(segment (start 43.9925 60.648) (end 43.8375 60.648) (width 0.508) (layer "B.Cu") (net 12) (tstamp 639f8471-ada5-4f78-89f6-af541dfd2b3a))
(segment (start 42.9225 61.563) (end 42.9225 65.743) (width 0.508) (layer "B.Cu") (net 12) (tstamp 80881318-82e5-40d7-b92d-c41a41b7e7f9))
(segment (start 53.8625 65.743) (end 56.1425 63.463) (width 0.508) (layer "B.Cu") (net 12) (tstamp 9b8a11e6-d1cc-4e33-8533-1a80ac452580))
(segment (start 42.9225 65.743) (end 40.59 65.743) (width 0.508) (layer "B.Cu") (net 12) (tstamp 9e488b8e-e5ce-48fc-ac5a-f90cf0b5ba97))
(segment (start 37.93 61.4025) (end 37.93 60.37) (width 0.254) (layer "B.Cu") (net 12) (tstamp 9fd19139-adbc-41aa-8bcf-e1f4d9d99653))
(segment (start 43.8375 60.648) (end 42.9225 61.563) (width 0.508) (layer "B.Cu") (net 12) (tstamp 9ffc3d26-a3c9-4659-92d8-d2df14f44eab))
(segment (start 51.5625 61.563) (end 51.5625 65.743) (width 0.508) (layer "B.Cu") (net 12) (tstamp a8beef13-022d-47d7-8643-4c5f8bd3fea1))
(zone (net 12) (net_name "GNDPWR") (layer "F.Cu") (tstamp c094494a-f6f7-43fc-a007-4951484ddf3a) (hatch edge 0.508)
(connect_pads yes (clearance 0.1524))
(min_thickness 0.1524) (filled_areas_thickness no)
(fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 61.9125 74.295)
(xy 22.86 74.295)
(xy 22.86 54.2925)
(xy 61.9125 54.2925)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 56.637495 59.592643)
(xy 56.648 59.595458)
(xy 56.657564 59.592896)
(xy 56.667464 59.592896)
(xy 56.667464 59.593137)
(xy 56.67639 59.592317)
(xy 56.837267 59.604978)
(xy 56.848922 59.606824)
(xy 57.027771 59.649762)
(xy 57.038994 59.653408)
(xy 57.208929 59.723798)
(xy 57.219443 59.729155)
(xy 57.376276 59.825262)
(xy 57.385822 59.832198)
(xy 57.525685 59.951652)
(xy 57.53403 59.959997)
(xy 57.653484 60.09986)
(xy 57.66042 60.109406)
(xy 57.756527 60.266239)
(xy 57.761884 60.276753)
(xy 57.832274 60.446688)
(xy 57.83592 60.457911)
(xy 57.878858 60.63676)
(xy 57.880704 60.648415)
(xy 57.893365 60.809292)
(xy 57.892545 60.818218)
(xy 57.892786 60.818218)
(xy 57.892786 60.828118)
(xy 57.890224 60.837682)
(xy 57.893039 60.848187)
(xy 57.8956 60.867644)
(xy 57.8956 66.07272)
(xy 57.893039 66.092177)
(xy 57.890224 66.102682)
(xy 57.892786 66.112246)
(xy 57.892786 66.122146)
(xy 57.892545 66.122146)
(xy 57.893365 66.131072)
(xy 57.880704 66.291949)
(xy 57.878858 66.303604)
(xy 57.83592 66.482453)
(xy 57.832274 66.493676)
(xy 57.761884 66.663611)
(xy 57.756527 66.674125)
(xy 57.66042 66.830958)
(xy 57.653484 66.840504)
(xy 57.53403 66.980367)
(xy 57.525685 66.988712)
(xy 57.385822 67.108166)
(xy 57.376276 67.115102)
(xy 57.219443 67.211209)
(xy 57.208929 67.216566)
(xy 57.038994 67.286956)
(xy 57.027771 67.290602)
(xy 56.848922 67.33354)
(xy 56.837267 67.335386)
(xy 56.67639 67.348047)
(xy 56.667464 67.347227)
(xy 56.667464 67.347468)
(xy 56.657564 67.347468)
(xy 56.648 67.344906)
(xy 56.637495 67.347721)
(xy 56.618038 67.350282)
(xy 42.498694 67.350282)
(xy 42.450356 67.332689)
(xy 42.424636 67.28814)
(xy 42.433569 67.237482)
(xy 42.439033 67.229304)
(xy 42.472781 67.185322)
(xy 42.516165 67.157683)
(xy 42.532442 67.1559)
(xy 42.954684 67.1559)
(xy 42.969352 67.157345)
(xy 42.987 67.160855)
(xy 42.994264 67.15941)
(xy 42.995415 67.15941)
(xy 43.000418 67.158718)
(xy 43.180657 67.144533)
(xy 43.180659 67.144533)
(xy 43.183603 67.144301)
(xy 43.19185 67.142321)
(xy 43.372483 67.098955)
(xy 43.372487 67.098954)
(xy 43.375364 67.098263)
(xy 43.378093 67.097133)
(xy 43.378098 67.097131)
(xy 43.554841 67.023922)
(xy 43.554842 67.023921)
(xy 43.557564 67.022794)
(xy 43.560073 67.021257)
(xy 43.560076 67.021255)
(xy 43.723197 66.921294)
(xy 43.723199 66.921293)
(xy 43.725713 66.919752)
(xy 43.875674 66.791674)
(xy 44.003752 66.641713)
(xy 44.005294 66.639197)
(xy 44.105255 66.476076)
(xy 44.105257 66.476073)
(xy 44.106794 66.473564)
(xy 44.107922 66.470841)
(xy 44.181131 66.294098)
(xy 44.181133 66.294093)
(xy 44.182263 66.291364)
(xy 44.228301 66.099603)
(xy 44.242718 65.916418)
(xy 44.24341 65.911415)
(xy 44.24341 65.910264)
(xy 44.244855 65.903)
(xy 44.241345 65.885352)
(xy 44.2399 65.870684)
(xy 44.2399 65.801836)
(xy 44.241345 65.787165)
(xy 44.24341 65.776784)
(xy 44.244855 65.76952)
(xy 44.24341 65.762255)
(xy 44.24341 65.757555)
(xy 44.242634 65.741759)
(xy 44.253529 65.631138)
(xy 44.256405 65.61668)
(xy 44.294621 65.490698)
(xy 44.300259 65.477087)
(xy 44.362316 65.360988)
(xy 44.370506 65.348731)
(xy 44.454022 65.246966)
(xy 44.464446 65.236542)
(xy 44.566211 65.153026)
(xy 44.578468 65.144836)
(xy 44.58885 65.139286)
(xy 44.694567 65.082779)
(xy 44.708178 65.077141)
(xy 44.834161 65.038925)
(xy 44.848617 65.036049)
(xy 44.959241 65.025154)
(xy 44.975035 65.02593)
(xy 44.979735 65.02593)
(xy 44.987 65.027375)
(xy 45.004648 65.023865)
(xy 45.019316 65.02242)
(xy 45.834204 65.02242)
(xy 45.848872 65.023865)
(xy 45.86652 65.027375)
(xy 45.873783 65.02593)
(xy 45.87527 65.02593)
(xy 45.87998 65.025296)
(xy 46.078274 65.011114)
(xy 46.07828 65.011113)
(xy 46.080952 65.010922)
(xy 46.291017 64.965225)
(xy 46.293534 64.964286)
(xy 46.293538 64.964285)
(xy 46.489931 64.891034)
(xy 46.489936 64.891032)
(xy 46.492442 64.890097)
(xy 46.681124 64.787069)
(xy 46.853224 64.658237)
(xy 47.005237 64.506224)
(xy 47.134069 64.334124)
(xy 47.22439 64.168714)
(xy 47.235809 64.147801)
(xy 47.23581 64.1478)
(xy 47.237097 64.145442)
(xy 47.238106 64.142739)
(xy 47.311285 63.946538)
(xy 47.311286 63.946534)
(xy 47.312225 63.944017)
(xy 47.357922 63.733952)
(xy 47.358122 63.731165)
(xy 47.372296 63.53298)
(xy 47.37293 63.52827)
(xy 47.37293 63.526783)
(xy 47.374375 63.51952)
(xy 47.370865 63.501872)
(xy 47.36942 63.487204)
(xy 47.36942 62.623608)
(xy 47.387013 62.57527)
(xy 47.434805 62.549051)
(xy 47.566836 62.531669)
(xy 47.571388 62.529784)
(xy 47.57139 62.529783)
(xy 47.652347 62.496249)
(xy 47.701336 62.475957)
(xy 47.816833 62.387333)
(xy 47.826644 62.374547)
(xy 47.870028 62.346909)
(xy 47.921027 62.353623)
(xy 47.945963 62.374545)
(xy 47.959421 62.392084)
(xy 48.042662 62.455957)
(xy 48.044433 62.457316)
(xy 48.072071 62.5007)
(xy 48.073854 62.516976)
(xy 48.073854 63.20193)
(xy 48.072712 63.214987)
(xy 48.069536 63.233)
(xy 48.070186 63.236688)
(xy 48.085702 63.433839)
(xy 48.086392 63.436713)
(xy 48.130293 63.619574)
(xy 48.132732 63.629734)
(xy 48.133862 63.632463)
(xy 48.133864 63.632468)
(xy 48.179312 63.742188)
(xy 48.209828 63.815859)
(xy 48.315091 63.987633)
(xy 48.445929 64.140825)
(xy 48.599121 64.271663)
(xy 48.601635 64.273204)
(xy 48.601637 64.273205)
(xy 48.635751 64.29411)
(xy 48.770895 64.376926)
(xy 48.773617 64.378054)
(xy 48.773618 64.378054)
(xy 48.954286 64.45289)
(xy 48.954291 64.452892)
(xy 48.95702 64.454022)
(xy 48.959897 64.454713)
(xy 48.959901 64.454714)
(xy 49.106709 64.489959)
(xy 49.152915 64.501052)
(xy 49.155859 64.501284)
(xy 49.155861 64.501284)
(xy 49.343966 64.516088)
(xy 49.343967 64.516088)
(xy 49.350066 64.516568)
(xy 49.353754 64.517218)
(xy 49.371767 64.514042)
(xy 49.384824 64.5129)
(xy 52.819785 64.5129)
(xy 52.868123 64.530493)
(xy 52.879445 64.542321)
(xy 52.898897 64.567671)
(xy 52.933167 64.612333)
(xy 53.048664 64.700957)
(xy 53.099068 64.721835)
(xy 53.17861 64.754783)
(xy 53.178612 64.754784)
(xy 53.183164 64.756669)
(xy 53.3275 64.775671)
(xy 53.471836 64.756669)
(xy 53.476388 64.754784)
(xy 53.47639 64.754783)
(xy 53.555932 64.721835)
(xy 53.606336 64.700957)
(xy 53.721833 64.612333)
(xy 53.724831 64.608426)
(xy 53.807459 64.500743)
(xy 53.807461 64.500739)
(xy 53.810457 64.496835)
(xy 53.848773 64.404333)
(xy 53.864283 64.36689)
(xy 53.864284 64.366888)
(xy 53.866169 64.362336)
(xy 53.885171 64.218)
(xy 53.866169 64.073664)
(xy 53.810457 63.939165)
(xy 53.807461 63.935261)
(xy 53.807459 63.935257)
(xy 53.724831 63.827574)
(xy 53.721833 63.823667)
(xy 53.606336 63.735043)
(xy 53.546458 63.710241)
(xy 53.47639 63.681217)
(xy 53.476388 63.681216)
(xy 53.471836 63.679331)
(xy 53.3275 63.660329)
(xy 53.183164 63.679331)
(xy 53.178612 63.681216)
(xy 53.17861 63.681217)
(xy 53.108868 63.710106)
(xy 53.048665 63.735043)
(xy 53.044761 63.738039)
(xy 53.044757 63.738041)
(xy 52.946891 63.813136)
(xy 52.933167 63.823667)
(xy 52.885853 63.885329)
(xy 52.856426 63.923679)
(xy 52.813043 63.951317)
(xy 52.796766 63.9531)
(xy 49.384824 63.9531)
(xy 49.371766 63.951958)
(xy 49.360232 63.949924)
(xy 49.360231 63.949924)
(xy 49.353754 63.948782)
(xy 49.347274 63.949925)
(xy 49.343919 63.949925)
(xy 49.327775 63.950542)
(xy 49.220638 63.93999)
(xy 49.206181 63.937114)
(xy 49.085265 63.900434)
(xy 49.071653 63.894796)
(xy 48.960218 63.835232)
(xy 48.94797 63.827049)
(xy 48.850282 63.746879)
(xy 48.839875 63.736472)
(xy 48.759705 63.638784)
(xy 48.751521 63.626535)
(xy 48.745712 63.615667)
(xy 48.691958 63.515101)
(xy 48.686318 63.501485)
(xy 48.684233 63.494609)
(xy 48.64964 63.380572)
(xy 48.646764 63.366115)
(xy 48.636212 63.258979)
(xy 48.636829 63.242835)
(xy 48.636829 63.23948)
(xy 48.637972 63.233)
(xy 48.634796 63.214987)
(xy 48.633654 63.20193)
(xy 48.633654 62.516976)
(xy 48.651247 62.468638)
(xy 48.663075 62.457316)
(xy 48.664847 62.455957)
(xy 48.748087 62.392084)
(xy 48.754731 62.383426)
(xy 48.779881 62.350649)
(xy 48.823265 62.323011)
(xy 48.874264 62.329725)
(xy 48.8992 62.350647)
(xy 48.908167 62.362333)
(xy 49.023664 62.450957)
(xy 49.066888 62.468861)
(xy 49.15361 62.504783)
(xy 49.153612 62.504784)
(xy 49.158164 62.506669)
(xy 49.3025 62.525671)
(xy 49.446836 62.506669)
(xy 49.451388 62.504784)
(xy 49.45139 62.504783)
(xy 49.538112 62.468861)
(xy 49.581336 62.450957)
(xy 49.659408 62.39105)
(xy 49.708467 62.375582)
(xy 49.755991 62.395267)
(xy 49.762084 62.401586)
(xy 49.764819 62.405921)
(xy 49.768835 62.409468)
(xy 49.768836 62.409469)
(xy 49.823607 62.457841)
(xy 49.867424 62.496539)
(xy 49.872271 62.498815)
(xy 49.872273 62.498816)
(xy 49.914225 62.518512)
(xy 49.991339 62.554717)
(xy 50.025545 62.560043)
(xy 50.092406 62.570454)
(xy 50.092411 62.570454)
(xy 50.095273 62.5709)
(xy 50.166812 62.5709)
(xy 50.205481 62.565362)
(xy 50.262707 62.557167)
(xy 50.262711 62.557166)
(xy 50.26801 62.556407)
(xy 50.272884 62.554191)
(xy 50.272887 62.55419)
(xy 50.354735 62.516976)