-
Notifications
You must be signed in to change notification settings - Fork 10
/
tinyswr.kicad_pcb
1026 lines (1000 loc) · 62.2 KB
/
tinyswr.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 4) (host pcbnew 4.0.6)
(general
(links 23)
(no_connects 0)
(area 150.7936 90.345599 172.922001 107.898001)
(thickness 1.6002)
(drawings 10)
(tracks 121)
(zones 0)
(modules 15)
(nets 11)
)
(page A4)
(layers
(0 Top signal)
(31 Bottom signal)
(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)
(47 F.CrtYd user hide)
(49 F.Fab user hide)
)
(setup
(last_trace_width 0.1524)
(user_trace_width 0.254)
(user_trace_width 0.508)
(user_trace_width 1.016)
(user_trace_width 1.524)
(trace_clearance 0.1524)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.1524)
(segment_width 0.2)
(edge_width 0.15)
(via_size 0.6858)
(via_drill 0.3302)
(via_min_size 0.6858)
(via_min_drill 0.3302)
(uvia_size 0.762)
(uvia_drill 0.508)
(uvias_allowed no)
(uvia_min_size 0)
(uvia_min_drill 0)
(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 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0.2)
(aux_axis_origin 0 0)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x010f0_80000001)
(usegerberextensions true)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15)
(hpglpenoverlay 2)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory gerber/))
)
(net 0 "")
(net 1 GND)
(net 2 "Net-(D1-Pad1)")
(net 3 "Net-(D1-Pad2)")
(net 4 "Net-(D3-Pad1)")
(net 5 "Net-(J1-Pad1)")
(net 6 "Net-(R1-Pad2)")
(net 7 "Net-(R4-Pad1)")
(net 8 "Net-(R5-Pad1)")
(net 9 "Net-(D2-Pad2)")
(net 10 "Net-(J2-Pad1)")
(net_class Default "This is the default net class."
(clearance 0.1524)
(trace_width 0.1524)
(via_dia 0.6858)
(via_drill 0.3302)
(uvia_dia 0.762)
(uvia_drill 0.508)
(add_net GND)
(add_net "Net-(D1-Pad1)")
(add_net "Net-(D1-Pad2)")
(add_net "Net-(D2-Pad2)")
(add_net "Net-(D3-Pad1)")
(add_net "Net-(J2-Pad1)")
(add_net "Net-(R1-Pad2)")
(add_net "Net-(R4-Pad1)")
(add_net "Net-(R5-Pad1)")
)
(net_class 10mil ""
(clearance 0.1524)
(trace_width 0.254)
(via_dia 0.6858)
(via_drill 0.3302)
(uvia_dia 0.762)
(uvia_drill 0.508)
)
(net_class Medium ""
(clearance 0.1524)
(trace_width 1)
(via_dia 0.6858)
(via_drill 0.3302)
(uvia_dia 0.762)
(uvia_drill 0.1)
)
(net_class RF ""
(clearance 0.1524)
(trace_width 2)
(via_dia 0.6858)
(via_drill 0.3302)
(uvia_dia 0.762)
(uvia_drill 0.1)
(add_net "Net-(J1-Pad1)")
)
(module Resistors_SMD:R_0805_HandSoldering placed (layer Bottom) (tedit 59B8EA2D) (tstamp 59774D35)
(at 162 105)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /5971C475)
(attr smd)
(fp_text reference R3 (at 3.2 0 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 4.7k (at 0 -1.75) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
)
(fp_line (start -1 -0.62) (end -1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 -0.62) (end -1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.62) (end 1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.62) (end 1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 0.6 -0.88) (end -0.6 -0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -0.6 0.88) (end 0.6 0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -2.35 0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.35 0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at -1.35 0) (size 1.5 1.3) (layers Bottom B.Paste B.Mask)
(net 3 "Net-(D1-Pad2)"))
(pad 2 smd rect (at 1.35 0) (size 1.5 1.3) (layers Bottom B.Paste B.Mask)
(net 1 GND))
(model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module LEDs:LED_0805_HandSoldering placed (layer Top) (tedit 59777DD4) (tstamp 59774C97)
(at 169.7 101.1)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /5971C155)
(attr smd)
(fp_text reference D1 (at -3.048 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value red (at 1.524 0) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.4 -0.4) (end -0.4 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.4 0) (end 0.2 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start 0.2 0.4) (end -0.4 0) (layer F.Fab) (width 0.1))
(fp_line (start 0.2 -0.4) (end 0.2 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -1 0.62) (end -1 -0.62) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.62) (end -1 0.62) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.62) (end 1 0.62) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.75) (end -2.2 0.75) (layer F.SilkS) (width 0.12))
(fp_line (start -2.2 -0.75) (end 1 -0.75) (layer F.SilkS) (width 0.12))
(fp_line (start -2.35 -0.9) (end 2.35 -0.9) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.35 -0.9) (end -2.35 0.9) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.35 0.9) (end 2.35 -0.9) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.35 0.9) (end -2.35 0.9) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.2 -0.75) (end -2.2 0.75) (layer F.SilkS) (width 0.12))
(pad 1 smd rect (at -1.35 0) (size 1.5 1.3) (layers Top F.Paste F.Mask)
(net 2 "Net-(D1-Pad1)"))
(pad 2 smd rect (at 1.35 0) (size 1.5 1.3) (layers Top F.Paste F.Mask)
(net 3 "Net-(D1-Pad2)"))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Diodes_SMD:D_MiniMELF placed (layer Bottom) (tedit 59B8ED47) (tstamp 59774CA3)
(at 169.164 103.124)
(descr "Diode Mini-MELF")
(tags "Diode Mini-MELF")
(path /5971C5EC)
(attr smd)
(fp_text reference D3 (at 0 1.778) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value "BAT 46" (at 0 -1.75) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 2) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start 1.75 1) (end -2.55 1) (layer B.SilkS) (width 0.12))
(fp_line (start -2.55 1) (end -2.55 -1) (layer B.SilkS) (width 0.12))
(fp_line (start -2.55 -1) (end 1.75 -1) (layer B.SilkS) (width 0.12))
(fp_line (start 1.65 0.8) (end 1.65 -0.8) (layer B.Fab) (width 0.1))
(fp_line (start 1.65 -0.8) (end -1.65 -0.8) (layer B.Fab) (width 0.1))
(fp_line (start -1.65 -0.8) (end -1.65 0.8) (layer B.Fab) (width 0.1))
(fp_line (start -1.65 0.8) (end 1.65 0.8) (layer B.Fab) (width 0.1))
(fp_line (start 0.25 0) (end 0.75 0) (layer B.Fab) (width 0.1))
(fp_line (start 0.25 -0.4) (end -0.35 0) (layer B.Fab) (width 0.1))
(fp_line (start 0.25 0.4) (end 0.25 -0.4) (layer B.Fab) (width 0.1))
(fp_line (start -0.35 0) (end 0.25 0.4) (layer B.Fab) (width 0.1))
(fp_line (start -0.35 0) (end -0.35 -0.55) (layer B.Fab) (width 0.1))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer B.Fab) (width 0.1))
(fp_line (start -0.75 0) (end -0.35 0) (layer B.Fab) (width 0.1))
(fp_line (start -2.65 1.1) (end 2.65 1.1) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.65 1.1) (end 2.65 -1.1) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.65 -1.1) (end -2.65 -1.1) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.65 -1.1) (end -2.65 1.1) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at -1.75 0) (size 1.3 1.7) (layers Bottom B.Paste B.Mask)
(net 4 "Net-(D3-Pad1)"))
(pad 2 smd rect (at 1.75 0) (size 1.3 1.7) (layers Bottom B.Paste B.Mask)
(net 1 GND))
(model ${KISYS3DMOD}/Diodes_SMD.3dshapes/D_MiniMELF.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module mfhepp:FT23_horizontal placed (layer Top) (tedit 59765FA4) (tstamp 59774D02)
(at 161.163 101.727)
(tags "toroid, coil, amidon, FT")
(path /59767ABF)
(fp_text reference L1 (at 0 3.81) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value FT23-43 (at 0 -3.81) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 5 0) (layer F.CrtYd) (width 0.1))
(fp_circle (center 0 0) (end 2.9 0) (layer F.SilkS) (width 0.15))
(fp_circle (center 0 0) (end 1.5 0) (layer F.SilkS) (width 0.15))
(pad 1 thru_hole circle (at -3.81 -1.27) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 10 "Net-(J2-Pad1)"))
(pad 2 thru_hole circle (at -3.81 1.27) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 5 "Net-(J1-Pad1)"))
(pad 3 thru_hole circle (at 3.81 -1.27) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 3 "Net-(D1-Pad2)"))
(pad 4 thru_hole circle (at 3.81 1.27) (size 1.524 1.524) (drill 0.762) (layers *.Cu *.Mask)
(net 4 "Net-(D3-Pad1)"))
)
(module Resistors_SMD:R_0805_HandSoldering placed (layer Bottom) (tedit 59777F4F) (tstamp 59774D28)
(at 156.4894 97.4598)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /5971C512)
(attr smd)
(fp_text reference R1 (at -3.048 0 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 820 (at 0 -1.75) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
)
(fp_line (start -1 -0.62) (end -1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 -0.62) (end -1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.62) (end 1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.62) (end 1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 0.6 -0.88) (end -0.6 -0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -0.6 0.88) (end 0.6 0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -2.35 0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.35 0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at -1.35 0) (size 1.5 1.3) (layers Bottom B.Paste B.Mask)
(net 10 "Net-(J2-Pad1)"))
(pad 2 smd rect (at 1.35 0) (size 1.5 1.3) (layers Bottom B.Paste B.Mask)
(net 6 "Net-(R1-Pad2)"))
(model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering placed (layer Bottom) (tedit 59B8F2E6) (tstamp 59774D3B)
(at 167.4114 97.6249)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /5971C358)
(attr smd)
(fp_text reference R4 (at -2.794 0.0254 270) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 820 (at 0 1.524) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at 0 0) (layer B.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
)
(fp_line (start -1 -0.62) (end -1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 -0.62) (end -1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start 1 0.62) (end 1 -0.62) (layer B.Fab) (width 0.1))
(fp_line (start -1 0.62) (end 1 0.62) (layer B.Fab) (width 0.1))
(fp_line (start 0.6 -0.88) (end -0.6 -0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -0.6 0.88) (end 0.6 0.88) (layer B.SilkS) (width 0.12))
(fp_line (start -2.35 0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.35 0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end 2.35 0.9) (layer B.CrtYd) (width 0.05))
(fp_line (start 2.35 -0.9) (end -2.35 -0.9) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at -1.35 0) (size 1.5 1.3) (layers Bottom B.Paste B.Mask)
(net 7 "Net-(R4-Pad1)"))
(pad 2 smd rect (at 1.35 0) (size 1.5 1.3) (layers Bottom B.Paste B.Mask)
(net 1 GND))
(model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_SMD:R_0805_HandSoldering placed (layer Top) (tedit 59778116) (tstamp 59774D41)
(at 168.656 98.552)
(descr "Resistor SMD 0805, hand soldering")
(tags "resistor 0805")
(path /5971C4BD)
(attr smd)
(fp_text reference R5 (at -3.048 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 100 (at 1.016 0) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 0) (layer F.Fab)
(effects (font (size 0.5 0.5) (thickness 0.075)))
)
(fp_line (start -1 0.62) (end -1 -0.62) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.62) (end -1 0.62) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.62) (end 1 0.62) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer F.Fab) (width 0.1))
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer F.SilkS) (width 0.12))
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer F.SilkS) (width 0.12))
(fp_line (start -2.35 -0.9) (end 2.35 -0.9) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.35 -0.9) (end -2.35 0.9) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.35 0.9) (end 2.35 -0.9) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.35 0.9) (end -2.35 0.9) (layer F.CrtYd) (width 0.05))
(pad 1 smd rect (at -1.35 0) (size 1.5 1.3) (layers Top F.Paste F.Mask)
(net 8 "Net-(R5-Pad1)"))
(pad 2 smd rect (at 1.35 0) (size 1.5 1.3) (layers Top F.Paste F.Mask)
(net 1 GND))
(model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module lib_fp:LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z1.6mm (layer Bottom) (tedit 59B8E866) (tstamp 5977A4DA)
(at 158.623 95.123)
(descr "LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins")
(tags "LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins")
(path /5971C0D5)
(fp_text reference SWR1 (at 1.27 1.96) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value red (at 1.143 -0.127) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.38 -1.27) (end -0.38 -2.87) (layer B.Fab) (width 0.1))
(fp_line (start -0.38 -2.87) (end 2.92 -2.87) (layer B.Fab) (width 0.1))
(fp_line (start 2.92 -2.87) (end 2.92 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 2.92 -1.27) (end -0.38 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 0.37 -2.87) (end 0.37 -4.27) (layer B.Fab) (width 0.1))
(fp_line (start 0.37 -4.27) (end 2.17 -4.27) (layer B.Fab) (width 0.1))
(fp_line (start 2.17 -4.27) (end 2.17 -2.87) (layer B.Fab) (width 0.1))
(fp_line (start 2.17 -2.87) (end 0.37 -2.87) (layer B.Fab) (width 0.1))
(fp_line (start 0 0) (end 0 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 0 -1.27) (end 0 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 0 -1.27) (end 0 0) (layer B.Fab) (width 0.1))
(fp_line (start 0 0) (end 0 0) (layer B.Fab) (width 0.1))
(fp_line (start 2.54 0) (end 2.54 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 2.54 -1.27) (end 2.54 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 2.54 -1.27) (end 2.54 0) (layer B.Fab) (width 0.1))
(fp_line (start 2.54 0) (end 2.54 0) (layer B.Fab) (width 0.1))
(fp_line (start -1.25 1.25) (end -1.25 -4.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.25 -4.6) (end 3.75 -4.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.75 -4.6) (end 3.75 1.25) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.75 1.25) (end -1.25 1.25) (layer B.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 7 "Net-(R4-Pad1)"))
(pad 2 thru_hole circle (at 2.54 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 3 "Net-(D1-Pad2)"))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z1.6mm.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module lib_fp:LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z1.6mm (layer Bottom) (tedit 59B8E861) (tstamp 5977A4F3)
(at 163.703 95.123)
(descr "LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins")
(tags "LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins")
(path /5971C2A8)
(fp_text reference SWR2 (at 1.27 1.96) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value red (at 1.27 -0.127) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.38 -1.27) (end -0.38 -2.87) (layer B.Fab) (width 0.1))
(fp_line (start -0.38 -2.87) (end 2.92 -2.87) (layer B.Fab) (width 0.1))
(fp_line (start 2.92 -2.87) (end 2.92 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 2.92 -1.27) (end -0.38 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 0.37 -2.87) (end 0.37 -4.27) (layer B.Fab) (width 0.1))
(fp_line (start 0.37 -4.27) (end 2.17 -4.27) (layer B.Fab) (width 0.1))
(fp_line (start 2.17 -4.27) (end 2.17 -2.87) (layer B.Fab) (width 0.1))
(fp_line (start 2.17 -2.87) (end 0.37 -2.87) (layer B.Fab) (width 0.1))
(fp_line (start 0 0) (end 0 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 0 -1.27) (end 0 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 0 -1.27) (end 0 0) (layer B.Fab) (width 0.1))
(fp_line (start 0 0) (end 0 0) (layer B.Fab) (width 0.1))
(fp_line (start 2.54 0) (end 2.54 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 2.54 -1.27) (end 2.54 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 2.54 -1.27) (end 2.54 0) (layer B.Fab) (width 0.1))
(fp_line (start 2.54 0) (end 2.54 0) (layer B.Fab) (width 0.1))
(fp_line (start -1.25 1.25) (end -1.25 -4.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.25 -4.6) (end 3.75 -4.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.75 -4.6) (end 3.75 1.25) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.75 1.25) (end -1.25 1.25) (layer B.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 8 "Net-(R5-Pad1)"))
(pad 2 thru_hole circle (at 2.54 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 2 "Net-(D1-Pad1)"))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z1.6mm.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module lib_fp:LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z1.6mm (layer Bottom) (tedit 59B8E85B) (tstamp 5977A50C)
(at 168.783 95.123)
(descr "LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins")
(tags "LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins")
(path /5971C30D)
(fp_text reference SWR3 (at 1.27 1.96) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value red (at 1.27 -0.127) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.38 -1.27) (end -0.38 -2.87) (layer B.Fab) (width 0.1))
(fp_line (start -0.38 -2.87) (end 2.92 -2.87) (layer B.Fab) (width 0.1))
(fp_line (start 2.92 -2.87) (end 2.92 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 2.92 -1.27) (end -0.38 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 0.37 -2.87) (end 0.37 -4.27) (layer B.Fab) (width 0.1))
(fp_line (start 0.37 -4.27) (end 2.17 -4.27) (layer B.Fab) (width 0.1))
(fp_line (start 2.17 -4.27) (end 2.17 -2.87) (layer B.Fab) (width 0.1))
(fp_line (start 2.17 -2.87) (end 0.37 -2.87) (layer B.Fab) (width 0.1))
(fp_line (start 0 0) (end 0 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 0 -1.27) (end 0 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 0 -1.27) (end 0 0) (layer B.Fab) (width 0.1))
(fp_line (start 0 0) (end 0 0) (layer B.Fab) (width 0.1))
(fp_line (start 2.54 0) (end 2.54 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 2.54 -1.27) (end 2.54 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 2.54 -1.27) (end 2.54 0) (layer B.Fab) (width 0.1))
(fp_line (start 2.54 0) (end 2.54 0) (layer B.Fab) (width 0.1))
(fp_line (start -1.25 1.25) (end -1.25 -4.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.25 -4.6) (end 3.75 -4.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.75 -4.6) (end 3.75 1.25) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.75 1.25) (end -1.25 1.25) (layer B.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 1 GND))
(pad 2 thru_hole circle (at 2.54 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 9 "Net-(D2-Pad2)"))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z1.6mm.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module lib_fp:LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z1.6mm (layer Bottom) (tedit 59B8E86D) (tstamp 5977AB97)
(at 153.543 95.123)
(descr "LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins")
(tags "LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins")
(path /5971C1E1)
(fp_text reference RF1 (at 1.27 1.96) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value yellow (at 1.651 -0.254) (layer B.Fab) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -0.38 -1.27) (end -0.38 -2.87) (layer B.Fab) (width 0.1))
(fp_line (start -0.38 -2.87) (end 2.92 -2.87) (layer B.Fab) (width 0.1))
(fp_line (start 2.92 -2.87) (end 2.92 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 2.92 -1.27) (end -0.38 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 0.37 -2.87) (end 0.37 -4.27) (layer B.Fab) (width 0.1))
(fp_line (start 0.37 -4.27) (end 2.17 -4.27) (layer B.Fab) (width 0.1))
(fp_line (start 2.17 -4.27) (end 2.17 -2.87) (layer B.Fab) (width 0.1))
(fp_line (start 2.17 -2.87) (end 0.37 -2.87) (layer B.Fab) (width 0.1))
(fp_line (start 0 0) (end 0 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 0 -1.27) (end 0 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 0 -1.27) (end 0 0) (layer B.Fab) (width 0.1))
(fp_line (start 0 0) (end 0 0) (layer B.Fab) (width 0.1))
(fp_line (start 2.54 0) (end 2.54 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 2.54 -1.27) (end 2.54 -1.27) (layer B.Fab) (width 0.1))
(fp_line (start 2.54 -1.27) (end 2.54 0) (layer B.Fab) (width 0.1))
(fp_line (start 2.54 0) (end 2.54 0) (layer B.Fab) (width 0.1))
(fp_line (start -1.25 1.25) (end -1.25 -4.6) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.25 -4.6) (end 3.75 -4.6) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.75 -4.6) (end 3.75 1.25) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.75 1.25) (end -1.25 1.25) (layer B.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 1 GND))
(pad 2 thru_hole circle (at 2.54 0) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 4 "Net-(D3-Pad1)"))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z1.6mm.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Diodes_SMD:D_MiniMELF (layer Top) (tedit 59A8F09F) (tstamp 59A8EF44)
(at 169.799 105.791 180)
(descr "Diode Mini-MELF")
(tags "Diode Mini-MELF")
(path /59A5F404)
(attr smd)
(fp_text reference D2 (at 3.2766 -0.0508 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 3.3V (at 0 1.75 180) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at -2.4892 -0.0508 270) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.75 -1) (end -2.55 -1) (layer F.SilkS) (width 0.12))
(fp_line (start -2.55 -1) (end -2.55 1) (layer F.SilkS) (width 0.12))
(fp_line (start -2.55 1) (end 1.75 1) (layer F.SilkS) (width 0.12))
(fp_line (start 1.65 -0.8) (end 1.65 0.8) (layer F.Fab) (width 0.1))
(fp_line (start 1.65 0.8) (end -1.65 0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.65 0.8) (end -1.65 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start -1.65 -0.8) (end 1.65 -0.8) (layer F.Fab) (width 0.1))
(fp_line (start 0.25 0) (end 0.75 0) (layer F.Fab) (width 0.1))
(fp_line (start 0.25 0.4) (end -0.35 0) (layer F.Fab) (width 0.1))
(fp_line (start 0.25 -0.4) (end 0.25 0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.35 0) (end 0.25 -0.4) (layer F.Fab) (width 0.1))
(fp_line (start -0.35 0) (end -0.35 0.55) (layer F.Fab) (width 0.1))
(fp_line (start -0.35 0) (end -0.35 -0.55) (layer F.Fab) (width 0.1))
(fp_line (start -0.75 0) (end -0.35 0) (layer F.Fab) (width 0.1))
(fp_line (start -2.65 -1.1) (end 2.65 -1.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.65 -1.1) (end 2.65 1.1) (layer F.CrtYd) (width 0.05))
(fp_line (start 2.65 1.1) (end -2.65 1.1) (layer F.CrtYd) (width 0.05))
(fp_line (start -2.65 1.1) (end -2.65 -1.1) (layer F.CrtYd) (width 0.05))
(pad 1 smd rect (at -1.75 0 180) (size 1.3 1.7) (layers Top F.Paste F.Mask)
(net 3 "Net-(D1-Pad2)"))
(pad 2 smd rect (at 1.75 0 180) (size 1.3 1.7) (layers Top F.Paste F.Mask)
(net 9 "Net-(D2-Pad2)"))
(model ${KISYS3DMOD}/Diodes_SMD.3dshapes/D_MiniMELF.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module lib_fp:BNC (layer Top) (tedit 59B8E5DB) (tstamp 59A8F07C)
(at 154.051 105.8926 90)
(descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x02 2.54mm single row")
(path /5971BD9F)
(fp_text reference J1 (at 0 -2.33 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value ANT (at 0 4.87 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (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 1.27 3.81) (end -1.27 3.81) (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 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 3.87) (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 1.27) (end 1.33 3.87) (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 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (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 4.35) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 1.27 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 1 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 5 "Net-(J1-Pad1)"))
)
(module lib_fp:BNC (layer Top) (tedit 59B8EC73) (tstamp 59A8F081)
(at 154.432 102.87 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 /59A67839)
(fp_text reference J2 (at 0 -2.33 180) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value RIG (at -2.667 3.5052 360) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (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 1.27 3.81) (end -1.27 3.81) (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 -0.635) (end -0.635 -1.27) (layer F.Fab) (width 0.1))
(fp_line (start -1.33 3.87) (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 1.27) (end 1.33 3.87) (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 0) (end -1.33 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer F.SilkS) (width 0.12))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (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 4.35) (end 1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 1.27 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 2 thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 GND))
(pad 1 thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 10 "Net-(J2-Pad1)"))
)
(module lib_fp:Potentiometer_Trimmer_Bourns_3314G (layer Bottom) (tedit 59B8EA51) (tstamp 59B8E10F)
(at 161.29 100.6094 90)
(descr "Spindle Trimmer Potentiometer, Bourns 3214G, https://www.bourns.com/pdfs/3214.pdf")
(tags "Spindle Trimmer Potentiometer Bourns 3214G")
(path /59EF8800)
(attr smd)
(fp_text reference R2 (at 1.0094 0.01 180) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value 1k (at 0 -3.65 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -2.3 2.4) (end -2.3 -2.4) (layer B.Fab) (width 0.1))
(fp_line (start -2.3 -2.4) (end 2.3 -2.4) (layer B.Fab) (width 0.1))
(fp_line (start 2.3 -2.4) (end 2.3 2.4) (layer B.Fab) (width 0.1))
(fp_line (start 2.3 2.4) (end -2.3 2.4) (layer B.Fab) (width 0.1))
(fp_line (start -2.3 2.02) (end -2.3 0.24) (layer B.Fab) (width 0.1))
(fp_line (start -2.3 0.24) (end -2.3 0.24) (layer B.Fab) (width 0.1))
(fp_line (start -2.3 0.24) (end -2.3 2.02) (layer B.Fab) (width 0.1))
(fp_line (start -2.3 2.02) (end -2.3 2.02) (layer B.Fab) (width 0.1))
(fp_line (start -2.3 1.13) (end -2.3 1.13) (layer B.Fab) (width 0.1))
(fp_line (start -2.36 2.46) (end 2.36 2.46) (layer B.SilkS) (width 0.12))
(fp_line (start -2.36 -2.46) (end 2.36 -2.46) (layer B.SilkS) (width 0.12))
(fp_line (start -2.36 2.46) (end -2.36 1.18) (layer B.SilkS) (width 0.12))
(fp_line (start -2.36 -1.18) (end -2.36 -2.46) (layer B.SilkS) (width 0.12))
(fp_line (start 2.36 2.46) (end 2.36 1.98) (layer B.SilkS) (width 0.12))
(fp_line (start 2.36 0.32) (end 2.36 -0.32) (layer B.SilkS) (width 0.12))
(fp_line (start 2.36 -1.98) (end 2.36 -2.46) (layer B.SilkS) (width 0.12))
(fp_line (start -2.36 2.08) (end -2.36 2.08) (layer B.SilkS) (width 0.12))
(fp_line (start -2.36 2.08) (end -2.36 1.18) (layer B.SilkS) (width 0.12))
(fp_line (start -2.36 2.08) (end -2.36 1.18) (layer B.SilkS) (width 0.12))
(fp_line (start -3.53 2.65) (end -3.53 -2.65) (layer B.CrtYd) (width 0.05))
(fp_line (start -3.53 -2.65) (end 3.82 -2.65) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.82 -2.65) (end 3.82 2.65) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.82 2.65) (end -3.53 2.65) (layer B.CrtYd) (width 0.05))
(pad 1 smd rect (at 2.9 1.15 90) (size 1.3 1.3) (layers Bottom B.Mask)
(net 6 "Net-(R1-Pad2)"))
(pad 2 smd rect (at -2.6 0 90) (size 1.3 2) (layers Bottom B.Mask)
(net 3 "Net-(D1-Pad2)"))
(pad 3 smd rect (at 2.9 -1.15 90) (size 1.3 1.3) (layers Bottom B.Mask)
(net 3 "Net-(D1-Pad2)"))
(model Potentiometers.3dshapes/Potentiometer_Trimmer_Bourns_3214G.wrl
(at (xyz 0.03 0 0))
(scale (xyz 0.39 0.39 0.39))
(rotate (xyz 0 0 0))
)
)
(gr_text "Rev 1.2\n2017-10-24" (at 169.3291 99.7585) (layer B.SilkS)
(effects (font (size 0.5 0.5) (thickness 0.125)) (justify mirror))
)
(gr_text K (at 171.8 107.2 270) (layer F.SilkS)
(effects (font (size 0.7 0.7) (thickness 0.175)))
)
(gr_text K (at 168 99.9 90) (layer F.SilkS)
(effects (font (size 0.7 0.7) (thickness 0.175)))
)
(gr_text K (at 167.1066 104.7496 90) (layer B.SilkS)
(effects (font (size 0.7 0.7) (thickness 0.175)) (justify mirror))
)
(gr_text "TinySWR, DK3IT" (at 165.6 106.8) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.25)) (justify mirror))
)
(gr_line (start 152.019 93.599) (end 152.527 93.599) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 152.019 107.823) (end 152.019 93.599) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 172.847 107.823) (end 152.019 107.823) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 172.847 93.599) (end 172.847 107.823) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 152.527 93.599) (end 172.847 93.599) (angle 90) (layer Edge.Cuts) (width 0.15))
(segment (start 153.543 95.123) (end 153.543 97.79) (width 1.524) (layer Top) (net 1))
(segment (start 154.432 102.87) (end 154.432 104.013) (width 1.524) (layer Top) (net 1))
(segment (start 154.051 104.394) (end 154.051 105.8926) (width 1.524) (layer Top) (net 1) (tstamp 59EF8B76))
(segment (start 154.432 104.013) (end 154.051 104.394) (width 1.524) (layer Top) (net 1) (tstamp 59EF8B71))
(segment (start 168.783 95.123) (end 168.783 96.139) (width 1.016) (layer Top) (net 1))
(segment (start 170.006 97.362) (end 170.006 98.552) (width 1.016) (layer Top) (net 1) (tstamp 59EF7FF8))
(segment (start 168.783 96.139) (end 170.006 97.362) (width 1.016) (layer Top) (net 1) (tstamp 59EF7FF5))
(segment (start 154.432 102.87) (end 154.432 105.5116) (width 1.016) (layer Top) (net 1))
(segment (start 154.432 105.5116) (end 154.051 105.8926) (width 1.016) (layer Top) (net 1) (tstamp 59EF7FE7))
(segment (start 153.543 95.123) (end 153.543 96.139) (width 0.254) (layer Bottom) (net 1))
(segment (start 153.416 102.87) (end 154.432 102.87) (width 0.254) (layer Bottom) (net 1) (tstamp 59EF7D59))
(segment (start 152.654 102.108) (end 153.416 102.87) (width 0.254) (layer Bottom) (net 1) (tstamp 59EF7D57))
(segment (start 152.654 97.028) (end 152.654 102.108) (width 0.254) (layer Bottom) (net 1) (tstamp 59EF7D4F))
(segment (start 153.543 96.139) (end 152.654 97.028) (width 0.254) (layer Bottom) (net 1) (tstamp 59EF7D4B))
(segment (start 154.432 102.87) (end 154.051 103.251) (width 0.254) (layer Bottom) (net 1) (tstamp 59EF7D5A))
(segment (start 154.051 103.251) (end 154.051 105.8926) (width 0.254) (layer Bottom) (net 1) (tstamp 59EF7D5C))
(segment (start 168.783 95.123) (end 168.783 95.631) (width 0.254) (layer Top) (net 1))
(segment (start 168.783 95.631) (end 170.006 96.854) (width 0.508) (layer Top) (net 1) (tstamp 59EF7C74))
(segment (start 170.006 96.854) (end 170.006 98.552) (width 0.508) (layer Top) (net 1) (tstamp 59EF7C78))
(segment (start 170.0911 103.3272) (end 170.0911 104.3813) (width 0.1524) (layer Bottom) (net 1))
(segment (start 169.4724 105) (end 163.35 105) (width 0.1524) (layer Bottom) (net 1) (tstamp 59B8F82F))
(segment (start 170.0911 104.3813) (end 169.4724 105) (width 0.1524) (layer Bottom) (net 1) (tstamp 59B8F82A))
(segment (start 168.783 95.123) (end 168.783 96.4692) (width 0.1524) (layer Bottom) (net 1))
(segment (start 168.783 96.4692) (end 168.7068 96.393) (width 0.1524) (layer Bottom) (net 1) (tstamp 59B8F76D))
(segment (start 170.006 98.552) (end 169.9895 98.552) (width 0.1524) (layer Top) (net 1) (status 30))
(segment (start 170.0911 103.3272) (end 170.914 103.124) (width 0.1524) (layer Bottom) (net 1) (tstamp 59B8F567) (status 20))
(segment (start 168.783 95.123) (end 168.783 95.1865) (width 0.1524) (layer Top) (net 1))
(segment (start 168.783 95.123) (end 168.783 97.6033) (width 0.1524) (layer Bottom) (net 1))
(segment (start 168.783 97.6033) (end 168.7614 97.6249) (width 0.1524) (layer Bottom) (net 1) (tstamp 59B8F319))
(segment (start 170.7344 98.5984) (end 169.5768 98.5984) (width 0.1524) (layer Top) (net 1) (tstamp 59B8F037) (status 30))
(segment (start 168.783 95.123) (end 168.783 95.4151) (width 0.1524) (layer Bottom) (net 1))
(segment (start 168.35 101.1) (end 168.35 100.382) (width 0.254) (layer Top) (net 2))
(segment (start 166.243 96.139) (end 166.243 95.123) (width 0.254) (layer Top) (net 2) (tstamp 59EF7C40))
(segment (start 167.132 97.028) (end 166.243 96.139) (width 0.254) (layer Top) (net 2) (tstamp 59EF7C3D))
(segment (start 168.148 97.028) (end 167.132 97.028) (width 0.254) (layer Top) (net 2) (tstamp 59EF7C3C))
(segment (start 168.656 97.536) (end 168.148 97.028) (width 0.254) (layer Top) (net 2) (tstamp 59EF7C3A))
(segment (start 168.656 100.076) (end 168.656 97.536) (width 0.254) (layer Top) (net 2) (tstamp 59EF7C37))
(segment (start 168.35 100.382) (end 168.656 100.076) (width 0.254) (layer Top) (net 2) (tstamp 59EF7C35))
(segment (start 168.35 101.1) (end 168.35 100.3312) (width 0.1524) (layer Top) (net 2))
(segment (start 166.243 95.4405) (end 166.243 95.123) (width 0.1524) (layer Top) (net 2) (tstamp 59B8F7CC))
(segment (start 168.449 100.711) (end 168.529 100.711) (width 0.1524) (layer Top) (net 2))
(segment (start 166.243 95.758) (end 166.243 95.123) (width 0.1524) (layer Top) (net 2) (tstamp 59778A78))
(segment (start 168.449 100.711) (end 168.021 100.711) (width 0.1524) (layer Top) (net 2))
(segment (start 164.973 100.457) (end 164.338 100.457) (width 0.508) (layer Top) (net 3))
(segment (start 164.338 100.457) (end 163.576 101.219) (width 0.508) (layer Top) (net 3) (tstamp 59EF8A71))
(segment (start 163.576 101.219) (end 161.036 101.219) (width 0.508) (layer Top) (net 3) (tstamp 59EF8A73))
(segment (start 161.036 99.314) (end 161.036 101.219) (width 0.508) (layer Top) (net 3))
(segment (start 161.29 101.473) (end 161.29 103.2094) (width 0.254) (layer Bottom) (net 3) (tstamp 59EF8A3F))
(segment (start 161.036 101.219) (end 161.29 101.473) (width 0.254) (layer Bottom) (net 3) (tstamp 59EF8A3E))
(via (at 161.036 101.219) (size 0.6858) (drill 0.3302) (layers Top Bottom) (net 3))
(segment (start 160.14 97.7094) (end 160.14 98.418) (width 0.254) (layer Bottom) (net 3))
(segment (start 161.163 99.187) (end 161.163 95.123) (width 0.508) (layer Top) (net 3) (tstamp 59EF8A22))
(segment (start 161.036 99.314) (end 161.163 99.187) (width 0.508) (layer Top) (net 3) (tstamp 59EF8A21))
(via (at 161.036 99.314) (size 0.6858) (drill 0.3302) (layers Top Bottom) (net 3))
(segment (start 160.14 98.418) (end 161.036 99.314) (width 0.254) (layer Bottom) (net 3) (tstamp 59EF8A0B))
(segment (start 161.163 95.25) (end 161.163 95.123) (width 0.254) (layer Top) (net 3) (tstamp 59EF8942))
(segment (start 171.05 102.616) (end 167.005 102.616) (width 0.508) (layer Top) (net 3))
(segment (start 167.005 102.616) (end 167.0558 102.6668) (width 0.508) (layer Top) (net 3) (tstamp 59EF7E1B))
(segment (start 171.549 105.791) (end 171.549 103.985) (width 0.508) (layer Top) (net 3))
(segment (start 171.05 103.486) (end 171.05 102.616) (width 0.508) (layer Top) (net 3) (tstamp 59EF7E0F))
(segment (start 171.05 102.616) (end 171.05 101.1) (width 0.508) (layer Top) (net 3) (tstamp 59EF7E19))
(segment (start 171.549 103.985) (end 171.05 103.486) (width 0.508) (layer Top) (net 3) (tstamp 59EF7E0D))
(segment (start 164.973 100.457) (end 164.973 100.584) (width 0.1524) (layer Top) (net 3))
(segment (start 164.973 100.584) (end 167.0558 102.6668) (width 0.508) (layer Top) (net 3) (tstamp 59B8F7F5))
(segment (start 167.0558 102.6668) (end 169.7228 102.6668) (width 0.254) (layer Top) (net 3) (tstamp 59B8F7F8))
(segment (start 169.7101 102.6795) (end 169.7228 102.6668) (width 0.254) (layer Top) (net 3) (tstamp 59B8F52A))
(segment (start 161.0576 105.283) (end 161.0576 103.4418) (width 0.508) (layer Bottom) (net 3))
(segment (start 161.0576 103.4418) (end 161.29 103.2094) (width 0.1524) (layer Bottom) (net 3) (tstamp 59B8E7EF))
(segment (start 171.149 100.711) (end 171.149 101.52) (width 0.1524) (layer Top) (net 3))
(segment (start 171.149 101.52) (end 170.942 101.727) (width 0.1524) (layer Top) (net 3) (tstamp 5977919B))
(segment (start 171.149 105.791) (end 171.149 105.109) (width 0.1524) (layer Top) (net 3))
(segment (start 164.973 102.997) (end 164.973 103.251) (width 0.254) (layer Top) (net 4))
(segment (start 164.973 103.251) (end 163.703 102.743) (width 0.254) (layer Top) (net 4) (tstamp 59EF8876))
(segment (start 156.083 96.774) (end 156.083 94.996) (width 0.254) (layer Top) (net 4) (tstamp 59EF8884))
(segment (start 159.385 97.917) (end 156.083 96.774) (width 0.254) (layer Top) (net 4) (tstamp 59EF8882))
(segment (start 159.385 100.076) (end 159.385 97.917) (width 0.254) (layer Top) (net 4) (tstamp 59EF887F))
(segment (start 159.385 101.854) (end 159.385 100.076) (width 0.254) (layer Top) (net 4) (tstamp 59EF887D))
(segment (start 160.528 102.743) (end 159.385 101.854) (width 0.254) (layer Top) (net 4) (tstamp 59EF887C))
(segment (start 163.703 102.743) (end 160.528 102.743) (width 0.254) (layer Top) (net 4) (tstamp 59EF887A))
(segment (start 156.083 94.996) (end 156.083 95.123) (width 0.254) (layer Top) (net 4) (tstamp 59EF8889))
(segment (start 156.083 95.123) (end 156.083 95.6818) (width 0.1524) (layer Top) (net 4))
(segment (start 156.083 96.012) (end 156.083 95.123) (width 0.1524) (layer Top) (net 4) (tstamp 59778E7B))
(segment (start 167.6934 103.0478) (end 164.973 102.997) (width 0.508) (layer Bottom) (net 4) (status 10))
(segment (start 164.973 102.997) (end 164.846 103.124) (width 0.1524) (layer Bottom) (net 4) (tstamp 597791E7))
(segment (start 157.353 105.029) (end 156.591 105.791) (width 2) (layer Top) (net 5) (tstamp 59779198))
(segment (start 157.353 102.997) (end 157.353 105.029) (width 2) (layer Top) (net 5))
(segment (start 157.8394 97.4598) (end 157.8394 98.2764) (width 0.254) (layer Bottom) (net 6))
(segment (start 162.433 99.695) (end 162.44 97.7094) (width 0.254) (layer Bottom) (net 6) (tstamp 59EF88FB))
(segment (start 161.925 100.33) (end 162.433 99.695) (width 0.254) (layer Bottom) (net 6) (tstamp 59EF88FA))
(segment (start 159.639 100.33) (end 161.925 100.33) (width 0.254) (layer Bottom) (net 6) (tstamp 59EF88F7))
(segment (start 157.8394 98.2764) (end 159.639 100.33) (width 0.254) (layer Bottom) (net 6) (tstamp 59EF88F4))
(segment (start 162.44 97.7094) (end 162.44 97.162) (width 0.254) (layer Bottom) (net 6))
(segment (start 162.44 97.7094) (end 162.44 98.2275) (width 0.1524) (layer Bottom) (net 6))
(segment (start 166.0614 97.6249) (end 165.8239 97.6249) (width 0.254) (layer Bottom) (net 7))
(segment (start 165.8239 97.6249) (end 164.719 96.52) (width 0.254) (layer Bottom) (net 7) (tstamp 59EF890C))
(segment (start 164.719 96.52) (end 160.401 96.52) (width 0.254) (layer Bottom) (net 7) (tstamp 59EF890E))
(segment (start 160.401 96.52) (end 159.258 96.52) (width 0.254) (layer Bottom) (net 7) (tstamp 59EF8912))
(segment (start 159.258 96.52) (end 158.623 95.885) (width 0.254) (layer Bottom) (net 7) (tstamp 59EF8913))
(segment (start 158.623 95.885) (end 158.623 95.123) (width 0.254) (layer Bottom) (net 7) (tstamp 59EF8918))
(segment (start 158.623 95.123) (end 158.623 95.7961) (width 0.1524) (layer Top) (net 7))
(segment (start 158.623 96.012) (end 158.623 95.123) (width 0.1524) (layer Bottom) (net 7) (tstamp 59B8F3D4))
(segment (start 167.306 98.552) (end 165.989 97.282) (width 0.508) (layer Top) (net 8))
(segment (start 165.989 97.282) (end 164.084 96.647) (width 0.508) (layer Top) (net 8) (tstamp 59EF7C26))
(segment (start 164.084 96.647) (end 163.576 95.25) (width 0.508) (layer Top) (net 8) (tstamp 59EF7C29))
(segment (start 163.576 95.25) (end 163.703 95.123) (width 0.254) (layer Top) (net 8) (tstamp 59EF7C2E))
(segment (start 167.306 98.552) (end 167.2336 98.6536) (width 0.254) (layer Top) (net 8) (status 10))
(segment (start 168.449 105.791) (end 166.497 105.791) (width 0.254) (layer Top) (net 9))
(segment (start 166.497 105.791) (end 166.497 106.934) (width 0.254) (layer Bottom) (net 9) (tstamp 59778BCF))
(segment (start 166.497 106.934) (end 172.085 106.934) (width 0.254) (layer Bottom) (net 9) (tstamp 59778BD0))
(segment (start 172.085 106.934) (end 172.339 106.68) (width 0.254) (layer Bottom) (net 9) (tstamp 59778BD1))
(segment (start 172.339 106.68) (end 172.339 96.647) (width 0.254) (layer Bottom) (net 9) (tstamp 59778BD3))
(segment (start 172.339 96.647) (end 171.323 95.631) (width 0.254) (layer Bottom) (net 9) (tstamp 59778BD4))
(via (at 166.497 105.791) (size 0.6858) (drill 0.3302) (layers Top Bottom) (net 9))
(segment (start 171.323 95.631) (end 171.323 95.123) (width 0.1524) (layer Bottom) (net 9) (tstamp 59778BD8))
(segment (start 155.1394 97.4598) (end 155.1394 98.7514) (width 0.508) (layer Bottom) (net 10))
(segment (start 155.1394 98.7514) (end 154.432 99.4588) (width 0.508) (layer Bottom) (net 10) (tstamp 59EF7D25))
(segment (start 154.432 99.4588) (end 154.432 100.33) (width 0.508) (layer Bottom) (net 10) (tstamp 59EF7D27))
(segment (start 154.051 99.695) (end 154.051 99.5045) (width 0.1524) (layer Bottom) (net 10))
(segment (start 154.432 100.33) (end 156.21 100.33) (width 2) (layer Top) (net 10))
(segment (start 157.353 100.076) (end 157.353 100.457) (width 1) (layer Bottom) (net 10) (tstamp 59778AF3))
(segment (start 156.21 100.33) (end 157.353 100.457) (width 2) (layer Top) (net 10) (tstamp 59779195))
(zone (net 1) (net_name GND) (layer Top) (tstamp 59779F02) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254)
(fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 172.466 107.442) (xy 152.4 107.569) (xy 152.4 93.98) (xy 172.339 93.98)
)
)
(filled_polygon
(pts
(xy 153.67 94.996) (xy 153.69 94.996) (xy 153.69 95.25) (xy 153.67 95.25) (xy 153.67 96.49925)
(xy 153.82875 96.658) (xy 154.569309 96.658) (xy 154.802698 96.561327) (xy 154.981327 96.382699) (xy 155.037119 96.248006)
(xy 155.212357 96.423551) (xy 155.321 96.468664) (xy 155.321 96.774) (xy 155.325481 96.796527) (xy 155.322347 96.819278)
(xy 155.354337 96.941594) (xy 155.379004 97.065605) (xy 155.391764 97.084701) (xy 155.397575 97.106921) (xy 155.473942 97.20769)
(xy 155.544185 97.312815) (xy 155.563281 97.325575) (xy 155.577153 97.343879) (xy 155.686265 97.40775) (xy 155.791395 97.477996)
(xy 155.813922 97.482477) (xy 155.833742 97.494079) (xy 158.623 98.459592) (xy 158.623 99.429965) (xy 158.141672 99.024791)
(xy 157.533556 98.832) (xy 156.390556 98.705) (xy 156.299568 98.712816) (xy 156.21 98.695) (xy 154.432 98.695)
(xy 153.806313 98.819457) (xy 153.27588 99.17388) (xy 152.921457 99.704313) (xy 152.797 100.33) (xy 152.921457 100.955687)
(xy 153.261938 101.465255) (xy 153.222302 101.481673) (xy 153.043673 101.660301) (xy 152.947 101.89369) (xy 152.947 102.58425)
(xy 153.10575 102.743) (xy 154.305 102.743) (xy 154.305 102.723) (xy 154.559 102.723) (xy 154.559 102.743)
(xy 154.579 102.743) (xy 154.579 102.997) (xy 154.559 102.997) (xy 154.559 104.19625) (xy 154.71775 104.355)
(xy 155.408309 104.355) (xy 155.641698 104.258327) (xy 155.718 104.182025) (xy 155.718 104.35176) (xy 155.43488 104.63488)
(xy 155.417426 104.661001) (xy 155.260699 104.504273) (xy 155.02731 104.4076) (xy 154.33675 104.4076) (xy 154.178 104.56635)
(xy 154.178 105.7656) (xy 154.198 105.7656) (xy 154.198 106.0196) (xy 154.178 106.0196) (xy 154.178 106.0396)
(xy 153.924 106.0396) (xy 153.924 106.0196) (xy 153.904 106.0196) (xy 153.904 105.7656) (xy 153.924 105.7656)
(xy 153.924 104.56635) (xy 153.76525 104.4076) (xy 153.07469 104.4076) (xy 152.841301 104.504273) (xy 152.729 104.616575)
(xy 152.729 103.15575) (xy 152.947 103.15575) (xy 152.947 103.84631) (xy 153.043673 104.079699) (xy 153.222302 104.258327)
(xy 153.455691 104.355) (xy 154.14625 104.355) (xy 154.305 104.19625) (xy 154.305 102.997) (xy 153.10575 102.997)
(xy 152.947 103.15575) (xy 152.729 103.15575) (xy 152.729 96.658) (xy 153.25725 96.658) (xy 153.416 96.49925)
(xy 153.416 95.25) (xy 153.396 95.25) (xy 153.396 94.996) (xy 153.416 94.996) (xy 153.416 94.976)
(xy 153.67 94.976)
)
)
(filled_polygon
(pts
(xy 170.452357 96.423551) (xy 171.01633 96.657733) (xy 171.626991 96.658265) (xy 172.137 96.447534) (xy 172.137 99.911722)
(xy 172.05189 99.853569) (xy 171.8 99.80256) (xy 170.965454 99.80256) (xy 171.115698 99.740327) (xy 171.294327 99.561699)
(xy 171.391 99.32831) (xy 171.391 98.83775) (xy 171.23225 98.679) (xy 170.133 98.679) (xy 170.133 99.67825)
(xy 170.264071 99.809321) (xy 170.064683 99.846838) (xy 169.848559 99.98591) (xy 169.703569 100.19811) (xy 169.700919 100.211197)
(xy 169.56409 99.998559) (xy 169.418 99.89874) (xy 169.418 99.837) (xy 169.72025 99.837) (xy 169.879 99.67825)
(xy 169.879 98.679) (xy 169.859 98.679) (xy 169.859 98.425) (xy 169.879 98.425) (xy 169.879 97.42575)
(xy 170.133 97.42575) (xy 170.133 98.425) (xy 171.23225 98.425) (xy 171.391 98.26625) (xy 171.391 97.77569)
(xy 171.294327 97.542301) (xy 171.115698 97.363673) (xy 170.882309 97.267) (xy 170.29175 97.267) (xy 170.133 97.42575)
(xy 169.879 97.42575) (xy 169.72025 97.267) (xy 169.364492 97.267) (xy 169.359996 97.244395) (xy 169.300264 97.155)
(xy 169.194815 96.997184) (xy 168.85563 96.658) (xy 168.910002 96.658) (xy 168.910002 96.499252) (xy 169.06875 96.658)
(xy 169.809309 96.658) (xy 170.042698 96.561327) (xy 170.221327 96.382699) (xy 170.277119 96.248006)
)
)
(filled_polygon
(pts
(xy 168.91 94.996) (xy 168.93 94.996) (xy 168.93 95.25) (xy 168.91 95.25) (xy 168.91 95.27)
(xy 168.656 95.27) (xy 168.656 95.25) (xy 168.636 95.25) (xy 168.636 94.996) (xy 168.656 94.996)
(xy 168.656 94.976) (xy 168.91 94.976)
)
)
)
(zone (net 1) (net_name GND) (layer Bottom) (tstamp 59779F2D) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254)
(fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 172.466 107.442) (xy 152.4 107.569) (xy 152.4 93.98) (xy 172.339 93.98)
)
)
(filled_polygon
(pts
(xy 153.67 94.996) (xy 153.69 94.996) (xy 153.69 95.25) (xy 153.67 95.25) (xy 153.67 96.49925)
(xy 153.782139 96.611389) (xy 153.74196 96.8098) (xy 153.74196 98.1098) (xy 153.786238 98.345117) (xy 153.92531 98.561241)
(xy 154.012648 98.620916) (xy 153.803382 98.830182) (xy 153.793848 98.844451) (xy 153.778836 98.847437) (xy 153.548106 99.001606)
(xy 153.393937 99.232336) (xy 153.389313 99.255585) (xy 153.352853 99.279946) (xy 153.030946 99.761715) (xy 152.917907 100.33)
(xy 153.030946 100.898285) (xy 153.352853 101.380054) (xy 153.396777 101.409403) (xy 153.222302 101.481673) (xy 153.043673 101.660301)
(xy 152.947 101.89369) (xy 152.947 102.58425) (xy 153.10575 102.743) (xy 154.305 102.743) (xy 154.305 102.723)
(xy 154.559 102.723) (xy 154.559 102.743) (xy 155.75825 102.743) (xy 155.917 102.58425) (xy 155.917 101.89369)
(xy 155.820327 101.660301) (xy 155.641698 101.481673) (xy 155.467223 101.409403) (xy 155.511147 101.380054) (xy 155.833054 100.898285)
(xy 155.946093 100.33) (xy 155.833054 99.761715) (xy 155.654118 99.493918) (xy 155.768018 99.380018) (xy 155.96073 99.091605)
(xy 156.0284 98.7514) (xy 156.0284 98.731085) (xy 156.124717 98.712962) (xy 156.340841 98.57389) (xy 156.485831 98.36169)
(xy 156.488481 98.348603) (xy 156.62531 98.561241) (xy 156.83751 98.706231) (xy 157.0894 98.75724) (xy 157.253984 98.75724)
(xy 157.26631 98.778607) (xy 157.420359 98.954399) (xy 157.353 98.941) (xy 156.918654 99.027397) (xy 156.550434 99.273434)
(xy 156.528767 99.305861) (xy 156.169371 99.66463) (xy 155.956243 100.1779) (xy 155.955758 100.733661) (xy 156.16799 101.247303)
(xy 156.56063 101.640629) (xy 156.768512 101.726949) (xy 156.562697 101.81199) (xy 156.169371 102.20463) (xy 155.956243 102.7179)
(xy 155.955758 103.273661) (xy 156.16799 103.787303) (xy 156.56063 104.180629) (xy 157.0739 104.393757) (xy 157.629661 104.394242)
(xy 158.143303 104.18201) (xy 158.536629 103.78937) (xy 158.749757 103.2761) (xy 158.750242 102.720339) (xy 158.53801 102.206697)
(xy 158.14537 101.813371) (xy 157.937488 101.727051) (xy 158.143303 101.64201) (xy 158.536629 101.24937) (xy 158.749757 100.7361)
(xy 158.749988 100.471695) (xy 159.06591 100.832207) (xy 159.086067 100.847686) (xy 159.100185 100.868815) (xy 159.203329 100.937734)
(xy 159.301721 101.013291) (xy 159.326265 101.019877) (xy 159.347395 101.033996) (xy 159.469069 101.058199) (xy 159.588878 101.090349)
(xy 159.614073 101.087042) (xy 159.639 101.092) (xy 160.05821 101.092) (xy 160.057931 101.412663) (xy 160.206493 101.772212)
(xy 160.345997 101.91196) (xy 160.29 101.91196) (xy 160.054683 101.956238) (xy 159.838559 102.09531) (xy 159.693569 102.30751)
(xy 159.64256 102.5594) (xy 159.64256 103.761074) (xy 159.448559 103.88591) (xy 159.303569 104.09811) (xy 159.25256 104.35)
(xy 159.25256 105.65) (xy 159.296838 105.885317) (xy 159.43591 106.101441) (xy 159.64811 106.246431) (xy 159.9 106.29744)
(xy 161.4 106.29744) (xy 161.635317 106.253162) (xy 161.851441 106.11409) (xy 161.996431 105.90189) (xy 162.003191 105.86851)
(xy 162.061673 106.009699) (xy 162.240302 106.188327) (xy 162.473691 106.285) (xy 163.06425 106.285) (xy 163.223 106.12625)
(xy 163.223 105.127) (xy 163.477 105.127) (xy 163.477 106.12625) (xy 163.63575 106.285) (xy 164.226309 106.285)
(xy 164.459698 106.188327) (xy 164.638327 106.009699) (xy 164.735 105.77631) (xy 164.735 105.28575) (xy 164.57625 105.127)
(xy 163.477 105.127) (xy 163.223 105.127) (xy 163.203 105.127) (xy 163.203 104.873) (xy 163.223 104.873)
(xy 163.223 103.87375) (xy 163.477 103.87375) (xy 163.477 104.873) (xy 164.57625 104.873) (xy 164.735 104.71425)
(xy 164.735 104.393793) (xy 165.249661 104.394242) (xy 165.763303 104.18201) (xy 166.039721 103.906075) (xy 166.11656 103.907509)
(xy 166.11656 103.974) (xy 166.160838 104.209317) (xy 166.29991 104.425441) (xy 166.51211 104.570431) (xy 166.764 104.62144)
(xy 168.064 104.62144) (xy 168.299317 104.577162) (xy 168.515441 104.43809) (xy 168.660431 104.22589) (xy 168.71144 103.974)
(xy 168.71144 103.40975) (xy 169.629 103.40975) (xy 169.629 104.10031) (xy 169.725673 104.333699) (xy 169.904302 104.512327)
(xy 170.137691 104.609) (xy 170.62825 104.609) (xy 170.787 104.45025) (xy 170.787 103.251) (xy 169.78775 103.251)
(xy 169.629 103.40975) (xy 168.71144 103.40975) (xy 168.71144 102.274) (xy 168.687674 102.14769) (xy 169.629 102.14769)
(xy 169.629 102.83825) (xy 169.78775 102.997) (xy 170.787 102.997) (xy 170.787 101.79775) (xy 170.62825 101.639)
(xy 170.137691 101.639) (xy 169.904302 101.735673) (xy 169.725673 101.914301) (xy 169.629 102.14769) (xy 168.687674 102.14769)
(xy 168.667162 102.038683) (xy 168.52809 101.822559) (xy 168.31589 101.677569) (xy 168.064 101.62656) (xy 166.764 101.62656)
(xy 166.528683 101.670838) (xy 166.312559 101.80991) (xy 166.167569 102.02211) (xy 166.145772 102.129745) (xy 166.079966 102.128516)
(xy 165.76537 101.813371) (xy 165.557488 101.727051) (xy 165.763303 101.64201) (xy 166.156629 101.24937) (xy 166.369757 100.7361)
(xy 166.370242 100.180339) (xy 166.15801 99.666697) (xy 165.76537 99.273371) (xy 165.2521 99.060243) (xy 164.696339 99.059758)
(xy 164.182697 99.27199) (xy 163.789371 99.66463) (xy 163.576243 100.1779) (xy 163.575758 100.733661) (xy 163.78799 101.247303)
(xy 164.18063 101.640629) (xy 164.388512 101.726949) (xy 164.182697 101.81199) (xy 163.789371 102.20463) (xy 163.576243 102.7179)
(xy 163.575758 103.273661) (xy 163.758115 103.715) (xy 163.63575 103.715) (xy 163.477 103.87375) (xy 163.223 103.87375)
(xy 163.06425 103.715) (xy 162.93744 103.715) (xy 162.93744 102.5594) (xy 162.893162 102.324083) (xy 162.75409 102.107959)
(xy 162.54189 101.962969) (xy 162.29 101.91196) (xy 162.052 101.91196) (xy 162.052 101.473) (xy 162.013846 101.281188)
(xy 162.014016 101.085796) (xy 162.111398 101.054923) (xy 162.216605 101.033996) (xy 162.251994 101.01035) (xy 162.292564 100.997488)
(xy 162.374628 100.928408) (xy 162.463815 100.868815) (xy 162.48746 100.833428) (xy 162.520022 100.806018) (xy 163.028022 100.171017)
(xy 163.076793 100.076968) (xy 163.135964 99.989085) (xy 163.144681 99.946053) (xy 163.164893 99.907077) (xy 163.17396 99.801521)
(xy 163.194995 99.697686) (xy 163.197502 98.986612) (xy 163.325317 98.962562) (xy 163.541441 98.82349) (xy 163.686431 98.61129)
(xy 163.73744 98.3594) (xy 163.73744 97.282) (xy 164.40337 97.282) (xy 164.66396 97.54259) (xy 164.66396 98.2749)
(xy 164.708238 98.510217) (xy 164.84731 98.726341) (xy 165.05951 98.871331) (xy 165.3114 98.92234) (xy 166.8114 98.92234)
(xy 167.046717 98.878062) (xy 167.262841 98.73899) (xy 167.407831 98.52679) (xy 167.414591 98.49341) (xy 167.473073 98.634599)
(xy 167.651702 98.813227) (xy 167.885091 98.9099) (xy 168.47565 98.9099) (xy 168.6344 98.75115) (xy 168.6344 97.7519)
(xy 168.8884 97.7519) (xy 168.8884 98.75115) (xy 169.04715 98.9099) (xy 169.637709 98.9099) (xy 169.871098 98.813227)
(xy 170.049727 98.634599) (xy 170.1464 98.40121) (xy 170.1464 97.91065) (xy 169.98765 97.7519) (xy 168.8884 97.7519)
(xy 168.6344 97.7519) (xy 168.6144 97.7519) (xy 168.6144 97.4979) (xy 168.6344 97.4979) (xy 168.6344 96.52085)
(xy 168.656 96.49925) (xy 168.656 95.25) (xy 168.636 95.25) (xy 168.636 94.996) (xy 168.656 94.996)
(xy 168.656 94.976) (xy 168.91 94.976) (xy 168.91 94.996) (xy 168.93 94.996) (xy 168.93 95.25)