-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharduino as isp shield.kicad_pcb
More file actions
1711 lines (1685 loc) · 141 KB
/
arduino as isp shield.kicad_pcb
File metadata and controls
1711 lines (1685 loc) · 141 KB
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 20171130) (host pcbnew "(5.1.9)-1")
(general
(thickness 1.6)
(drawings 32)
(tracks 73)
(zones 0)
(modules 17)
(nets 40)
)
(page A4)
(title_block
(date "lun. 30 mars 2015")
)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user hide)
(49 F.Fab user hide)
)
(setup
(last_trace_width 0.25)
(user_trace_width 0.4)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(via_size 0.6)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(edge_width 0.15)
(segment_width 0.15)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 4.064 4.064)
(pad_drill 3.048)
(pad_to_mask_clearance 0)
(aux_axis_origin 110.998 126.365)
(grid_origin 110.998 126.365)
(visible_elements 7FFFFFFF)
(pcbplotparams
(layerselection 0x010f0_ffffffff)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue false)
(plotinvisibletext false)
(padsonsilk true)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber"))
)
(net 0 "")
(net 1 /IOREF)
(net 2 /Reset)
(net 3 +5V)
(net 4 GND)
(net 5 /Vin)
(net 6 /A0)
(net 7 /A1)
(net 8 /A2)
(net 9 /A3)
(net 10 /AREF)
(net 11 /4)
(net 12 /2)
(net 13 "/1(Tx)")
(net 14 "/0(Rx)")
(net 15 "Net-(P5-Pad1)")
(net 16 "Net-(P6-Pad1)")
(net 17 "Net-(P7-Pad1)")
(net 18 "Net-(P8-Pad1)")
(net 19 "/13(SCK)")
(net 20 "Net-(P1-Pad1)")
(net 21 +3V3)
(net 22 "/12(MISO)")
(net 23 "/10(RESET)")
(net 24 "Net-(J1-Pad3)")
(net 25 "/11(MOSI)")
(net 26 /A4)
(net 27 /A5)
(net 28 /SCL)
(net 29 /SDA)
(net 30 "/9(LED_HB)")
(net 31 "/8(LED_ERR)")
(net 32 "/7(LED_PMODE)")
(net 33 /6)
(net 34 /5)
(net 35 /3)
(net 36 "Net-(D1-Pad2)")
(net 37 "Net-(D2-Pad2)")
(net 38 "Net-(D3-Pad2)")
(net 39 /VTARGET)
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net +3V3)
(add_net +5V)
(add_net "/0(Rx)")
(add_net "/1(Tx)")
(add_net "/10(RESET)")
(add_net "/11(MOSI)")
(add_net "/12(MISO)")
(add_net "/13(SCK)")
(add_net /2)
(add_net /3)
(add_net /4)
(add_net /5)
(add_net /6)
(add_net "/7(LED_PMODE)")
(add_net "/8(LED_ERR)")
(add_net "/9(LED_HB)")
(add_net /A0)
(add_net /A1)
(add_net /A2)
(add_net /A3)
(add_net /A4)
(add_net /A5)
(add_net /AREF)
(add_net /IOREF)
(add_net /Reset)
(add_net /SCL)
(add_net /SDA)
(add_net /VTARGET)
(add_net /Vin)
(add_net GND)
(add_net "Net-(D1-Pad2)")
(add_net "Net-(D2-Pad2)")
(add_net "Net-(D3-Pad2)")
(add_net "Net-(J1-Pad3)")
(add_net "Net-(P1-Pad1)")
(add_net "Net-(P5-Pad1)")
(add_net "Net-(P6-Pad1)")
(add_net "Net-(P7-Pad1)")
(add_net "Net-(P8-Pad1)")
)
(module Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical (layer F.Cu) (tedit 59FED5CC) (tstamp 5FD42E33)
(at 154.178 85.725 180)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(path /5FD97088)
(fp_text reference J3 (at 0 -2.33) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Conn_01x02_Male (at 0 4.87) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 4.35) (end 1.8 4.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12))
(fp_line (start 1.33 1.27) (end 1.33 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 1.27) (end -1.33 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 3.87) (end 1.33 3.87) (layer F.SilkS) (width 0.12))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 3.81) (end -1.27 3.81) (layer F.Fab) (width 0.1))
(fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer F.Fab) (width 0.1))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 1.27 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 GND))
(pad 1 thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 /VTARGET))
(model ${KISYS3DMOD}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder (layer F.Cu) (tedit 5F68FEEE) (tstamp 5FD41D0C)
(at 130.048 89.535 180)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(path /5FD5721F)
(attr smd)
(fp_text reference R3 (at 0.127 1.651) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 2k2 (at 0 1.65) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(pad 2 smd roundrect (at 1 0 180) (size 1.2 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2083325)
(net 38 "Net-(D3-Pad2)"))
(pad 1 smd roundrect (at -1 0 180) (size 1.2 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2083325)
(net 32 "/7(LED_PMODE)"))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder (layer F.Cu) (tedit 5F68FEEE) (tstamp 5FD41C3D)
(at 130.048 85.725 180)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(path /5FD558BB)
(attr smd)
(fp_text reference R2 (at 0 1.651) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 2k2 (at 0 1.65) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(pad 2 smd roundrect (at 1 0 180) (size 1.2 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2083325)
(net 37 "Net-(D2-Pad2)"))
(pad 1 smd roundrect (at -1 0 180) (size 1.2 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2083325)
(net 31 "/8(LED_ERR)"))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistor_SMD:R_0805_2012Metric_Pad1.20x1.40mm_HandSolder (layer F.Cu) (tedit 5F68FEEE) (tstamp 5FD41C6D)
(at 130.048 81.915 180)
(descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(path /5FD50F39)
(attr smd)
(fp_text reference R1 (at 0 1.651) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 2k2 (at 0 1.65) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -0.227064 0.735) (end 0.227064 0.735) (layer F.SilkS) (width 0.12))
(fp_line (start -0.227064 -0.735) (end 0.227064 -0.735) (layer F.SilkS) (width 0.12))
(fp_line (start 1 0.625) (end -1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.625) (end 1 0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.625) (end -1 -0.625) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(pad 2 smd roundrect (at 1 0 180) (size 1.2 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2083325)
(net 36 "Net-(D1-Pad2)"))
(pad 1 smd roundrect (at -1 0 180) (size 1.2 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2083325)
(net 30 "/9(LED_HB)"))
(model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5F68FEF1) (tstamp 5FD41C9F)
(at 124.968 89.535)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "LED handsolder")
(path /5FD5742F)
(attr smd)
(fp_text reference D3 (at 0 -1.65) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value RED (at 0 1.65) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.86 0.96) (end 1 0.96) (layer F.SilkS) (width 0.12))
(fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer F.SilkS) (width 0.12))
(fp_line (start 1 -0.96) (end -1.86 -0.96) (layer F.SilkS) (width 0.12))
(fp_line (start 1 0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.3) (end -1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start -0.7 -0.6) (end -1 -0.3) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.6) (end -0.7 -0.6) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(pad 2 smd roundrect (at 1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2173904347826087)
(net 38 "Net-(D3-Pad2)"))
(pad 1 smd roundrect (at -1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2173904347826087)
(net 4 GND))
(model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5F68FEF1) (tstamp 5FD41CD5)
(at 124.968 85.725)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "LED handsolder")
(path /5FD55A97)
(attr smd)
(fp_text reference D2 (at 0 -1.65) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value RED (at 0 1.65) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.86 0.96) (end 1 0.96) (layer F.SilkS) (width 0.12))
(fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer F.SilkS) (width 0.12))
(fp_line (start 1 -0.96) (end -1.86 -0.96) (layer F.SilkS) (width 0.12))
(fp_line (start 1 0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.3) (end -1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start -0.7 -0.6) (end -1 -0.3) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.6) (end -0.7 -0.6) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(pad 2 smd roundrect (at 1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2173904347826087)
(net 37 "Net-(D2-Pad2)"))
(pad 1 smd roundrect (at -1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2173904347826087)
(net 4 GND))
(model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5F68FEF1) (tstamp 5FD41C09)
(at 124.968 81.915)
(descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "LED handsolder")
(path /5FD51475)
(attr smd)
(fp_text reference D1 (at 0 -1.65) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value RED (at 0 1.65) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.86 0.96) (end 1 0.96) (layer F.SilkS) (width 0.12))
(fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer F.SilkS) (width 0.12))
(fp_line (start 1 -0.96) (end -1.86 -0.96) (layer F.SilkS) (width 0.12))
(fp_line (start 1 0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.3) (end -1 0.6) (layer F.Fab) (width 0.1))
(fp_line (start -0.7 -0.6) (end -1 -0.3) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.6) (end -0.7 -0.6) (layer F.Fab) (width 0.1))
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(pad 2 smd roundrect (at 1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2173904347826087)
(net 36 "Net-(D1-Pad2)"))
(pad 1 smd roundrect (at -1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.2173904347826087)
(net 4 GND))
(model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_IDC:IDC-Header_2x03_P2.54mm_Vertical (layer F.Cu) (tedit 5EAC9A07) (tstamp 5FD409F4)
(at 152.908 98.425)
(descr "Through hole IDC box header, 2x03, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0")
(tags "Through hole vertical IDC box header THT 2x03 2.54mm double row")
(path /5FD42FD9)
(fp_text reference J2 (at 1.27 -6.1) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value AVR-ISP-6 (at 1.27 11.18) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 6.22 -5.6) (end -3.68 -5.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.22 10.69) (end 6.22 -5.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.68 10.69) (end 6.22 10.69) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.68 -5.6) (end -3.68 10.69) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.68 0.5) (end -3.68 0) (layer F.SilkS) (width 0.12))
(fp_line (start -4.68 -0.5) (end -4.68 0.5) (layer F.SilkS) (width 0.12))
(fp_line (start -3.68 0) (end -4.68 -0.5) (layer F.SilkS) (width 0.12))
(fp_line (start -1.98 4.59) (end -3.29 4.59) (layer F.SilkS) (width 0.12))
(fp_line (start -1.98 4.59) (end -1.98 4.59) (layer F.SilkS) (width 0.12))
(fp_line (start -1.98 8.99) (end -1.98 4.59) (layer F.SilkS) (width 0.12))
(fp_line (start 4.52 8.99) (end -1.98 8.99) (layer F.SilkS) (width 0.12))
(fp_line (start 4.52 -3.91) (end 4.52 8.99) (layer F.SilkS) (width 0.12))
(fp_line (start -1.98 -3.91) (end 4.52 -3.91) (layer F.SilkS) (width 0.12))
(fp_line (start -1.98 0.49) (end -1.98 -3.91) (layer F.SilkS) (width 0.12))
(fp_line (start -3.29 0.49) (end -1.98 0.49) (layer F.SilkS) (width 0.12))
(fp_line (start -3.29 10.29) (end -3.29 -5.21) (layer F.SilkS) (width 0.12))
(fp_line (start 5.83 10.29) (end -3.29 10.29) (layer F.SilkS) (width 0.12))
(fp_line (start 5.83 -5.21) (end 5.83 10.29) (layer F.SilkS) (width 0.12))
(fp_line (start -3.29 -5.21) (end 5.83 -5.21) (layer F.SilkS) (width 0.12))
(fp_line (start -1.98 4.59) (end -3.18 4.59) (layer F.Fab) (width 0.1))
(fp_line (start -1.98 4.59) (end -1.98 4.59) (layer F.Fab) (width 0.1))
(fp_line (start -1.98 8.99) (end -1.98 4.59) (layer F.Fab) (width 0.1))
(fp_line (start 4.52 8.99) (end -1.98 8.99) (layer F.Fab) (width 0.1))
(fp_line (start 4.52 -3.91) (end 4.52 8.99) (layer F.Fab) (width 0.1))
(fp_line (start -1.98 -3.91) (end 4.52 -3.91) (layer F.Fab) (width 0.1))
(fp_line (start -1.98 0.49) (end -1.98 -3.91) (layer F.Fab) (width 0.1))
(fp_line (start -3.18 0.49) (end -1.98 0.49) (layer F.Fab) (width 0.1))
(fp_line (start -3.18 10.18) (end -3.18 -4.1) (layer F.Fab) (width 0.1))
(fp_line (start 5.72 10.18) (end -3.18 10.18) (layer F.Fab) (width 0.1))
(fp_line (start 5.72 -5.1) (end 5.72 10.18) (layer F.Fab) (width 0.1))
(fp_line (start -2.18 -5.1) (end 5.72 -5.1) (layer F.Fab) (width 0.1))
(fp_line (start -3.18 -4.1) (end -2.18 -5.1) (layer F.Fab) (width 0.1))
(fp_text user %R (at 1.27 2.54 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 6 thru_hole circle (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 GND))
(pad 4 thru_hole circle (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 25 "/11(MOSI)"))
(pad 2 thru_hole circle (at 2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 /VTARGET))
(pad 5 thru_hole circle (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 "/10(RESET)"))
(pad 3 thru_hole circle (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "/13(SCK)"))
(pad 1 thru_hole roundrect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (roundrect_rratio 0.1470588235294118)
(net 22 "/12(MISO)"))
(model ${KISYS3DMOD}/Connector_IDC.3dshapes/IDC-Header_2x03_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical (layer F.Cu) (tedit 5EAC9A07) (tstamp 5FD40CC1)
(at 130.048 98.425)
(descr "Through hole IDC box header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0")
(tags "Through hole vertical IDC box header THT 2x05 2.54mm double row")
(path /5FD436B4)
(fp_text reference J1 (at 1.27 -6.1) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value AVR-ISP-10 (at 1.27 16.26) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 6.22 -5.6) (end -3.68 -5.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.22 15.76) (end 6.22 -5.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.68 15.76) (end 6.22 15.76) (layer F.CrtYd) (width 0.05))
(fp_line (start -3.68 -5.6) (end -3.68 15.76) (layer F.CrtYd) (width 0.05))
(fp_line (start -4.68 0.5) (end -3.68 0) (layer F.SilkS) (width 0.12))
(fp_line (start -4.68 -0.5) (end -4.68 0.5) (layer F.SilkS) (width 0.12))
(fp_line (start -3.68 0) (end -4.68 -0.5) (layer F.SilkS) (width 0.12))
(fp_line (start -1.98 7.13) (end -3.29 7.13) (layer F.SilkS) (width 0.12))
(fp_line (start -1.98 7.13) (end -1.98 7.13) (layer F.SilkS) (width 0.12))
(fp_line (start -1.98 14.07) (end -1.98 7.13) (layer F.SilkS) (width 0.12))
(fp_line (start 4.52 14.07) (end -1.98 14.07) (layer F.SilkS) (width 0.12))
(fp_line (start 4.52 -3.91) (end 4.52 14.07) (layer F.SilkS) (width 0.12))
(fp_line (start -1.98 -3.91) (end 4.52 -3.91) (layer F.SilkS) (width 0.12))
(fp_line (start -1.98 3.03) (end -1.98 -3.91) (layer F.SilkS) (width 0.12))
(fp_line (start -3.29 3.03) (end -1.98 3.03) (layer F.SilkS) (width 0.12))
(fp_line (start -3.29 15.37) (end -3.29 -5.21) (layer F.SilkS) (width 0.12))
(fp_line (start 5.83 15.37) (end -3.29 15.37) (layer F.SilkS) (width 0.12))
(fp_line (start 5.83 -5.21) (end 5.83 15.37) (layer F.SilkS) (width 0.12))
(fp_line (start -3.29 -5.21) (end 5.83 -5.21) (layer F.SilkS) (width 0.12))
(fp_line (start -1.98 7.13) (end -3.18 7.13) (layer F.Fab) (width 0.1))
(fp_line (start -1.98 7.13) (end -1.98 7.13) (layer F.Fab) (width 0.1))
(fp_line (start -1.98 14.07) (end -1.98 7.13) (layer F.Fab) (width 0.1))
(fp_line (start 4.52 14.07) (end -1.98 14.07) (layer F.Fab) (width 0.1))
(fp_line (start 4.52 -3.91) (end 4.52 14.07) (layer F.Fab) (width 0.1))
(fp_line (start -1.98 -3.91) (end 4.52 -3.91) (layer F.Fab) (width 0.1))
(fp_line (start -1.98 3.03) (end -1.98 -3.91) (layer F.Fab) (width 0.1))
(fp_line (start -3.18 3.03) (end -1.98 3.03) (layer F.Fab) (width 0.1))
(fp_line (start -3.18 15.26) (end -3.18 -4.1) (layer F.Fab) (width 0.1))
(fp_line (start 5.72 15.26) (end -3.18 15.26) (layer F.Fab) (width 0.1))
(fp_line (start 5.72 -5.1) (end 5.72 15.26) (layer F.Fab) (width 0.1))
(fp_line (start -2.18 -5.1) (end 5.72 -5.1) (layer F.Fab) (width 0.1))
(fp_line (start -3.18 -4.1) (end -2.18 -5.1) (layer F.Fab) (width 0.1))
(fp_text user %R (at 1.27 5.08 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 10 thru_hole circle (at 2.54 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 GND))
(pad 8 thru_hole circle (at 2.54 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 GND))
(pad 6 thru_hole circle (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 GND))
(pad 4 thru_hole circle (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 GND))
(pad 2 thru_hole circle (at 2.54 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 39 /VTARGET))
(pad 9 thru_hole circle (at 0 10.16) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 22 "/12(MISO)"))
(pad 7 thru_hole circle (at 0 7.62) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 19 "/13(SCK)"))
(pad 5 thru_hole circle (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 23 "/10(RESET)"))
(pad 3 thru_hole circle (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 24 "Net-(J1-Pad3)"))
(pad 1 thru_hole roundrect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (roundrect_rratio 0.1470588235294118)
(net 25 "/11(MOSI)"))
(model ${KISYS3DMOD}/Connector_IDC.3dshapes/IDC-Header_2x05_P2.54mm_Vertical.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Socket_Arduino_Uno:Socket_Strip_Arduino_1x08 locked (layer F.Cu) (tedit 552168D2) (tstamp 551AF9EA)
(at 127.508 123.825)
(descr "Through hole socket strip")
(tags "socket strip")
(path /56D70129)
(fp_text reference P1 (at 8.89 -2.54) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Power (at 8.89 -4.064) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -1.75) (end -1.75 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 19.55 -1.75) (end 19.55 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.75) (end 19.55 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 1.75) (end 19.55 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.27 1.27) (end 19.05 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 19.05 1.27) (end 19.05 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 19.05 -1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 1.55) (end 0 1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -1.55) (end -1.55 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -1.55) (end -1.55 1.55) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole oval (at 0 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 20 "Net-(P1-Pad1)"))
(pad 2 thru_hole oval (at 2.54 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 1 /IOREF))
(pad 3 thru_hole oval (at 5.08 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 2 /Reset))
(pad 4 thru_hole oval (at 7.62 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 21 +3V3))
(pad 5 thru_hole oval (at 10.16 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 3 +5V))
(pad 6 thru_hole oval (at 12.7 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 4 GND))
(pad 7 thru_hole oval (at 15.24 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 4 GND))
(pad 8 thru_hole oval (at 17.78 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 5 /Vin))
(model ${KIPRJMOD}/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x08.wrl
(offset (xyz 8.889999866485596 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module Socket_Arduino_Uno:Socket_Strip_Arduino_1x06 locked (layer F.Cu) (tedit 552168D6) (tstamp 551AF9FF)
(at 150.368 123.825)
(descr "Through hole socket strip")
(tags "socket strip")
(path /56D70DD8)
(fp_text reference P2 (at 6.604 -2.54) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Analog (at 6.604 -4.064) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -1.75) (end -1.75 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 14.45 -1.75) (end 14.45 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.75) (end 14.45 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 1.75) (end 14.45 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.27 1.27) (end 13.97 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 13.97 1.27) (end 13.97 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 13.97 -1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 1.55) (end 0 1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -1.55) (end -1.55 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -1.55) (end -1.55 1.55) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole oval (at 0 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 6 /A0))
(pad 2 thru_hole oval (at 2.54 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 7 /A1))
(pad 3 thru_hole oval (at 5.08 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 8 /A2))
(pad 4 thru_hole oval (at 7.62 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 9 /A3))
(pad 5 thru_hole oval (at 10.16 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 26 /A4))
(pad 6 thru_hole oval (at 12.7 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 27 /A5))
(model ${KIPRJMOD}/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x06.wrl
(offset (xyz 6.349999904632568 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module Socket_Arduino_Uno:Socket_Strip_Arduino_1x10 locked (layer F.Cu) (tedit 552168BF) (tstamp 551AFA18)
(at 118.364 75.565)
(descr "Through hole socket strip")
(tags "socket strip")
(path /56D721E0)
(fp_text reference P3 (at 11.43 2.794) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Digital (at 11.43 4.318) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -1.75) (end -1.75 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 24.65 -1.75) (end 24.65 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.75) (end 24.65 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 1.75) (end 24.65 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.27 1.27) (end 24.13 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 24.13 1.27) (end 24.13 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 24.13 -1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 1.55) (end 0 1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -1.55) (end -1.55 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -1.55) (end -1.55 1.55) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole oval (at 0 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 28 /SCL))
(pad 2 thru_hole oval (at 2.54 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 29 /SDA))
(pad 3 thru_hole oval (at 5.08 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 10 /AREF))
(pad 4 thru_hole oval (at 7.62 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 4 GND))
(pad 5 thru_hole oval (at 10.16 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 19 "/13(SCK)"))
(pad 6 thru_hole oval (at 12.7 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 22 "/12(MISO)"))
(pad 7 thru_hole oval (at 15.24 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 25 "/11(MOSI)"))
(pad 8 thru_hole oval (at 17.78 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 23 "/10(RESET)"))
(pad 9 thru_hole oval (at 20.32 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 30 "/9(LED_HB)"))
(pad 10 thru_hole oval (at 22.86 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 31 "/8(LED_ERR)"))
(model ${KIPRJMOD}/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x10.wrl
(offset (xyz 11.42999982833862 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module Socket_Arduino_Uno:Socket_Strip_Arduino_1x08 locked (layer F.Cu) (tedit 552168C7) (tstamp 551AFA2F)
(at 145.288 75.565)
(descr "Through hole socket strip")
(tags "socket strip")
(path /56D7164F)
(fp_text reference P4 (at 8.89 2.794) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Digital (at 8.89 4.318) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -1.75) (end -1.75 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 19.55 -1.75) (end 19.55 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.75) (end 19.55 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 1.75) (end 19.55 1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.27 1.27) (end 19.05 1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 19.05 1.27) (end 19.05 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 19.05 -1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 1.55) (end 0 1.55) (layer F.SilkS) (width 0.15))
(fp_line (start 1.27 1.27) (end 1.27 -1.27) (layer F.SilkS) (width 0.15))
(fp_line (start 0 -1.55) (end -1.55 -1.55) (layer F.SilkS) (width 0.15))
(fp_line (start -1.55 -1.55) (end -1.55 1.55) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole oval (at 0 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 32 "/7(LED_PMODE)"))
(pad 2 thru_hole oval (at 2.54 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 33 /6))
(pad 3 thru_hole oval (at 5.08 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 34 /5))
(pad 4 thru_hole oval (at 7.62 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 11 /4))
(pad 5 thru_hole oval (at 10.16 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 35 /3))
(pad 6 thru_hole oval (at 12.7 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 12 /2))
(pad 7 thru_hole oval (at 15.24 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 13 "/1(Tx)"))
(pad 8 thru_hole oval (at 17.78 0) (size 1.7272 2.032) (drill 1.016) (layers *.Cu *.Mask F.SilkS)
(net 14 "/0(Rx)"))
(model ${KIPRJMOD}/Socket_Arduino_Uno.3dshapes/Socket_header_Arduino_1x08.wrl
(offset (xyz 8.889999866485596 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 180))
)
)
(module Socket_Arduino_Uno:Arduino_1pin locked (layer F.Cu) (tedit 5524FC39) (tstamp 5524FC3F)
(at 113.538 123.825)
(descr "module 1 pin (ou trou mecanique de percage)")
(tags DEV)
(path /56D71177)
(fp_text reference P5 (at 0 -3.048) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X01 (at 0 2.794) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 0 -2.286) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at 0 0) (size 4.064 4.064) (drill 3.048) (layers *.Cu *.Mask F.SilkS)
(net 15 "Net-(P5-Pad1)"))
)
(module Socket_Arduino_Uno:Arduino_1pin locked (layer F.Cu) (tedit 5524FC4A) (tstamp 5524FC44)
(at 165.608 118.745)
(descr "module 1 pin (ou trou mecanique de percage)")
(tags DEV)
(path /56D71274)
(fp_text reference P6 (at 0 -3.048) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X01 (at 0 2.794) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 0 -2.286) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at 0 0) (size 4.064 4.064) (drill 3.048) (layers *.Cu *.Mask F.SilkS)
(net 16 "Net-(P6-Pad1)"))
)
(module Socket_Arduino_Uno:Arduino_1pin locked (layer F.Cu) (tedit 5524FC2F) (tstamp 5524FC49)
(at 114.808 75.565)
(descr "module 1 pin (ou trou mecanique de percage)")
(tags DEV)
(path /56D712A8)
(fp_text reference P7 (at 0 -3.048) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X01 (at 0 2.794) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 0 -2.286) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at 0 0) (size 4.064 4.064) (drill 3.048) (layers *.Cu *.Mask F.SilkS)
(net 17 "Net-(P7-Pad1)"))
)
(module Socket_Arduino_Uno:Arduino_1pin locked (layer F.Cu) (tedit 5524FC41) (tstamp 5524FC4E)
(at 165.608 90.805)
(descr "module 1 pin (ou trou mecanique de percage)")
(tags DEV)
(path /56D712DB)
(fp_text reference P8 (at 0 -3.048) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X01 (at 0 2.794) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 0 -2.286) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at 0 0) (size 4.064 4.064) (drill 3.048) (layers *.Cu *.Mask F.SilkS)
(net 18 "Net-(P8-Pad1)"))
)
(gr_text VCC (at 137.668 98.425) (layer F.SilkS) (tstamp 5FD43083)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(gr_text VCC (at 160.528 98.425) (layer F.SilkS) (tstamp 5FD43081)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(gr_text VCC (at 156.718 85.725) (layer F.SilkS) (tstamp 5FD4307E)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(gr_text GND (at 156.718 83.185) (layer F.SilkS) (tstamp 5FD4307C)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(gr_text NC (at 124.968 100.965) (layer F.SilkS) (tstamp 5FD427FC)
(effects (font (size 1 1) (thickness 0.15)) (justify right))
)
(gr_text "Arduino as ISP\nUSE_OLD_STYLE_WIRING\nhttp://atoomnet.net/\n2020-12-11" (at 141.478 114.935) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(gr_text MISO (at 147.828 98.425) (layer F.SilkS) (tstamp 5FD41F65)
(effects (font (size 1 1) (thickness 0.15)) (justify right))
)
(gr_text RESET (at 147.828 103.505) (layer F.SilkS) (tstamp 5FD41F62)
(effects (font (size 1 1) (thickness 0.15)) (justify right))
)
(gr_text SCK (at 147.828 100.965) (layer F.SilkS) (tstamp 5FD41F5F)
(effects (font (size 1 1) (thickness 0.15)) (justify right))
)
(gr_text GND (at 137.668 100.965) (layer F.SilkS) (tstamp 5FD41F25)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(gr_text GND (at 137.668 103.505) (layer F.SilkS) (tstamp 5FD41F23)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(gr_text GND (at 137.668 106.045) (layer F.SilkS) (tstamp 5FD41F21)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(gr_text GND (at 137.668 108.585) (layer F.SilkS) (tstamp 5FD41F1F)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(gr_text MISO (at 124.968 108.585) (layer F.SilkS) (tstamp 5FD41F1B)
(effects (font (size 1 1) (thickness 0.15)) (justify right))
)
(gr_text SCK (at 124.968 106.045) (layer F.SilkS) (tstamp 5FD41F18)
(effects (font (size 1 1) (thickness 0.15)) (justify right))
)
(gr_text RESET (at 124.968 103.505) (layer F.SilkS) (tstamp 5FD41F15)
(effects (font (size 1 1) (thickness 0.15)) (justify right))
)
(gr_text GND (at 160.528 103.505) (layer F.SilkS) (tstamp 5FD41F0F)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(gr_text MOSI (at 160.528 100.965) (layer F.SilkS) (tstamp 5FD41F0B)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(gr_text MOSI (at 124.968 98.425) (layer F.SilkS) (tstamp 5FD41F08)
(effects (font (size 1 1) (thickness 0.15)) (justify right))
)
(gr_text Programming (at 122.428 89.535) (layer F.SilkS) (tstamp 5FD41876)
(effects (font (size 1 1) (thickness 0.15)) (justify right))
)
(gr_text Error (at 122.428 85.725) (layer F.SilkS) (tstamp 5FD41CFA)
(effects (font (size 1 1) (thickness 0.15)) (justify right))
)
(gr_text Heartbeat (at 122.428 81.915) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify right))
)
(gr_text 1 (at 127.508 121.285 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_line (start 165.608 74.549) (end 164.084 73.025) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 165.608 85.979) (end 165.608 74.549) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 168.148 88.519) (end 165.608 85.979) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 168.148 121.285) (end 168.148 88.519) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 165.608 123.825) (end 168.148 121.285) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 165.608 126.365) (end 165.608 123.825) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 110.998 126.365) (end 165.608 126.365) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 110.998 73.025) (end 110.998 126.365) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 164.084 73.025) (end 110.998 73.025) (angle 90) (layer Edge.Cuts) (width 0.15))
(segment (start 128.845919 106.045) (end 130.048 106.045) (width 0.4) (layer B.Cu) (net 19))
(segment (start 126.238 103.437081) (end 128.845919 106.045) (width 0.4) (layer B.Cu) (net 19))
(segment (start 126.238 80.645) (end 126.238 103.437081) (width 0.4) (layer B.Cu) (net 19))
(segment (start 128.524 78.359) (end 126.238 80.645) (width 0.4) (layer B.Cu) (net 19))
(segment (start 128.524 75.565) (end 128.524 78.359) (width 0.4) (layer B.Cu) (net 19))
(segment (start 154.158001 102.215001) (end 152.908 100.965) (width 0.4) (layer B.Cu) (net 19))
(segment (start 131.318 107.315) (end 151.257 107.315) (width 0.4) (layer B.Cu) (net 19))
(segment (start 154.158001 104.413999) (end 154.158001 102.215001) (width 0.4) (layer B.Cu) (net 19))
(segment (start 151.257 107.315) (end 154.158001 104.413999) (width 0.4) (layer B.Cu) (net 19))
(segment (start 130.048 106.045) (end 131.318 107.315) (width 0.4) (layer B.Cu) (net 19))
(via (at 128.524 103.632) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 22))
(segment (start 128.524 107.061) (end 130.048 108.585) (width 0.4) (layer F.Cu) (net 22))
(segment (start 128.524 103.632) (end 128.524 107.061) (width 0.4) (layer F.Cu) (net 22))
(segment (start 128.524 80.899) (end 128.524 103.632) (width 0.4) (layer B.Cu) (net 22))
(segment (start 131.064 78.359) (end 128.524 80.899) (width 0.4) (layer B.Cu) (net 22))
(segment (start 131.064 75.565) (end 131.064 78.359) (width 0.4) (layer B.Cu) (net 22))
(via (at 146.685 108.01501) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 22))
(segment (start 146.685 110.141505) (end 146.685 108.01501) (width 0.4) (layer B.Cu) (net 22))
(segment (start 145.701505 111.125) (end 146.685 110.141505) (width 0.4) (layer B.Cu) (net 22))
(segment (start 132.588 111.125) (end 145.701505 111.125) (width 0.4) (layer B.Cu) (net 22))
(segment (start 130.048 108.585) (end 132.588 111.125) (width 0.4) (layer B.Cu) (net 22))
(segment (start 149.098 98.425) (end 146.685 100.838) (width 0.4) (layer F.Cu) (net 22))
(segment (start 146.685 100.838) (end 146.685 108.01501) (width 0.4) (layer F.Cu) (net 22))
(segment (start 152.908 98.425) (end 149.098 98.425) (width 0.4) (layer F.Cu) (net 22))
(segment (start 151.657999 102.254999) (end 152.908 103.505) (width 0.4) (layer B.Cu) (net 23))
(segment (start 131.298001 102.254999) (end 151.657999 102.254999) (width 0.4) (layer B.Cu) (net 23))
(segment (start 130.048 103.505) (end 131.298001 102.254999) (width 0.4) (layer B.Cu) (net 23))
(segment (start 131.298001 102.254999) (end 130.048 103.505) (width 0.4) (layer F.Cu) (net 23))
(segment (start 133.838001 102.254999) (end 131.298001 102.254999) (width 0.4) (layer F.Cu) (net 23))
(segment (start 136.144 99.949) (end 133.838001 102.254999) (width 0.4) (layer F.Cu) (net 23))
(segment (start 136.144 75.565) (end 136.144 99.949) (width 0.4) (layer F.Cu) (net 23))
(segment (start 130.048 82.296) (end 130.048 98.425) (width 0.4) (layer B.Cu) (net 25))
(segment (start 133.604 78.74) (end 130.048 82.296) (width 0.4) (layer B.Cu) (net 25))
(segment (start 133.604 75.565) (end 133.604 78.74) (width 0.4) (layer B.Cu) (net 25))
(segment (start 157.988 99.627081) (end 156.650081 100.965) (width 0.4) (layer B.Cu) (net 25))
(segment (start 155.448 93.345) (end 157.988 95.885) (width 0.4) (layer B.Cu) (net 25))
(segment (start 157.988 95.885) (end 157.988 99.627081) (width 0.4) (layer B.Cu) (net 25))
(segment (start 149.098 93.345) (end 155.448 93.345) (width 0.4) (layer B.Cu) (net 25))
(segment (start 146.558 95.885) (end 149.098 93.345) (width 0.4) (layer B.Cu) (net 25))
(segment (start 131.738 95.885) (end 146.558 95.885) (width 0.4) (layer B.Cu) (net 25))
(segment (start 130.048 97.575) (end 131.738 95.885) (width 0.4) (layer B.Cu) (net 25))
(segment (start 156.650081 100.965) (end 155.448 100.965) (width 0.4) (layer B.Cu) (net 25))
(segment (start 130.048 98.425) (end 130.048 97.575) (width 0.4) (layer B.Cu) (net 25))
(via (at 138.684 81.534) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 30))
(segment (start 138.684 75.565) (end 138.684 81.534) (width 0.4) (layer F.Cu) (net 30))
(via (at 132.461 82.042) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 30))
(segment (start 132.969 81.534) (end 132.461 82.042) (width 0.4) (layer B.Cu) (net 30))
(segment (start 138.684 81.534) (end 132.969 81.534) (width 0.4) (layer B.Cu) (net 30))
(segment (start 131.175 82.042) (end 131.048 81.915) (width 0.4) (layer F.Cu) (net 30))
(segment (start 132.461 82.042) (end 131.175 82.042) (width 0.4) (layer F.Cu) (net 30))
(via (at 140.97 85.09) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 31))
(segment (start 141.224 84.836) (end 140.97 85.09) (width 0.4) (layer F.Cu) (net 31))
(segment (start 141.224 75.565) (end 141.224 84.836) (width 0.4) (layer F.Cu) (net 31))
(via (at 132.461 85.471) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 31))
(segment (start 140.589 85.471) (end 132.461 85.471) (width 0.4) (layer B.Cu) (net 31))
(segment (start 140.97 85.09) (end 140.589 85.471) (width 0.4) (layer B.Cu) (net 31))
(segment (start 131.302 85.471) (end 131.048 85.725) (width 0.4) (layer F.Cu) (net 31))
(segment (start 132.461 85.471) (end 131.302 85.471) (width 0.4) (layer F.Cu) (net 31))
(via (at 145.288 89.408) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 32))
(segment (start 145.288 75.565) (end 145.288 89.408) (width 0.4) (layer F.Cu) (net 32))
(via (at 132.461 89.535) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 32))
(segment (start 132.588 89.408) (end 132.461 89.535) (width 0.4) (layer B.Cu) (net 32))
(segment (start 145.288 89.408) (end 132.588 89.408) (width 0.4) (layer B.Cu) (net 32))
(segment (start 132.461 89.535) (end 131.048 89.535) (width 0.4) (layer F.Cu) (net 32))
(segment (start 125.993 81.915) (end 129.048 81.915) (width 0.4) (layer F.Cu) (net 36))
(segment (start 125.993 85.725) (end 129.048 85.725) (width 0.4) (layer F.Cu) (net 37))
(segment (start 125.993 89.535) (end 129.048 89.535) (width 0.4) (layer F.Cu) (net 38))
(segment (start 155.448 86.995) (end 154.178 85.725) (width 0.4) (layer F.Cu) (net 39))
(segment (start 155.448 98.425) (end 155.448 86.995) (width 0.4) (layer F.Cu) (net 39))
(segment (start 152.908 95.885) (end 155.448 98.425) (width 0.4) (layer B.Cu) (net 39))
(segment (start 132.588 98.425) (end 146.558 98.425) (width 0.4) (layer B.Cu) (net 39))
(segment (start 149.098 95.885) (end 152.908 95.885) (width 0.4) (layer B.Cu) (net 39))
(segment (start 146.558 98.425) (end 149.098 95.885) (width 0.4) (layer B.Cu) (net 39))
(zone (net 4) (net_name GND) (layer F.Cu) (tstamp 0) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254)
(fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 165.608 74.295) (xy 165.608 85.725) (xy 168.148 88.265) (xy 168.148 121.285) (xy 165.608 123.825)
(xy 165.608 126.365) (xy 110.998 126.365) (xy 110.998 73.025) (xy 164.338 73.025)
)
)
(filled_polygon
(pts
(xy 112.736406 73.864887) (xy 112.444536 74.301702) (xy 112.243492 74.787065) (xy 112.141 75.302323) (xy 112.141 75.827677)
(xy 112.243492 76.342935) (xy 112.444536 76.828298) (xy 112.736406 77.265113) (xy 113.107887 77.636594) (xy 113.544702 77.928464)
(xy 114.030065 78.129508) (xy 114.545323 78.232) (xy 115.070677 78.232) (xy 115.585935 78.129508) (xy 116.071298 77.928464)
(xy 116.508113 77.636594) (xy 116.879594 77.265113) (xy 117.171464 76.828298) (xy 117.227001 76.694219) (xy 117.299203 76.782197)
(xy 117.527395 76.969469) (xy 117.787737 77.108625) (xy 118.070224 77.194316) (xy 118.364 77.223251) (xy 118.657777 77.194316)