-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path328RFStamp.kicad_pcb
1040 lines (1013 loc) · 78.2 KB
/
328RFStamp.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)
(pcbplotparams
(layerselection 0x00010f0_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber/")
)
)
(net 0 "")
(net 1 "Net-(C1-Pad1)")
(net 2 "GND")
(net 3 "Net-(C2-Pad1)")
(net 4 "Net-(C2-Pad2)")
(net 5 "/CS")
(net 6 "/GDO0")
(net 7 "Net-(IC1-Pad6)")
(net 8 "/MISO")
(net 9 "/SCK")
(net 10 "/MOSI")
(net 11 "+3V3")
(net 12 "Net-(J1-Pad1)")
(net 13 "Net-(J2-Pad1)")
(net 14 "Net-(J3-Pad1)")
(net 15 "Net-(J4-Pad1)")
(net 16 "Net-(J5-Pad1)")
(net 17 "Net-(J6-Pad1)")
(net 18 "/RX")
(net 19 "/TX")
(net 20 "Net-(R2-Pad2)")
(net 21 "Net-(U1-Pad28)")
(net 22 "Net-(U1-Pad27)")
(net 23 "Net-(U1-Pad22)")
(net 24 "Net-(U1-Pad19)")
(net 25 "Net-(U1-Pad8)")
(net 26 "Net-(U1-Pad7)")
(net 27 "Net-(U1-Pad1)")
(net 28 "Net-(J11-Pad1)")
(net 29 "Net-(J13-Pad1)")
(net 30 "Net-(U1-Pad26)")
(net 31 "Net-(U1-Pad25)")
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tedit 5DB6D0E0) (tstamp 00000000-0000-0000-0000-00005db5bb98)
(at 50.7746 45.7708)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(path "/00000000-0000-0000-0000-00005db6ef17")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "J1" (at 0.0254 1.5494) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 8322f275-268c-4e87-a69f-4cfbf05e747f)
)
(fp_text value "5" (at 1.0414 1.2192) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp b6270a28-e0d9-4655-a18a-03dbf007b940)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f3490fa5-5a27-423b-af60-53609669542c)
)
(pad "1" smd rect locked (at -0.00254 -0.25908) (size 1.5 2) (layers "F.Cu" "F.Mask")
(net 12 "Net-(J1-Pad1)") (tstamp 1860e030-7a36-4298-b7fc-a16d48ab15ba))
)
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tedit 5DB6D0CE) (tstamp 00000000-0000-0000-0000-00005db5bba0)
(at 45.1866 45.7708)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(path "/00000000-0000-0000-0000-00005db7270d")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "J2" (at 0 1.5748) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp c1d83899-e380-49f9-a87d-8e78bc089ebf)
)
(fp_text value "7" (at 1.1684 1.2192) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp e9bb29b2-2bb9-4ea2-acd9-2bb3ca677a12)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 62c076a3-d618-44a2-9042-9a08b3576787)
)
(pad "1" smd rect locked (at -0.00254 -0.25908) (size 1.5 2) (layers "F.Cu" "F.Mask")
(net 13 "Net-(J2-Pad1)") (tstamp da469d11-a8a4-414b-9449-d151eeaf4853))
)
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tedit 5DB6D0AE) (tstamp 00000000-0000-0000-0000-00005db5bba8)
(at 42.3926 45.7708)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(path "/00000000-0000-0000-0000-00005db6c303")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "J3" (at -0.0254 1.5748) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 6a955fc7-39d9-4c75-9a69-676ca8c0b9b2)
)
(fp_text value "8" (at 1.0414 1.2192) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp e8314017-7be6-4011-9179-37449a29b311)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e10b5627-3247-4c86-b9f6-ef474ca11543)
)
(pad "1" smd rect locked (at -0.00508 -0.26162) (size 1.5 2) (layers "F.Cu" "F.Mask")
(net 14 "Net-(J3-Pad1)") (tstamp 746ba970-8279-4e7b-aed3-f28687777c21))
)
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tedit 5DB6D0D9) (tstamp 00000000-0000-0000-0000-00005db5c2a8)
(at 47.9806 45.7708)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(path "/00000000-0000-0000-0000-00005db7206c")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "J6" (at -0.0762 1.5494) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp a7520ad3-0f8b-4788-92d4-8ffb277041e6)
)
(fp_text value "6" (at 0.9144 1.2192) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp a795f1ba-cdd5-4cc5-9a52-08586e982934)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 46918595-4a45-48e8-84c0-961b4db7f35f)
)
(pad "1" smd rect locked (at -0.00254 -0.25908) (size 1.5 2) (layers "F.Cu" "F.Mask")
(net 17 "Net-(J6-Pad1)") (tstamp 9ccf03e8-755a-4cd9-96fc-30e1d08fa253))
)
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tedit 5DB6D18E) (tstamp 00000000-0000-0000-0000-00005db69d6e)
(at 53.848 59.182)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(path "/00000000-0000-0000-0000-00005db7811e")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "J10" (at 0 -1.648) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e877bf4a-4210-4bd3-b7b0-806eb4affc5b)
)
(fp_text value "RST" (at 0.6858 2.3876 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp cef6f603-8a0b-4dd0-af99-ebfbef7d1b4b)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9c8ccb2a-b1e9-4f2c-94fe-301b5975277e)
)
(pad "1" smd rect locked (at 0.2032 0.3302 90) (size 1.5 2) (layers "F.Cu" "F.Mask")
(net 3 "Net-(C2-Pad1)") (tstamp a03e565f-d8cd-4032-aae3-b7327d4143dd))
)
(footprint "Package_QFP:TQFP-32_7x7mm_P0.8mm" (layer "F.Cu")
(tedit 5A02F146) (tstamp 00000000-0000-0000-0000-00005db6a62f)
(at 47.244 53.1241 180)
(descr "32-Lead Plastic Thin Quad Flatpack (PT) - 7x7x1.0 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf)")
(tags "QFP 0.8")
(path "/00000000-0000-0000-0000-00005db56f70")
(attr smd)
(fp_text reference "U1" (at 0 -6.05) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5528bcad-2950-4673-90eb-c37e6952c475)
)
(fp_text value "ATmega328P-AU" (at 0 6.05) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d)
)
(fp_text user "${REFERENCE}" (at -0.2794 -0.4826) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6bfe5804-2ef9-4c65-b2a7-f01e4014370a)
)
(fp_line (start -3.625 3.625) (end -3.625 3.3) (layer "F.SilkS") (width 0.15) (tstamp 003c2200-0632-4808-a662-8ddd5d30c768))
(fp_line (start -3.625 -3.4) (end -5.05 -3.4) (layer "F.SilkS") (width 0.15) (tstamp 08a7c925-7fae-4530-b0c9-120e185cb318))
(fp_line (start -3.625 -3.625) (end -3.3 -3.625) (layer "F.SilkS") (width 0.15) (tstamp 240e07e1-770b-4b27-894f-29fd601c924d))
(fp_line (start 3.625 -3.625) (end 3.3 -3.625) (layer "F.SilkS") (width 0.15) (tstamp 4a4ec8d9-3d72-4952-83d4-808f65849a2b))
(fp_line (start 3.625 -3.625) (end 3.625 -3.3) (layer "F.SilkS") (width 0.15) (tstamp 9b0a1687-7e1b-4a04-a30b-c27a072a2949))
(fp_line (start -3.625 -3.625) (end -3.625 -3.4) (layer "F.SilkS") (width 0.15) (tstamp c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b))
(fp_line (start 3.625 3.625) (end 3.3 3.625) (layer "F.SilkS") (width 0.15) (tstamp cbd8faed-e1f8-4406-87c8-58b2c504a5d4))
(fp_line (start 3.625 3.625) (end 3.625 3.3) (layer "F.SilkS") (width 0.15) (tstamp ee27d19c-8dca-4ac8-a760-6dfd54d28071))
(fp_line (start -3.625 3.625) (end -3.3 3.625) (layer "F.SilkS") (width 0.15) (tstamp f2c93195-af12-4d3e-acdf-bdd0ff675c24))
(fp_line (start -5.3 -5.3) (end -5.3 5.3) (layer "F.CrtYd") (width 0.05) (tstamp 61fe293f-6808-4b7f-9340-9aaac7054a97))
(fp_line (start -5.3 -5.3) (end 5.3 -5.3) (layer "F.CrtYd") (width 0.05) (tstamp 63ff1c93-3f96-4c33-b498-5dd8c33bccc0))
(fp_line (start -5.3 5.3) (end 5.3 5.3) (layer "F.CrtYd") (width 0.05) (tstamp 9e1b837f-0d34-4a18-9644-9ee68f141f46))
(fp_line (start 5.3 -5.3) (end 5.3 5.3) (layer "F.CrtYd") (width 0.05) (tstamp b88717bd-086f-46cd-9d3f-0396009d0996))
(fp_line (start 3.5 -3.5) (end 3.5 3.5) (layer "F.Fab") (width 0.15) (tstamp 0217dfc4-fc13-4699-99ad-d9948522648e))
(fp_line (start -3.5 -2.5) (end -2.5 -3.5) (layer "F.Fab") (width 0.15) (tstamp 2f215f15-3d52-4c91-93e6-3ea03a95622f))
(fp_line (start -3.5 3.5) (end -3.5 -2.5) (layer "F.Fab") (width 0.15) (tstamp 8da933a9-35f8-42e6-8504-d1bab7264306))
(fp_line (start 3.5 3.5) (end -3.5 3.5) (layer "F.Fab") (width 0.15) (tstamp bd5408e4-362d-4e43-9d39-78fb99eb52c8))
(fp_line (start -2.5 -3.5) (end 3.5 -3.5) (layer "F.Fab") (width 0.15) (tstamp c0eca5ed-bc5e-4618-9bcd-80945bea41ed))
(pad "1" smd rect locked (at -4.25 -2.8 180) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "Net-(U1-Pad1)") (tstamp a15a7506-eae4-4933-84da-9ad754258706))
(pad "2" smd rect locked (at -4.25 -2 180) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "Net-(R2-Pad2)") (tstamp c8c79177-94d4-43e2-a654-f0a5554fbb68))
(pad "3" smd rect locked (at -4.25 -1.2 180) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp e21aa84b-970e-47cf-b64f-3b55ee0e1b51))
(pad "4" smd rect locked (at -4.25 -0.4 180) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "+3V3") (tstamp 40976bf0-19de-460f-ad64-224d4f51e16b))
(pad "5" smd rect locked (at -4.25 0.4 180) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 8c514922-ffe1-4e37-a260-e807409f2e0d))
(pad "6" smd rect locked (at -4.25 1.2 180) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "+3V3") (tstamp c25a772d-af9c-4ebc-96f6-0966738c13a8))
(pad "7" smd rect locked (at -4.25 2 180) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "Net-(U1-Pad7)") (tstamp d5641ac9-9be7-46bf-90b3-6c83d852b5ba))
(pad "8" smd rect locked (at -4.25 2.8 180) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "Net-(U1-Pad8)") (tstamp 1e8701fc-ad24-40ea-846a-e3db538d6077))
(pad "9" smd rect locked (at -2.8 4.25 270) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 12 "Net-(J1-Pad1)") (tstamp 25d545dc-8f50-4573-922c-35ef5a2a3a19))
(pad "10" smd rect locked (at -2 4.25 270) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 17 "Net-(J6-Pad1)") (tstamp c830e3bc-dc64-4f65-8f47-3b106bae2807))
(pad "11" smd rect locked (at -1.2 4.25 270) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 13 "Net-(J2-Pad1)") (tstamp c43663ee-9a0d-4f27-a292-89ba89964065))
(pad "12" smd rect locked (at -0.4 4.25 270) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 14 "Net-(J3-Pad1)") (tstamp aca4de92-9c41-4c2b-9afa-540d02dafa1c))
(pad "13" smd rect locked (at 0.4 4.25 270) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 15 "Net-(J4-Pad1)") (tstamp d7269d2a-b8c0-422d-8f25-f79ea31bf75e))
(pad "14" smd rect locked (at 1.2 4.25 270) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "/CS") (tstamp e8c50f1b-c316-4110-9cce-5c24c65a1eaa))
(pad "15" smd rect locked (at 2 4.25 270) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 10 "/MOSI") (tstamp babeabf2-f3b0-4ed5-8d9e-0215947e6cf3))
(pad "16" smd rect locked (at 2.8 4.25 270) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 8 "/MISO") (tstamp df68c26a-03b5-4466-aecf-ba34b7dce6b7))
(pad "17" smd rect locked (at 4.25 2.8 180) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 9 "/SCK") (tstamp 4780a290-d25c-4459-9579-eba3f7678762))
(pad "18" smd rect locked (at 4.25 2 180) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 11 "+3V3") (tstamp 7e023245-2c2b-4e2b-bfb9-5d35176e88f2))
(pad "19" smd rect locked (at 4.25 1.2 180) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "Net-(U1-Pad19)") (tstamp 40165eda-4ba6-4565-9bb4-b9df6dbb08da))
(pad "20" smd rect locked (at 4.25 0.4 180) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "Net-(C1-Pad1)") (tstamp 8e06ba1f-e3ba-4eb9-a10e-887dffd566d6))
(pad "21" smd rect locked (at 4.25 -0.4 180) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 12422a89-3d0c-485c-9386-f77121fd68fd))
(pad "22" smd rect locked (at 4.25 -1.2 180) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "Net-(U1-Pad22)") (tstamp 7d34f6b1-ab31-49be-b011-c67fe67a8a56))
(pad "23" smd rect locked (at 4.25 -2 180) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "Net-(J11-Pad1)") (tstamp 1a6d2848-e78e-49fe-8978-e1890f07836f))
(pad "24" smd rect locked (at 4.25 -2.8 180) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 29 "Net-(J13-Pad1)") (tstamp a544eb0a-75db-4baf-bf54-9ca21744343b))
(pad "25" smd rect locked (at 2.8 -4.25 270) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 31 "Net-(U1-Pad25)") (tstamp 45008225-f50f-4d6b-b508-6730a9408caf))
(pad "26" smd rect locked (at 2 -4.25 270) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 30 "Net-(U1-Pad26)") (tstamp 8c6a821f-8e19-48f3-8f44-9b340f7689bc))
(pad "27" smd rect locked (at 1.2 -4.25 270) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "Net-(U1-Pad27)") (tstamp 6475547d-3216-45a4-a15c-48314f1dd0f9))
(pad "28" smd rect locked (at 0.4 -4.25 270) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "Net-(U1-Pad28)") (tstamp 75ffc65c-7132-4411-9f2a-ae0c73d79338))
(pad "29" smd rect locked (at -0.4 -4.25 270) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(C2-Pad1)") (tstamp 3e903008-0276-4a73-8edb-5d9dfde6297c))
(pad "30" smd rect locked (at -1.2 -4.25 270) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 18 "/RX") (tstamp 24f7628d-681d-4f0e-8409-40a129e929d9))
(pad "31" smd rect locked (at -2 -4.25 270) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 19 "/TX") (tstamp 3a7648d8-121a-4921-9b92-9b35b76ce39b))
(pad "32" smd rect locked (at -2.8 -4.25 270) (size 1.6 0.55) (layers "F.Cu" "F.Paste" "F.Mask")
(net 6 "/GDO0") (tstamp 1d9cdadc-9036-4a95-b6db-fa7b3b74c869))
(model "${KICAD6_3DMODEL_DIR}/Package_QFP.3dshapes/TQFP-32_7x7mm_P0.8mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.00mm:PinHeader_1x05_P2.00mm_Vertical" (layer "F.Cu")
(tedit 5DB6A2A8) (tstamp 00000000-0000-0000-0000-00005db6b32f)
(at 39.116 48.8442)
(descr "Through hole straight pin header, 1x05, 2.00mm pitch, single row")
(tags "Through hole pin header THT 1x05 2.00mm single row")
(path "/00000000-0000-0000-0000-00005db7cab3")
(attr through_hole)
(fp_text reference "J7" (at 0 -2.06) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fd470e95-4861-44fe-b1e4-6d8a7c66e144)
)
(fp_text value "FTDI" (at 0.0508 -1.1176 180) (layer "F.SilkS") hide
(effects (font (size 0.6 0.6) (thickness 0.1)))
(tstamp 8174b4de-74b1-48db-ab8e-c8432251095b)
)
(fp_text user "${REFERENCE}" (at 0 4 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 704d6d51-bb34-4cbf-83d8-841e208048d8)
)
(fp_line (start 1.5 -1.5) (end -1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0eaa98f0-9565-4637-ace3-42a5231b07f7))
(fp_line (start 1.5 9.5) (end 1.5 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 181abe7a-f941-42b6-bd46-aaa3131f90fb))
(fp_line (start -1.5 -1.5) (end -1.5 9.5) (layer "F.CrtYd") (width 0.05) (tstamp c41b3c8b-634e-435a-b582-96b83bbd4032))
(fp_line (start -1.5 9.5) (end 1.5 9.5) (layer "F.CrtYd") (width 0.05) (tstamp ce83728b-bebd-48c2-8734-b6a50d837931))
(fp_line (start -0.5 -1) (end 1 -1) (layer "F.Fab") (width 0.1) (tstamp 0b21a65d-d20b-411e-920a-75c343ac5136))
(fp_line (start 1 9) (end -1 9) (layer "F.Fab") (width 0.1) (tstamp 0f22151c-f260-4674-b486-4710a2c42a55))
(fp_line (start -1 9) (end -1 -0.5) (layer "F.Fab") (width 0.1) (tstamp 1831fb37-1c5d-42c4-b898-151be6fca9dc))
(fp_line (start -1 -0.5) (end -0.5 -1) (layer "F.Fab") (width 0.1) (tstamp 9340c285-5767-42d5-8b6d-63fe2a40ddf3))
(fp_line (start 1 -1) (end 1 9) (layer "F.Fab") (width 0.1) (tstamp fe8d9267-7834-48d6-a191-c8724b2ee78d))
(pad "1" thru_hole rect locked (at 0 0) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "GND") (tstamp 29e78086-2175-405e-9ba3-c48766d2f50c))
(pad "2" thru_hole oval locked (at 0 2) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 11 "+3V3") (tstamp a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5))
(pad "3" thru_hole oval locked (at 0 4) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 19 "/TX") (tstamp 03c52831-5dc5-43c5-a442-8d23643b46fb))
(pad "4" thru_hole oval locked (at 0 6) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 18 "/RX") (tstamp d57dcfee-5058-4fc2-a68b-05f9a48f685b))
(pad "5" thru_hole oval locked (at 0 8) (size 1.35 1.35) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Net-(C2-Pad2)") (tstamp 3cd1bda0-18db-417d-b581-a0c50623df68))
)
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tedit 5DB6D064) (tstamp 00000000-0000-0000-0000-00005db6cfe0)
(at 39.5986 45.5168)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(path "/00000000-0000-0000-0000-00005db76530")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "J4" (at -0.0254 1.5748) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 47baf4b1-0938-497d-88f9-671136aa8be7)
)
(fp_text value "9" (at 1.0414 1.4732) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 77ed3941-d133-4aef-a9af-5a39322d14eb)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e615f7aa-337e-474d-9615-2ad82b1c44ca)
)
(pad "1" smd rect locked (at -0.00762 -0.00762) (size 1.5 2) (layers "F.Cu" "F.Mask")
(net 15 "Net-(J4-Pad1)") (tstamp 4fb02e58-160a-4a39-9f22-d0c75e82ee72))
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-00005db6df6c)
(at 51.0286 62.2046 180)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path "/00000000-0000-0000-0000-00005db61888")
(attr smd)
(fp_text reference "R1" (at -0.5334 1.4224) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp ec31c074-17b2-48e1-ab01-071acad3fa04)
)
(fp_text value "10k" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 60dcd1fe-7079-4cb8-b509-04558ccf5097)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp c5eb1e4c-ce83-470e-8f32-e20ff1f886a3)
)
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "F.SilkS") (width 0.12) (tstamp 01e9b6e7-adf9-4ee7-9447-a588630ee4a2))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "F.SilkS") (width 0.12) (tstamp ca87f11b-5f48-4b57-8535-68d3ec2fe5a9))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 16bd6381-8ac0-4bf2-9dce-ecc20c724b8d))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4f66b314-0f62-4fb6-8c3c-f9c6a75cd3ec))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 85b7594c-358f-454b-b2ad-dd0b1d67ed76))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp a5cd8da1-8f7f-4f80-bb23-0317de562222))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 730b670c-9bcf-4dcd-9a8d-fcaa61fb0955))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 7d928d56-093a-4ca8-aed1-414b7e703b45))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 8a650ebf-3f78-4ca4-a26b-a5028693e36d))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp abe07c9a-17c3-43b5-b7a6-ae867ac27ea7))
(pad "1" smd roundrect locked (at -1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 11 "+3V3") (tstamp 965308c8-e014-459a-b9db-b8493a601c62))
(pad "2" smd roundrect locked (at 1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 3 "Net-(C2-Pad1)") (tstamp 0c3dceba-7c95-4b3d-b590-0eb581444beb))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-00005db6e08f)
(at 54.0512 51.6128 -90)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "resistor handsolder")
(path "/00000000-0000-0000-0000-00005db8ce9d")
(attr smd)
(fp_text reference "R2" (at 2.6416 -0.1524 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 0ff508fd-18da-4ab7-9844-3c8a28c2587e)
)
(fp_text value "330" (at 0 1.65 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 378af8b4-af3d-46e7-89ae-deff12ca9067)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp a27eb049-c992-4f11-a026-1e6a8d9d0160)
)
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "F.SilkS") (width 0.12) (tstamp 68877d35-b796-44db-9124-b8e744e7412e))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "F.SilkS") (width 0.12) (tstamp c332fa55-4168-4f55-88a5-f82c7c21040b))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 13c0ff76-ed71-4cd9-abb0-92c376825d5d))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 8412992d-8754-44de-9e08-115cec1a3eff))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp df32840e-2912-4088-b54c-9a85f64c0265))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp ffd175d1-912a-4224-be1e-a8198680f46b))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 6d26d68f-1ca7-4ff3-b058-272f1c399047))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 911bdcbe-493f-4e21-a506-7cbc636e2c17))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 9f8381e9-3077-4453-a480-a01ad9c1a940))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp b96fe6ac-3535-4455-ab88-ed77f5e46d6e))
(pad "1" smd roundrect locked (at -1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 16 "Net-(J5-Pad1)") (tstamp 70e15522-1572-4451-9c0d-6d36ac70d8c6))
(pad "2" smd roundrect locked (at 1.025 0 270) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 20 "Net-(R2-Pad2)") (tstamp d3d7e298-1d39-4294-a3ab-c84cc0dc5e5a))
(model "${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tedit 5DB6D286) (tstamp 00000000-0000-0000-0000-00005db6ea1f)
(at 42.0624 48.5902)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(path "/00000000-0000-0000-0000-00005db7162b")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "J9" (at 2.286 -0.508) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 712d6a7d-2b62-464f-b745-fd2a6b0187f6)
)
(fp_text value "-" (at -0.0762 -1.1938 180) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.1)))
(tstamp b3d08afa-f296-4e3b-8825-73b6331d35bf)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 98e81e80-1f85-4152-be3f-99785ea97751)
)
(pad "1" smd rect locked (at 0 0) (size 2 1.5) (layers "F.Cu" "F.Mask")
(net 2 "GND") (tstamp 842e430f-0c35-45f3-a0b5-95ae7b7ae388))
)
(footprint "TestPoint:TestPoint_Pad_D1.0mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 00000000-0000-0000-0000-00005db6f2a0)
(at 51.689 57.5564)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(path "/00000000-0000-0000-0000-00005db74b53")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "J11" (at 0 -1.448) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a9ec539a-d80d-40cc-803c-12b6adefe42a)
)
(fp_text value "14" (at 1.3462 0.5842) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp c264c438-a475-4ad4-9915-0f1e6ecf3053)
)
(fp_text user "${REFERENCE}" (at 0 -1.45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e25ce415-914a-48fe-bf09-324317917b2e)
)
(fp_circle (center 0 0) (end 0 0.7) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 2bf3f24b-fd30-41a7-a274-9b519491916b))
(fp_circle (center 0 0) (end 1 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 4831966c-bb32-4bc8-a400-0382a02ffa1c))
(pad "1" smd circle locked (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask")
(net 28 "Net-(J11-Pad1)") (tstamp 4d4b0fcd-2c79-4fc3-b5fa-7a0741601344))
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-00005db72692)
(at 48.3616 59.6646)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(path "/00000000-0000-0000-0000-00005db6e2b4")
(attr smd)
(fp_text reference "C4" (at 2.5654 -0.4826) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 0867287d-2e6a-4d69-a366-c29f88198f2b)
)
(fp_text value "100n" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp afd3dbad-e7a8-4e4c-b77c-4065a69aefa2)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 1b54105e-6590-4d26-a763-ecfcf81eedc4)
)
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "F.SilkS") (width 0.12) (tstamp 6b25f522-8e2d-4cd8-9d5d-a2b80f60133b))
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "F.SilkS") (width 0.12) (tstamp dabe541b-b164-4180-97a4-5ca761b86800))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 0f41a909-27c4-4be2-9d5e-9ae2108c8ff5))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 35354519-a28c-40c4-befd-0943e98dea53))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 38f2d955-ea7a-4a21-aba6-02ae23f1bd4a))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 632acde9-b7fd-4f04-8cb4-d2cbb06b3595))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 417f13e4-c121-485a-a6b5-8b55e70350b8))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 9dab0cb7-2557-4419-963b-5ae736517f62))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp c201e1b2-fc01-4110-bdaa-a33290468c83))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp e12e827e-36be-4503-8eef-6fc7e8bc5d49))
(pad "1" smd roundrect locked (at -1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 11 "+3V3") (tstamp 6a780180-586a-4241-a52d-dc7a5ffcc966))
(pad "2" smd roundrect locked (at 1.025 0) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 2 "GND") (tstamp 0088d107-13d8-496c-8da6-7bbeb9d096b0))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-00005db72a80)
(at 41.021 59.817 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(path "/00000000-0000-0000-0000-00005db62b97")
(attr smd)
(fp_text reference "C2" (at 2.3495 0 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp f022716e-b121-4cbf-a833-20e924070c22)
)
(fp_text value "100n" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cb868d2e-5efb-4bfb-8796-88435b326918)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp fc0a4225-db46-4d48-8163-d522602d57cd)
)
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "F.SilkS") (width 0.12) (tstamp 29256b3d-9450-4c0a-a4d4-911f04b9c140))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "F.SilkS") (width 0.12) (tstamp 37e4dc66-4492-4061-908d-7213940a2ec3))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 2bef89de-08c7-4a13-9d85-67948d429ca0))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 483f60da-14d7-4f88-8d01-3f9f30784c70))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 6ca3c38c-4e71-4202-b6c1-1b25f04a27ae))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp fb03d859-dcc9-4533-b352-64830e0e5423))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 2d6718e7-f18d-444d-9792-ddf1a113460c))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp b603d26a-e034-42fb-8327-b60c5bf9cdd2))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp b994142f-02ac-4881-9587-6d3df53c96d2))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp f144a97d-c3f0-423f-b0a9-3f7dbc42478b))
(pad "1" smd roundrect locked (at -1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 3 "Net-(C2-Pad1)") (tstamp 04f5865e-f449-4408-a0c8-771cccfcb129))
(pad "2" smd roundrect locked (at 1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 4 "Net-(C2-Pad2)") (tstamp 71c77456-1405-42e3-95ed-69e629de0558))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_Tantalum_SMD:CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder" (layer "F.Cu")
(tedit 5B301BBE) (tstamp 00000000-0000-0000-0000-00005db72be0)
(at 41.679 62.1538 180)
(descr "Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator")
(tags "capacitor tantalum")
(path "/00000000-0000-0000-0000-00005db82c74")
(attr smd)
(fp_text reference "C3" (at 2.9718 -0.0127 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 3b838d52-596d-4e4d-a6ac-e4c8e7621137)
)
(fp_text value "22µ" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cbdcaa78-3bbc-413f-91bf-2709119373ce)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 1e1b062d-fad0-427c-a622-c5b8a80b5268)
)
(fp_line (start -2.485 0.935) (end 1.6 0.935) (layer "F.SilkS") (width 0.12) (tstamp 5038e144-5119-49db-b6cf-f7c345f1cf03))
(fp_line (start 1.6 -0.935) (end -2.485 -0.935) (layer "F.SilkS") (width 0.12) (tstamp 54365317-1355-4216-bb75-829375abc4ec))
(fp_line (start -2.485 -0.935) (end -2.485 0.935) (layer "F.SilkS") (width 0.12) (tstamp ac264c30-3e9a-4be2-b97a-9949b68bd497))
(fp_line (start -2.48 1.05) (end -2.48 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 2e642b3e-a476-4c54-9a52-dcea955640cd))
(fp_line (start 2.48 -1.05) (end 2.48 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 30f15357-ce1d-48b9-93dc-7d9b1b2aa048))
(fp_line (start -2.48 -1.05) (end 2.48 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 87371631-aa02-498a-998a-09bdb74784c1))
(fp_line (start 2.48 1.05) (end -2.48 1.05) (layer "F.CrtYd") (width 0.05) (tstamp d8603679-3e7b-4337-8dbc-1827f5f54d8a))
(fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer "F.Fab") (width 0.1) (tstamp 5fc27c35-3e1c-4f96-817c-93b5570858a6))
(fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp a3e4f0ae-9f86-49e9-b386-ed8b42e012fb))
(fp_line (start -1.6 0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp a690fc6c-55d9-47e6-b533-faa4b67e20f3))
(fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp c144caa5-b0d4-4cef-840a-d4ad178a2102))
(fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer "F.Fab") (width 0.1) (tstamp efeac2a2-7682-4dc7-83ee-f6f1b23da506))
(pad "1" smd roundrect locked (at -1.4375 0 180) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185)
(net 11 "+3V3") (tstamp 6a45789b-3855-401f-8139-3c734f7f52f9))
(pad "2" smd roundrect locked (at 1.4375 0 180) (size 1.575 1.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.185185)
(net 2 "GND") (tstamp 6c9b793c-e74d-4754-a2c0-901e73b26f1c))
(model "${KISYS3DMOD}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-18_Kemet-A.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tedit 5DB6D0EA) (tstamp 00000000-0000-0000-0000-00005db72e54)
(at 53.5686 45.7708)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(path "/00000000-0000-0000-0000-00005db6b3f3")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "J5" (at 0 1.5748) (layer "F.SilkS") hide
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 0147f16a-c952-4891-8f53-a9fb8cddeb8d)
)
(fp_text value "4" (at 0.9144 1.2192) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp d1262c4d-2245-4c4f-8f35-7bb32cd9e21e)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d22e95aa-f3db-4fbc-a331-048a2523233e)
)
(pad "1" smd rect locked (at 0 -0.26162) (size 1.5 2) (layers "F.Cu" "F.Mask")
(net 16 "Net-(J5-Pad1)") (tstamp 0d0bb7b2-a6e5-46d2-9492-a1aa6e5a7b2f))
)
(footprint "TestPoint:TestPoint_Pad_D1.5mm" (layer "F.Cu")
(tedit 5DB6D276) (tstamp 00000000-0000-0000-0000-00005db7323b)
(at 52.512 48.5902)
(descr "SMD pad as test Point, diameter 1.5mm")
(tags "test point SMD pad")
(path "/00000000-0000-0000-0000-00005db71169")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "J8" (at 0 -1.648) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 58dc14f9-c158-4824-a84e-24a6a482a7a4)
)
(fp_text value "+" (at 1.48844 -0.5588) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp f976e2cc-36f9-4479-a816-2c74d1d5da6f)
)
(fp_text user "${REFERENCE}" (at 0 -1.65) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b635b16e-60bb-4b3e-9fc3-47d34eef8381)
)
(pad "1" smd rect locked (at -0.01016 0) (size 2 1.5) (layers "F.Cu" "F.Mask")
(net 11 "+3V3") (tstamp 13475e15-f37c-4de8-857e-1722b0c39513))
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (layer "F.Cu")
(tedit 5B36C52B) (tstamp 00000000-0000-0000-0000-00005db73820)
(at 46.5455 62.1792 180)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(path "/00000000-0000-0000-0000-00005db5c967")
(attr smd)
(fp_text reference "C1" (at 0.5715 1.4732) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 43891a3c-749f-498d-ba99-685a27689b0d)
)
(fp_text value "100n" (at 0 1.65) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cbc539d2-6a10-4052-9b7a-f10326dcac67)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 909b030b-fa1a-4fe8-b1ee-422b4d9e23cf)
)
(fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer "F.SilkS") (width 0.12) (tstamp a501555e-bbc7-4b58-ad89-28a0cd3dd6d0))
(fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer "F.SilkS") (width 0.12) (tstamp db83d0af-e085-4050-8496-fa2ebdecbd62))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 0c30a4be-5679-499f-8c5b-5f3024f9d6cf))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4dc6088c-89a5-4db7-b3ae-db4b6396ad49))
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 936e2ca6-11ae-4f42-9128-52bb329f3d21))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer "F.CrtYd") (width 0.05) (tstamp ebadd2a5-21ab-4a7e-b5bc-6f737367e560))
(fp_line (start 1 -0.6) (end 1 0.6) (layer "F.Fab") (width 0.1) (tstamp 2f3deced-880d-4075-a81b-95c62da5b94d))
(fp_line (start 1 0.6) (end -1 0.6) (layer "F.Fab") (width 0.1) (tstamp 3cfcbcc7-4f45-46ab-82a8-c414c7972161))
(fp_line (start -1 -0.6) (end 1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 4d609e7c-74c9-4ae9-a26d-946ff00c167d))
(fp_line (start -1 0.6) (end -1 -0.6) (layer "F.Fab") (width 0.1) (tstamp 786b6072-5772-4bc1-8eeb-6c4e19f2a91b))
(pad "1" smd roundrect locked (at -1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 1 "Net-(C1-Pad1)") (tstamp b60c50d1-225e-415c-8712-7acb5e3dc8ea))
(pad "2" smd roundrect locked (at 1.025 0 180) (size 1.15 1.4) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.217391)
(net 2 "GND") (tstamp 9a9f2d82-f64d-4264-8bec-c182528fc4de))
(model "${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "TestPoint:TestPoint_Pad_D1.0mm" (layer "F.Cu")
(tedit 5A0F774F) (tstamp 00000000-0000-0000-0000-00005db74203)
(at 42.799 57.5056)
(descr "SMD pad as test Point, diameter 1.0mm")
(tags "test point SMD pad")
(path "/00000000-0000-0000-0000-00005db75760")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "J13" (at 0 -1.448) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 55992e35-fe7b-468a-9b7a-1e4dc931b904)
)
(fp_text value "15" (at -1.3208 0.8636) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp a06e8e78-f567-42e6-b645-013b1073ca31)
)
(fp_text user "${REFERENCE}" (at 0 -1.45) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d35483a-0b12-46cc-b9f2-896fd6831779)
)
(fp_circle (center 0 0) (end 0 0.7) (layer "F.SilkS") (width 0.12) (fill none) (tstamp ec9e24d8-d1c5-40e2-9812-dc315d05f470))
(fp_circle (center 0 0) (end 1 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 9702d639-3b1f-4825-8985-b32b9008503d))
(pad "1" smd circle locked (at 0 0) (size 1 1) (layers "F.Cu" "F.Mask")
(net 29 "Net-(J13-Pad1)") (tstamp 4e66a44f-7fa6-4e16-bf9b-62ec864301a5))
)
(footprint "Connector_PinHeader_2.00mm:PinHeader_1x08_P2.00mm_Vertical" (layer "B.Cu")
(tedit 5DB690E6) (tstamp 00000000-0000-0000-0000-00005db5bb90)
(at 53.5686 62.738 90)
(descr "Through hole straight pin header, 1x08, 2.00mm pitch, single row")
(tags "Through hole pin header THT 1x08 2.00mm single row")
(path "/00000000-0000-0000-0000-00005db5606b")
(attr through_hole)
(fp_text reference "IC1" (at 0 2.06 90) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp e857610b-4434-4144-b04e-43c1ebdc5ceb)
)
(fp_text value "CC1101" (at 0 -16.06 90) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 6c2e273e-743c-4f1e-a647-4171f8122550)
)
(fp_text user "${REFERENCE}" (at 0 -7 180) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp bdc7face-9f7c-4701-80bb-4cc144448db1)
)
(fp_line (start 1.5 -15.5) (end 1.5 1.5) (layer "B.CrtYd") (width 0.05) (tstamp 1bf544e3-5940-4576-9291-2464e95c0ee2))
(fp_line (start 1.5 1.5) (end -1.5 1.5) (layer "B.CrtYd") (width 0.05) (tstamp 3aaee4c4-dbf7-49a5-a620-9465d8cc3ae7))
(fp_line (start -1.5 1.5) (end -1.5 -15.5) (layer "B.CrtYd") (width 0.05) (tstamp 42713045-fffd-4b2d-ae1e-7232d705fb12))
(fp_line (start -1.5 -15.5) (end 1.5 -15.5) (layer "B.CrtYd") (width 0.05) (tstamp c0515cd2-cdaa-467e-8354-0f6eadfa35c9))
(fp_line (start -1 0.5) (end -0.5 1) (layer "B.Fab") (width 0.1) (tstamp 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2))
(fp_line (start -0.5 1) (end 1 1) (layer "B.Fab") (width 0.1) (tstamp 666713b0-70f4-42df-8761-f65bc212d03b))
(fp_line (start -1 -15) (end -1 0.5) (layer "B.Fab") (width 0.1) (tstamp 7aed3a71-054b-4aaa-9c0a-030523c32827))
(fp_line (start 1 1) (end 1 -15) (layer "B.Fab") (width 0.1) (tstamp 7dc880bc-e7eb-4cce-8d8c-0b65a9dd788e))
(fp_line (start 1 -15) (end -1 -15) (layer "B.Fab") (width 0.1) (tstamp 9157f4ae-0244-4ff1-9f73-3cb4cbb5f280))
(pad "1" smd circle locked (at 0 0 90) (size 1.35 1.35) (layers "B.Cu" "B.Paste" "B.Mask")
(net 11 "+3V3") (tstamp 97fe9c60-586f-4895-8504-4d3729f5f81a))
(pad "2" smd oval locked (at 0 -2 90) (size 1.35 1.35) (layers "B.Cu" "B.Paste" "B.Mask")
(net 2 "GND") (tstamp 922058ca-d09a-45fd-8394-05f3e2c1e03a))
(pad "3" smd oval locked (at 0 -4 90) (size 1.35 1.35) (layers "B.Cu" "B.Paste" "B.Mask")
(net 10 "/MOSI") (tstamp 0f54db53-a272-4955-88fb-d7ab00657bb0))
(pad "4" smd oval locked (at 0 -6 90) (size 1.35 1.35) (layers "B.Cu" "B.Paste" "B.Mask")
(net 9 "/SCK") (tstamp 80094b70-85ab-4ff6-934b-60d5ee65023a))
(pad "5" smd oval locked (at 0 -8 90) (size 1.35 1.35) (layers "B.Cu" "B.Paste" "B.Mask")
(net 8 "/MISO") (tstamp d4a1d3c4-b315-4bec-9220-d12a9eab51e0))
(pad "6" smd oval locked (at 0 -10 90) (size 1.35 1.35) (layers "B.Cu" "B.Paste" "B.Mask")
(net 7 "Net-(IC1-Pad6)") (tstamp bfc0aadc-38cf-466e-a642-68fdc3138c78))
(pad "7" smd oval locked (at 0 -12 90) (size 1.35 1.35) (layers "B.Cu" "B.Paste" "B.Mask")
(net 6 "/GDO0") (tstamp 6441b183-b8f2-458f-a23d-60e2b1f66dd6))
(pad "8" smd oval locked (at 0 -14 90) (size 1.35 1.35) (layers "B.Cu" "B.Paste" "B.Mask")
(net 5 "/CS") (tstamp 31e08896-1992-4725-96d9-9d2728bca7a3))
)
(gr_line (start 38.1 63.5) (end 38.1 44.45) (layer "Edge.Cuts") (width 0.12) (tstamp 00000000-0000-0000-0000-00005db5bf41))
(gr_line (start 55.118 63.5) (end 38.1 63.5) (layer "Edge.Cuts") (width 0.12) (tstamp 16a9ae8c-3ad2-439b-8efe-377c994670c7))
(gr_line (start 55.118 44.45) (end 55.118 63.5) (layer "Edge.Cuts") (width 0.12) (tstamp db36f6e3-e72a-487f-bda9-88cc84536f62))
(gr_line (start 38.1 44.45) (end 55.118 44.45) (layer "Edge.Cuts") (width 0.12) (tstamp e4c6fdbb-fdc7-4ad4-a516-240d84cdc120))
(gr_text "CC BY-NC-SA 4.0" (at 49.657 58.9915) (layer "B.SilkS") (tstamp b1c649b1-f44d-46c7-9dea-818e75a1b87e)
(effects (font (size 0.7 0.7) (thickness 0.1)) (justify mirror))
)
(gr_text "328RFStamp\n(c) 2019 jp112sdl" (at 47.625 47.6885) (layer "B.SilkS") (tstamp f3628265-0155-43e2-a467-c40ff783e265)
(effects (font (size 1 1) (thickness 0.2)) (justify mirror))
)
(gr_text "RST RX TX + -" (at 40.386 57.2516 90) (layer "F.SilkS") (tstamp 6595b9c7-02ee-4647-bde5-6b566e35163e)
(effects (font (size 0.6 0.6) (thickness 0.075)) (justify left))
)
(segment (start 46.0728 60.6815) (end 47.5705 62.1792) (width 0.25) (layer "F.Cu") (net 1) (tstamp 182b2d54-931d-49d6-9f39-60a752623e36))
(segment (start 42.994 52.7241) (end 44.1193 52.7241) (width 0.25) (layer "F.Cu") (net 1) (tstamp 5114c7bf-b955-49f3-a0a8-4b954c81bde0))
(segment (start 44.1193 52.7241) (end 44.1193 55.5188) (width 0.25) (layer "F.Cu") (net 1) (tstamp 789ca812-3e0c-4a3f-97bc-a916dd9bce80))
(segment (start 44.1193 55.5188) (end 44.5711 55.9706) (width 0.25) (layer "F.Cu") (net 1) (tstamp e6b860cc-cb76-4220-acfb-68f1eb348bfa))
(segment (start 45.7436 60.6815) (end 46.0728 60.6815) (width 0.25) (layer "F.Cu") (net 1) (tstamp f202141e-c20d-4cac-b016-06a44f2ecce8))
(via (at 44.5711 55.9706) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 2dc272bd-3aa2-45b5-889d-1d3c8aac80f8))
(via (at 45.7436 60.6815) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 6c2d26bc-6eca-436c-8025-79f817bf57d6))
(segment (start 44.5711 59.509) (end 44.5711 55.9706) (width 0.25) (layer "B.Cu") (net 1) (tstamp a17904b9-135e-4dae-ae20-401c7787de72))
(segment (start 45.7436 60.6815) (end 44.5711 59.509) (width 0.25) (layer "B.Cu") (net 1) (tstamp cdfb07af-801b-44ba-8c30-d021a6ad3039))
(segment (start 49.7122 59.9902) (end 50.5886 59.9902) (width 0.25) (layer "F.Cu") (net 2) (tstamp 099096e4-8c2a-4d84-a16f-06b4b6330e7a))
(segment (start 44.7204 62.1792) (end 44.7204 62.4214) (width 0.25) (layer "F.Cu") (net 2) (tstamp 0e1ed1c5-7428-4dc7-b76e-49b2d5f8177d))
(segment (start 50.3687 54.0587) (end 50.0845 53.7745) (width 0.25) (layer "F.Cu") (net 2) (tstamp 14769dc5-8525-4984-8b15-a734ee247efa))
(segment (start 44.7204 62.4214) (end 43.982 63.1598) (width 0.25) (layer "F.Cu") (net 2) (tstamp 14c51520-6d91-4098-a59a-5121f2a898f7))
(segment (start 50.0845 53.7745) (end 49.3264 53.0164) (width 0.25) (layer "F.Cu") (net 2) (tstamp 19c56563-5fe3-442a-885b-418dbc2421eb))
(segment (start 42.0624 48.5902) (end 42.0624 49.6655) (width 0.25) (layer "F.Cu") (net 2) (tstamp 1e518c2a-4cb7-4599-a1fa-5b9f847da7d3))
(segment (start 49.3264 53.0164) (end 49.3264 50.4773) (width 0.25) (layer "F.Cu") (net 2) (tstamp 21ae9c3a-7138-444e-be38-56a4842ab594))
(segment (start 43.982 63.1598) (end 41.2475 63.1598) (width 0.25) (layer "F.Cu") (net 2) (tstamp 2d67a417-188f-4014-9282-000265d80009))
(segment (start 41.8687 53.4115) (end 41.8687 49.8592) (width 0.25) (layer "F.Cu") (net 2) (tstamp 34a74736-156e-4bf3-9200-cd137cfa59da))
(segment (start 45.5205 62.1792) (end 44.7204 62.1792) (width 0.25) (layer "F.Cu") (net 2) (tstamp 477311b9-8f81-40c8-9c55-fd87e287247a))
(segment (start 50.3687 52.7241) (end 50.3687 53.4903) (width 0.25) (layer "F.Cu") (net 2) (tstamp 5bcace5d-edd0-4e19-92d0-835e43cf8eb2))
(segment (start 40.4831 48.8442) (end 40.7371 48.5902) (width 0.25) (layer "F.Cu") (net 2) (tstamp 6284122b-79c3-4e04-925e-3d32cc3ec077))
(segment (start 42.994 53.5241) (end 41.9813 53.5241) (width 0.25) (layer "F.Cu") (net 2) (tstamp 644ae9fc-3c8e-4089-866e-a12bf371c3e9))
(segment (start 39.116 48.8442) (end 40.4831 48.8442) (width 0.25) (layer "F.Cu") (net 2) (tstamp 67763d19-f622-4e1e-81e5-5b24da7c3f99))
(segment (start 51.494 54.3241) (end 50.3687 54.3241) (width 0.25) (layer "F.Cu") (net 2) (tstamp 6ec113ca-7d27-4b14-a180-1e5e2fd1c167))
(segment (start 41.2475 63.1598) (end 40.2415 62.1538) (width 0.25) (layer "F.Cu") (net 2) (tstamp 84e5506c-143e-495f-9aa4-d3a71622f213))
(segment (start 41.9813 53.5241) (end 41.8687 53.4115) (width 0.25) (layer "F.Cu") (net 2) (tstamp 87d7448e-e139-4209-ae0b-372f805267da))
(segment (start 44.7204 61.3191) (end 44.7204 62.1792) (width 0.25) (layer "F.Cu") (net 2) (tstamp 9cb12cc8-7f1a-4a01-9256-c119f11a8a02))
(segment (start 49.3866 59.6646) (end 49.7122 59.9902) (width 0.25) (layer "F.Cu") (net 2) (tstamp a13ab237-8f8d-4e16-8c47-4440653b8534))
(segment (start 50.3687 53.4903) (end 50.0845 53.7745) (width 0.25) (layer "F.Cu") (net 2) (tstamp bd065eaf-e495-4837-bdb3-129934de1fc7))
(segment (start 44.5329 61.1316) (end 44.7204 61.3191) (width 0.25) (layer "F.Cu") (net 2) (tstamp c7e7067c-5f5e-48d8-ab59-df26f9b35863))
(segment (start 51.494 52.7241) (end 50.3687 52.7241) (width 0.25) (layer "F.Cu") (net 2) (tstamp cb24efdd-07c6-4317-9277-131625b065ac))
(segment (start 41.8687 49.8592) (end 42.0624 49.6655) (width 0.25) (layer "F.Cu") (net 2) (tstamp d0d2eee9-31f6-44fa-8149-ebb4dc2dc0dc))
(segment (start 50.3687 54.3241) (end 50.3687 54.0587) (width 0.25) (layer "F.Cu") (net 2) (tstamp e43dbe34-ed17-4e35-a5c7-2f1679b3c415))
(segment (start 42.0624 48.5902) (end 40.7371 48.5902) (width 0.25) (layer "F.Cu") (net 2) (tstamp ee41cb8e-512d-41d2-81e1-3c50fff32aeb))
(via (at 44.5329 61.1316) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 3a52f112-cb97-43db-aaeb-20afe27664d7))
(via (at 49.3264 50.4773) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 41acfe41-fac7-432a-a7a3-946566e2d504))
(via (at 50.5886 59.9902) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 8087f566-a94d-4bbc-985b-e49ee7762296))
(via (at 50.0845 53.7745) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp f4eb0267-179f-46c9-b516-9bfb06bac1ba))
(segment (start 50.0845 53.7745) (end 50.7748 54.4648) (width 0.25) (layer "B.Cu") (net 2) (tstamp 0351df45-d042-41d4-ba35-88092c7be2fc))
(segment (start 51.5686 61.6107) (end 50.5886 60.6307) (width 0.25) (layer "B.Cu") (net 2) (tstamp 097edb1b-8998-4e70-b670-bba125982348))
(segment (start 50.7748 54.4648) (end 50.7748 55.8266) (width 0.25) (layer "B.Cu") (net 2) (tstamp 240e5dac-6242-47a5-bbef-f76d11c715c0))
(segment (start 45.9164 54.2383) (end 45.2777 54.2383) (width 0.25) (layer "B.Cu") (net 2) (tstamp 275aa44a-b61f-489f-9e2a-819a0fe0d1eb))
(segment (start 39.116 48.8442) (end 45.7584 48.8442) (width 0.25) (layer "B.Cu") (net 2) (tstamp 37e8181c-a81e-498b-b2e2-0aef0c391059))
(segment (start 47.0251 54.4968) (end 46.1749 54.4968) (width 0.25) (layer "B.Cu") (net 2) (tstamp 57c0c267-8bf9-4cc7-b734-d71a239ac313))
(segment (start 46.1749 54.4968) (end 45.9164 54.2383) (width 0.25) (layer "B.Cu") (net 2) (tstamp 5ca4be1c-537e-4a4a-b344-d0c8ffde8546))
(segment (start 45.7584 48.8442) (end 47.9218 51.0076) (width 0.25) (layer "B.Cu") (net 2) (tstamp 676efd2f-1c48-4786-9e4b-2444f1e8f6ff))
(segment (start 45.2777 54.2383) (end 43.8458 55.6702) (width 0.25) (layer "B.Cu") (net 2) (tstamp 6c67e4f6-9d04-4539-b356-b76e915ce848))
(segment (start 50.5886 56.0128) (end 48.5411 56.0128) (width 0.25) (layer "B.Cu") (net 2) (tstamp 7cee474b-af8f-4832-b07a-c43c1ab0b464))
(segment (start 48.5411 56.0128) (end 47.0251 54.4968) (width 0.25) (layer "B.Cu") (net 2) (tstamp 853ee787-6e2c-4f32-bc75-6c17337dd3d5))
(segment (start 47.9218 51.0076) (end 48.7961 51.0076) (width 0.25) (layer "B.Cu") (net 2) (tstamp 8d9a3ecc-539f-41da-8099-d37cea9c28e7))
(segment (start 50.5886 60.6307) (end 50.5886 59.9902) (width 0.25) (layer "B.Cu") (net 2) (tstamp 994b6220-4755-4d84-91b3-6122ac1c2c5e))
(segment (start 50.7748 55.8266) (end 50.5886 56.0128) (width 0.25) (layer "B.Cu") (net 2) (tstamp aa2ea573-3f20-43c1-aa99-1f9c6031a9aa))
(segment (start 43.8458 55.6702) (end 43.8458 60.4445) (width 0.25) (layer "B.Cu") (net 2) (tstamp b447dbb1-d38e-4a15-93cb-12c25382ea53))
(segment (start 51.5686 62.611) (end 51.5686 61.6107) (width 0.25) (layer "B.Cu") (net 2) (tstamp ca5a4651-0d1d-441b-b17d-01518ef3b656))
(segment (start 43.8458 60.4445) (end 44.5329 61.1316) (width 0.25) (layer "B.Cu") (net 2) (tstamp cfa5c16e-7859-460d-a0b8-cea7d7ea629c))
(segment (start 48.7961 51.0076) (end 49.3264 50.4773) (width 0.25) (layer "B.Cu") (net 2) (tstamp e472dac4-5b65-4920-b8b2-6065d140a69d))
(segment (start 50.5886 59.9902) (end 50.5886 56.0128) (width 0.25) (layer "B.Cu") (net 2) (tstamp f40d350f-0d3e-4f8a-b004-d950f2f8f1ba))
(segment (start 50.0335 62.2046) (end 50.0036 62.2046) (width 0.25) (layer "F.Cu") (net 3) (tstamp 101ef598-601d-400e-9ef6-d655fbb1dbfa))
(segment (start 54.0512 59.5122) (end 52.7259 59.5122) (width 0.25) (layer "F.Cu") (net 3) (tstamp 5b34a16c-5a14-4291-8242-ea6d6ac54372))
(segment (start 48.4852 60.6862) (end 48.4852 59.1168) (width 0.25) (layer "F.Cu") (net 3) (tstamp 65134029-dbd2-409a-85a8-13c2a33ff019))
(segment (start 47.644 58.4994) (end 43.3636 58.4994) (width 0.25) (layer "F.Cu") (net 3) (tstamp 6781326c-6e0d-4753-8f28-0f5c687e01f9))
(segment (start 48.4852 59.1168) (end 47.8678 58.4994) (width 0.25) (layer "F.Cu") (net 3) (tstamp 7f2301df-e4bc-479e-a681-cc59c9a2dbbb))
(segment (start 52.7259 59.5122) (end 50.0335 62.2046) (width 0.25) (layer "F.Cu") (net 3) (tstamp 7f52d787-caa3-4a92-b1b2-19d554dc29a4))
(segment (start 50.0036 62.2046) (end 48.4852 60.6862) (width 0.25) (layer "F.Cu") (net 3) (tstamp 98c78427-acd5-4f90-9ad6-9f61c4809aec))
(segment (start 47.8678 58.4994) (end 47.644 58.4994) (width 0.25) (layer "F.Cu") (net 3) (tstamp a8447faf-e0a0-4c4a-ae53-4d4b28669151))
(segment (start 43.3636 58.4994) (end 42.046 59.817) (width 0.25) (layer "F.Cu") (net 3) (tstamp c701ee8e-1214-4781-a973-17bef7b6e3eb))
(segment (start 47.644 57.3741) (end 47.644 58.4994) (width 0.25) (layer "F.Cu") (net 3) (tstamp c8029a4c-945d-42ca-871a-dd73ff50a1a3))
(segment (start 39.116 56.8442) (end 39.116 57.8445) (width 0.25) (layer "F.Cu") (net 4) (tstamp 35a9f71f-ba35-47f6-814e-4106ac36c51e))
(segment (start 39.996 58.7245) (end 39.996 59.817) (width 0.25) (layer "F.Cu") (net 4) (tstamp 9b3c58a7-a9b9-4498-abc0-f9f43e4f0292))
(segment (start 39.116 57.8445) (end 39.996 58.7245) (width 0.25) (layer "F.Cu") (net 4) (tstamp c094494a-f6f7-43fc-a007-4951484ddf3a))
(segment (start 46.6619 50.6173) (end 46.6619 53.3212) (width 0.25) (layer "F.Cu") (net 5) (tstamp 15fe8f3d-6077-4e0e-81d0-8ec3f4538981))
(segment (start 46.044 48.8741) (end 46.044 49.9994) (width 0.25) (layer "F.Cu") (net 5) (tstamp e1535036-5d36-405f-bb86-3819621c4f23))
(segment (start 46.044 49.9994) (end 46.6619 50.6173) (width 0.25) (layer "F.Cu") (net 5) (tstamp e40e8cef-4fb0-4fc3-be09-3875b2cc8469))
(via (at 46.6619 53.3212) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 5) (tstamp d9c6d5d2-0b49-49ba-a970-cd2c32f74c54))
(segment (start 39.5686 62.611) (end 39.5686 58.6736) (width 0.25) (layer "B.Cu") (net 5) (tstamp 814763c2-92e5-4a2c-941c-9bbd073f6e87))
(segment (start 44.921 53.3212) (end 46.6619 53.3212) (width 0.25) (layer "B.Cu") (net 5) (tstamp 82be7aae-5d06-4178-8c3e-98760c41b054))
(segment (start 39.5686 58.6736) (end 44.921 53.3212) (width 0.25) (layer "B.Cu") (net 5) (tstamp e65b62be-e01b-4688-a999-1d1be370c4ae))
(segment (start 50.044 57.3741) (end 50.044 55.2545) (width 0.25) (layer "F.Cu") (net 6) (tstamp a6b7df29-bcf8-46a9-b623-7eaac47f5110))
(via (at 50.044 55.2545) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 6) (tstamp 6fd4442e-30b3-428b-9306-61418a63d311))
(segment (start 45.0911 53.788) (end 46.103 53.788) (width 0.25) (layer "B.Cu") (net 6) (tstamp 20c315f4-1e4f-49aa-8d61-778a7389df7e))
(segment (start 48.4197 55.2545) (end 50.044 55.2545) (width 0.25) (layer "B.Cu") (net 6) (tstamp 27d56953-c620-4d5b-9c1c-e48bc3d9684a))
(segment (start 41.5686 57.3105) (end 45.0911 53.788) (width 0.25) (layer "B.Cu") (net 6) (tstamp 7a4ce4b3-518a-4819-b8b2-5127b3347c64))
(segment (start 46.103 53.788) (end 46.3615 54.0465) (width 0.25) (layer "B.Cu") (net 6) (tstamp 7e0a03ae-d054-4f76-a131-5c09b8dc1636))
(segment (start 41.5686 62.611) (end 41.5686 61.6107) (width 0.25) (layer "B.Cu") (net 6) (tstamp 8d0c1d66-35ef-4a53-a28f-436a11b54f42))
(segment (start 47.2117 54.0465) (end 48.4197 55.2545) (width 0.25) (layer "B.Cu") (net 6) (tstamp 9193c41e-d425-447d-b95c-6986d66ea01c))
(segment (start 41.5686 61.6107) (end 41.5686 57.3105) (width 0.25) (layer "B.Cu") (net 6) (tstamp a9b3f6e4-7a6d-4ae8-ad28-3d8458e0ca1a))
(segment (start 46.3615 54.0465) (end 47.2117 54.0465) (width 0.25) (layer "B.Cu") (net 6) (tstamp d6fb27cf-362d-4568-967c-a5bf49d5931b))
(segment (start 45.4863 53.8082) (end 45.6612 53.9831) (width 0.25) (layer "F.Cu") (net 8) (tstamp 0e8f7fc0-2ef2-4b90-9c15-8a3a601ee459))
(segment (start 44.444 49.8363) (end 45.6388 51.0311) (width 0.25) (layer "F.Cu") (net 8) (tstamp 29e058a7-50a3-43e5-81c3-bfee53da08be))
(segment (start 45.4863 52.8342) (end 45.4863 53.8082) (width 0.25) (layer "F.Cu") (net 8) (tstamp 382ca670-6ae8-4de6-90f9-f241d1337171))
(segment (start 44.444 48.8741) (end 44.444 49.8363) (width 0.25) (layer "F.Cu") (net 8) (tstamp 3fd54105-4b7e-4004-9801-76ec66108a22))
(segment (start 45.6388 51.0311) (end 45.6388 52.6817) (width 0.25) (layer "F.Cu") (net 8) (tstamp 5cf2db29-f7ab-499a-9907-cdeba64bf0f3))
(segment (start 45.6612 53.9831) (end 45.6612 55.0091) (width 0.25) (layer "F.Cu") (net 8) (tstamp b0906e10-2fbc-4309-a8b4-6fc4cd1a5490))
(segment (start 45.6388 52.6817) (end 45.4863 52.8342) (width 0.25) (layer "F.Cu") (net 8) (tstamp feb26ecb-9193-46ea-a41b-d09305bf0a3e))
(via (at 45.6612 55.0091) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 8) (tstamp be645d0f-8568-47a0-a152-e3ddd33563eb))
(segment (start 45.5686 61.6107) (end 45.8402 61.6107) (width 0.25) (layer "B.Cu") (net 8) (tstamp 0ce8d3ab-2662-4158-8a2a-18b782908fc5))
(segment (start 45.8402 61.6107) (end 46.5224 60.9285) (width 0.25) (layer "B.Cu") (net 8) (tstamp 29195ea4-8218-44a1-b4bf-466bee0082e4))
(segment (start 45.4249 55.2454) (end 45.6612 55.0091) (width 0.25) (layer "B.Cu") (net 8) (tstamp c9667181-b3c7-4b01-b8b4-baa29a9aea63))
(segment (start 46.5224 57.3772) (end 45.4249 56.2797) (width 0.25) (layer "B.Cu") (net 8) (tstamp cff34251-839c-4da9-a0ad-85d0fc4e32af))
(segment (start 46.5224 60.9285) (end 46.5224 57.3772) (width 0.25) (layer "B.Cu") (net 8) (tstamp d0fb0864-e79b-4bdc-8e8e-eed0cabe6d56))
(segment (start 45.4249 56.2797) (end 45.4249 55.2454) (width 0.25) (layer "B.Cu") (net 8) (tstamp d5b800ca-1ab6-4b66-b5f7-2dda5658b504))
(segment (start 45.5686 62.611) (end 45.5686 61.6107) (width 0.25) (layer "B.Cu") (net 8) (tstamp ebd06df3-d52b-4cff-99a2-a771df6d3733))
(segment (start 44.9359 52.7477) (end 44.9359 55.3095) (width 0.25) (layer "F.Cu") (net 9) (tstamp 173f6f06-e7d0-42ac-ab03-ce6b79b9eeee))
(segment (start 45.1695 52.5141) (end 44.9359 52.7477) (width 0.25) (layer "F.Cu") (net 9) (tstamp 2e842263-c0ba-46fd-a760-6624d4c78278))
(segment (start 44.287 50.3241) (end 45.1695 51.2066) (width 0.25) (layer "F.Cu") (net 9) (tstamp 309b3bff-19c8-41ec-a84d-63399c649f46))
(segment (start 44.9359 55.3095) (end 45.5962 55.9698) (width 0.25) (layer "F.Cu") (net 9) (tstamp 4632212f-13ce-4392-bc68-ccb9ba333770))
(segment (start 42.994 50.3241) (end 44.1193 50.3241) (width 0.25) (layer "F.Cu") (net 9) (tstamp 576c6616-e95d-4f1e-8ead-dea30fcdc8c2))
(segment (start 45.1695 51.2066) (end 45.1695 52.5141) (width 0.25) (layer "F.Cu") (net 9) (tstamp 8c0807a7-765b-4fa5-baaa-e09a2b610e6b))
(segment (start 44.1193 50.3241) (end 44.287 50.3241) (width 0.25) (layer "F.Cu") (net 9) (tstamp bd9595a1-04f3-4fda-8f1b-e65ad874edd3))
(segment (start 45.5962 55.9698) (end 46.1503 55.9698) (width 0.25) (layer "F.Cu") (net 9) (tstamp cb16d05e-318b-4e51-867b-70d791d75bea))
(via (at 46.1503 55.9698) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 9) (tstamp 89e83c2e-e90a-4a50-b278-880bac0cfb49))
(segment (start 47.5685 61.6107) (end 47.5686 61.6107) (width 0.25) (layer "B.Cu") (net 9) (tstamp 0325ec43-0390-4ae2-b055-b1ec6ce17b1c))
(segment (start 46.1503 55.9698) (end 47.5685 57.388) (width 0.25) (layer "B.Cu") (net 9) (tstamp 057af6bb-cf6f-4bfb-b0c0-2e92a2c09a47))
(segment (start 47.5686 62.611) (end 47.5686 61.6107) (width 0.25) (layer "B.Cu") (net 9) (tstamp 7b044939-8c4d-444f-b9e0-a15fcdeb5a86))
(segment (start 47.5685 57.388) (end 47.5685 61.6107) (width 0.25) (layer "B.Cu") (net 9) (tstamp 935f462d-8b1e-4005-9f1e-17f537ab1756))
(segment (start 46.0892 50.8446) (end 46.0892 52.8682) (width 0.25) (layer "F.Cu") (net 10) (tstamp 262f1ea9-0133-4b43-be36-456207ea857c))
(segment (start 45.9366 53.6216) (end 47.4009 55.0859) (width 0.25) (layer "F.Cu") (net 10) (tstamp 5edcefbe-9766-42c8-9529-28d0ec865573))
(segment (start 45.9366 53.0208) (end 45.9366 53.6216) (width 0.25) (layer "F.Cu") (net 10) (tstamp 721d1be9-236e-470b-ba69-f1cc6c43faf9))
(segment (start 45.244 48.8741) (end 45.244 49.9994) (width 0.25) (layer "F.Cu") (net 10) (tstamp a4f86a46-3bc8-4daa-9125-a63f297eb114))
(segment (start 45.244 49.9994) (end 46.0892 50.8446) (width 0.25) (layer "F.Cu") (net 10) (tstamp a5e521b9-814e-4853-a5ac-f158785c6269))
(segment (start 46.0892 52.8682) (end 45.9366 53.0208) (width 0.25) (layer "F.Cu") (net 10) (tstamp c1c799a0-3c93-493a-9ad7-8a0561bc69ee))
(segment (start 47.4009 55.0859) (end 47.4009 55.9396) (width 0.25) (layer "F.Cu") (net 10) (tstamp ec5c2062-3a41-4636-8803-069e60a1641a))
(via (at 47.4009 55.9396) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp 658dad07-97fd-466c-8b49-21892ac96ea4))
(segment (start 47.4009 55.9396) (end 49.5686 58.1073) (width 0.25) (layer "B.Cu") (net 10) (tstamp 22999e73-da32-43a5-9163-4b3a41614f25))
(segment (start 49.5686 58.1073) (end 49.5686 61.6107) (width 0.25) (layer "B.Cu") (net 10) (tstamp 6e68f0cd-800e-4167-9553-71fc59da1eeb))
(segment (start 49.5686 62.611) (end 49.5686 61.6107) (width 0.25) (layer "B.Cu") (net 10) (tstamp 81a15393-727e-448b-a777-b18773023d89))
(segment (start 50.1464 51.9241) (end 50.0747 51.9958) (width 0.25) (layer "F.Cu") (net 11) (tstamp 009a4fb4-fcc0-4623-ae5d-c1bae3219583))
(segment (start 41.5206 60.8975) (end 43.1165 60.8975) (width 0.25) (layer "F.Cu") (net 11) (tstamp 071522c0-d0ed-49b9-906e-6295f67fb0dc))
(segment (start 52.6193 53.5241) (end 52.6193 51.9241) (width 0.25) (layer "F.Cu") (net 11) (tstamp 37f31dec-63fc-4634-a141-5dc5d2b60fe4))
(segment (start 41.1279 60.5048) (end 41.5206 60.8975) (width 0.25) (layer "F.Cu") (net 11) (tstamp 4e315e69-0417-463a-8b7f-469a08d1496e))
(segment (start 53.0555 61.2027) (end 52.0536 62.2046) (width 0.25) (layer "F.Cu") (net 11) (tstamp 592f25e6-a01b-47fd-8172-3da01117d00a))
(segment (start 44.3494 59.6646) (end 43.1165 60.8975) (width 0.25) (layer "F.Cu") (net 11) (tstamp 597a11f2-5d2c-4a65-ac95-38ad106e1367))
(segment (start 40.6777 52.4059) (end 40.6777 57.2648) (width 0.25) (layer "F.Cu") (net 11) (tstamp 59ec3156-036e-4049-89db-91a9dd07095f))
(segment (start 41.1279 57.715) (end 41.1279 60.5048) (width 0.25) (layer "F.Cu") (net 11) (tstamp 6a2b20ae-096c-4d9f-92f8-2087c865914f))
(segment (start 51.494 53.5241) (end 52.6193 53.5241) (width 0.25) (layer "F.Cu") (net 11) (tstamp 88668202-3f0b-4d07-84d4-dcd790f57272))
(segment (start 44.4027 51.4075) (end 44.4027 51.4656) (width 0.25) (layer "F.Cu") (net 11) (tstamp 8bc2c25a-a1f1-4ce8-b96a-a4f8f4c35079))
(segment (start 51.494 51.9241) (end 50.1464 51.9241) (width 0.25) (layer "F.Cu") (net 11) (tstamp 91c1eb0a-67ae-4ef0-95ce-d060a03a7313))
(segment (start 39.116 50.8442) (end 40.6777 52.4059) (width 0.25) (layer "F.Cu") (net 11) (tstamp 926001fd-2747-4639-8c0f-4fc46ff7218d))
(segment (start 44.1193 51.1241) (end 44.4027 51.4075) (width 0.25) (layer "F.Cu") (net 11) (tstamp 9cbf35b8-f4d3-42a3-bb16-04ffd03fd8fd))
(segment (start 43.1165 60.8975) (end 43.1165 62.1538) (width 0.25) (layer "F.Cu") (net 11) (tstamp a29f8df0-3fae-4edf-8d9c-bd5a875b13e3))
(segment (start 52.5018 48.5902) (end 52.5018 49.6655) (width 0.25) (layer "F.Cu") (net 11) (tstamp b1ddb058-f7b2-429c-9489-f4e2242ad7e5))
(segment (start 52.5067 51.9241) (end 52.6193 51.9241) (width 0.25) (layer "F.Cu") (net 11) (tstamp c106154f-d948-43e5-abfa-e1b96055d91b))
(segment (start 51.494 51.9241) (end 52.5067 51.9241) (width 0.25) (layer "F.Cu") (net 11) (tstamp c24d6ac8-802d-4df3-a210-9cb1f693e865))
(segment (start 42.994 51.1241) (end 44.1193 51.1241) (width 0.25) (layer "F.Cu") (net 11) (tstamp cf386a39-fc62-49dd-8ec5-e044f6bd67ce))
(segment (start 40.6777 57.2648) (end 41.1279 57.715) (width 0.25) (layer "F.Cu") (net 11) (tstamp d39d813e-3e64-490c-ba5c-a64bb5ad6bd0))
(segment (start 47.3366 59.6646) (end 44.3494 59.6646) (width 0.25) (layer "F.Cu") (net 11) (tstamp e3fc1e69-a11c-4c84-8952-fefb9372474e))
(segment (start 52.6193 51.9241) (end 52.6193 49.783) (width 0.25) (layer "F.Cu") (net 11) (tstamp eee16674-2d21-45b6-ab5e-d669125df26c))
(segment (start 52.6193 49.783) (end 52.5018 49.6655) (width 0.25) (layer "F.Cu") (net 11) (tstamp f449bd37-cc90-4487-aee6-2a20b8d2843a))
(via (at 50.0747 51.9958) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 70fb572d-d5ec-41e7-9482-63d4578b4f47))
(via (at 44.4027 51.4656) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 7afa54c4-2181-41d3-81f7-39efc497ecae))
(via (at 53.0555 61.2027) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp eae0ab9f-65b2-44d3-aba7-873c3227fba7))
(segment (start 47.106 51.4656) (end 47.6362 51.9958) (width 0.25) (layer "B.Cu") (net 11) (tstamp 20cca02e-4c4d-4961-b6b4-b40a1731b220))
(segment (start 52.1935 54.1146) (end 52.1935 60.3407) (width 0.25) (layer "B.Cu") (net 11) (tstamp 240c10af-51b5-420e-a6f4-a2c8f5db1db5))
(segment (start 44.4027 51.4656) (end 40.7377 51.4656) (width 0.25) (layer "B.Cu") (net 11) (tstamp 2846428d-39de-4eae-8ce2-64955d56c493))
(segment (start 50.0747 51.9958) (end 52.1935 54.1146) (width 0.25) (layer "B.Cu") (net 11) (tstamp 2d697cf0-e02e-4ed1-a048-a704dab0ee43))
(segment (start 39.116 50.8442) (end 40.1163 50.8442) (width 0.25) (layer "B.Cu") (net 11) (tstamp 2dc54bac-8640-4dd7-b8ed-3c7acb01a8ea))
(segment (start 53.0555 61.2027) (end 53.0555 62.0979) (width 0.25) (layer "B.Cu") (net 11) (tstamp 40b14a16-fb82-4b9d-89dd-55cd98abb5cc))
(segment (start 40.7377 51.4656) (end 40.1163 50.8442) (width 0.25) (layer "B.Cu") (net 11) (tstamp 4fa10683-33cd-4dcd-8acc-2415cd63c62a))
(segment (start 52.1935 60.3407) (end 53.0555 61.2027) (width 0.25) (layer "B.Cu") (net 11) (tstamp 503dbd88-3e6b-48cc-a2ea-a6e28b52a1f7))
(segment (start 47.6362 51.9958) (end 50.0747 51.9958) (width 0.25) (layer "B.Cu") (net 11) (tstamp 5487601b-81d3-4c70-8f3d-cf9df9c63302))
(segment (start 53.0555 62.0979) (end 53.5686 62.611) (width 0.25) (layer "B.Cu") (net 11) (tstamp c09938fd-06b9-4771-9f63-2311626243b3))
(segment (start 44.4027 51.4656) (end 47.106 51.4656) (width 0.25) (layer "B.Cu") (net 11) (tstamp cb614b23-9af3-4aec-bed8-c1374e001510))
(segment (start 50.7721 45.5117) (end 50.7721 46.837) (width 0.25) (layer "F.Cu") (net 12) (tstamp 609b9e1b-4e3b-42b7-ac76-a62ec4d0e7c7))
(segment (start 50.044 47.5651) (end 50.7721 46.837) (width 0.25) (layer "F.Cu") (net 12) (tstamp b7867831-ef82-4f33-a926-59e5c1c09b91))
(segment (start 50.044 48.8741) (end 50.044 47.5651) (width 0.25) (layer "F.Cu") (net 12) (tstamp e54e5e19-1deb-49a9-8629-617db8e434c0))
(segment (start 46.2594 46.0233) (end 46.2594 45.5117) (width 0.25) (layer "F.Cu") (net 13) (tstamp 065b9982-55f2-4822-977e-07e8a06e7b35))
(segment (start 48.444 48.8741) (end 48.444 47.7488) (width 0.25) (layer "F.Cu") (net 13) (tstamp 25e5aa8e-2696-44a3-8d3c-c2c53f2923cf))
(segment (start 45.1841 45.5117) (end 46.2594 45.5117) (width 0.25) (layer "F.Cu") (net 13) (tstamp 6bf05d19-ba3e-4ba6-8a6f-4e0bc45ea3b2))
(segment (start 48.444 47.7488) (end 47.9849 47.7488) (width 0.25) (layer "F.Cu") (net 13) (tstamp a24ddb4f-c217-42ca-b6cb-d12da84fb2b9))
(segment (start 47.9849 47.7488) (end 46.2594 46.0233) (width 0.25) (layer "F.Cu") (net 13) (tstamp a6ccc556-da88-4006-ae1a-cc35733efef3))
(segment (start 43.4628 45.5092) (end 43.7678 45.8142) (width 0.25) (layer "F.Cu") (net 14) (tstamp 970e0f64-111f-41e3-9f5a-fb0d0f6fa101))
(segment (start 47.971 49.9994) (end 48.2499 50.2783) (width 0.25) (layer "F.Cu") (net 14) (tstamp a53767ed-bb28-4f90-abe0-e0ea734812a4))
(segment (start 47.644 48.8741) (end 47.644 49.9994) (width 0.25) (layer "F.Cu") (net 14) (tstamp dc2801a1-d539-4721-b31f-fe196b9f13df))
(segment (start 42.3875 45.5092) (end 43.4628 45.5092) (width 0.25) (layer "F.Cu") (net 14) (tstamp e4aa537c-eb9d-4dbb-ac87-fae46af42391))
(segment (start 47.644 49.9994) (end 47.971 49.9994) (width 0.25) (layer "F.Cu") (net 14) (tstamp f9403623-c00c-4b71-bc5c-d763ff009386))
(via (at 48.2499 50.2783) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 14) (tstamp 18b7e157-ae67-48ad-bd7c-9fef6fe45b22))
(via (at 43.7678 45.8142) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 14) (tstamp 5fc9acb6-6dbb-4598-825b-4b9e7c4c67c4))
(segment (start 43.7858 45.8142) (end 43.7678 45.8142) (width 0.25) (layer "B.Cu") (net 14) (tstamp 6d1d60ff-408a-47a7-892f-c5cf9ef6ca75))
(segment (start 48.2499 50.2783) (end 43.7858 45.8142) (width 0.25) (layer "B.Cu") (net 14) (tstamp b6135480-ace6-42b2-9c47-856ef57cded1))
(segment (start 39.591 45.5092) (end 40.6663 45.5092) (width 0.25) (layer "F.Cu") (net 15) (tstamp 0f31f11f-c374-4640-b9a4-07bbdba8d354))
(segment (start 41.742 47.1226) (end 40.6663 46.0469) (width 0.25) (layer "F.Cu") (net 15) (tstamp 7c04618d-9115-4179-b234-a8faf854ea92))
(segment (start 46.844 48.8741) (end 46.844 47.7488) (width 0.25) (layer "F.Cu") (net 15) (tstamp 998b7fa5-31a5-472e-9572-49d5226d6098))
(segment (start 46.844 47.7488) (end 46.2178 47.1226) (width 0.25) (layer "F.Cu") (net 15) (tstamp e4d2f565-25a0-48c6-be59-f4bf31ad2558))
(segment (start 46.2178 47.1226) (end 41.742 47.1226) (width 0.25) (layer "F.Cu") (net 15) (tstamp e502d1d5-04b0-4d4b-b5c3-8c52d09668e7))
(segment (start 40.6663 46.0469) (end 40.6663 45.5092) (width 0.25) (layer "F.Cu") (net 15) (tstamp e67b9f8c-019b-4145-98a4-96545f6bb128))
(segment (start 53.5686 46.8345) (end 54.0512 47.3171) (width 0.25) (layer "F.Cu") (net 16) (tstamp 109caac1-5036-4f23-9a66-f569d871501b))
(segment (start 53.5686 45.5092) (end 53.5686 46.8345) (width 0.25) (layer "F.Cu") (net 16) (tstamp 19b0959e-a79b-43b2-a5ad-525ced7e9131))
(segment (start 54.0512 47.3171) (end 54.0512 50.5878) (width 0.25) (layer "F.Cu") (net 16) (tstamp 31540a7e-dc9e-4e4d-96b1-dab15efa5f4b))
(segment (start 47.9781 45.5117) (end 49.0534 45.5117) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8c1605f9-6c91-4701-96bf-e753661d5e23))
(segment (start 49.244 48.8741) (end 49.244 45.7023) (width 0.25) (layer "F.Cu") (net 17) (tstamp f1447ad6-651c-45be-a2d6-33bddf672c2c))
(segment (start 49.244 45.7023) (end 49.0534 45.5117) (width 0.25) (layer "F.Cu") (net 17) (tstamp f6c644f4-3036-41a6-9e14-2c08c079c6cd))
(segment (start 48.444 57.3741) (end 48.444 53.864) (width 0.25) (layer "F.Cu") (net 18) (tstamp b4300db7-1220-431a-b7c3-2edbdf8fa6fc))