-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbadge.kicad_pcb
7384 lines (7298 loc) · 638 KB
/
badge.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 20171130) (host pcbnew 5.1.5-52549c5~84~ubuntu19.04.1)
(general
(thickness 1.6)
(drawings 2)
(tracks 806)
(zones 0)
(modules 78)
(nets 79)
)
(page A4)
(layers
(0 F.Cu signal hide)
(31 B.Cu signal)
(32 B.Adhes user hide)
(33 F.Adhes user hide)
(34 B.Paste user)
(35 F.Paste user hide)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user hide)
(39 F.Mask user hide)
(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.1524)
(user_trace_width 0.1524)
(user_trace_width 0.254)
(user_trace_width 0.508)
(user_trace_width 1.27)
(trace_clearance 0.1524)
(zone_clearance 0.1524)
(zone_45_only yes)
(trace_min 0.1524)
(via_size 0.508)
(via_drill 0.254)
(via_min_size 0.508)
(via_min_drill 0.254)
(user_via 0.508 0.254)
(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.2)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 0.762 0.762)
(mod_text_width 0.1524)
(pad_size 2.9 2.9)
(pad_drill 0)
(pad_to_mask_clearance 0.0254)
(aux_axis_origin 107.475 123.85)
(grid_origin 95.475 81.925)
(visible_elements 7FFFFF7F)
(pcbplotparams
(layerselection 0x010fc_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 true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerbers/"))
)
(net 0 "")
(net 1 +5P)
(net 2 +BATT)
(net 3 CHGSTAT)
(net 4 GND)
(net 5 "Net-(IC1-Pad7)")
(net 6 "Net-(IC1-Pad8)")
(net 7 "Net-(IC2-Pad1)")
(net 8 "Net-(IC2-Pad3)")
(net 9 VBUS)
(net 10 SW_B)
(net 11 SW_A)
(net 12 XL1)
(net 13 XL2)
(net 14 +3V0)
(net 15 "Net-(U3-Pad20)")
(net 16 "Net-(U3-Pad21)")
(net 17 "Net-(U3-Pad22)")
(net 18 "Net-(U3-Pad23)")
(net 19 LCD_DC)
(net 20 NFC1)
(net 21 NFC2)
(net 22 LCD_CLK)
(net 23 LCD_MOSI)
(net 24 LCD_RST)
(net 25 LCD_CS)
(net 26 LCD_TE)
(net 27 QSPI_~CS)
(net 28 QSPI_DIO1)
(net 29 QSPI_CLK)
(net 30 QSPI_DIO0)
(net 31 ~RESET)
(net 32 QSPI_DIO2)
(net 33 QSPI_DIO3)
(net 34 SWCLK)
(net 35 SWDIO)
(net 36 MIC_BCLK)
(net 37 MIC_SEL)
(net 38 MIC_WS)
(net 39 "Net-(U3-Pad53)")
(net 40 "Net-(U3-Pad54)")
(net 41 ACC_INT)
(net 42 GES_INT)
(net 43 ACC_AG_NT)
(net 44 MIC_DATAOUT)
(net 45 "Net-(U3-Pad61)")
(net 46 "Net-(U3-Pad62)")
(net 47 IIC_SCL)
(net 48 IIC_SDA)
(net 49 D-)
(net 50 D+)
(net 51 "Net-(U5-Pad13)")
(net 52 "Net-(U5-Pad12)")
(net 53 "Net-(U5-Pad9)")
(net 54 "Net-(R10-Pad1)")
(net 55 "Net-(R11-Pad1)")
(net 56 "Net-(R13-Pad1)")
(net 57 "Net-(R12-Pad1)")
(net 58 "Net-(C9-Pad2)")
(net 59 "Net-(C10-Pad2)")
(net 60 LCD_BL)
(net 61 "Net-(C13-Pad1)")
(net 62 "Net-(R16-Pad1)")
(net 63 "Net-(R15-Pad1)")
(net 64 "Net-(U2-Pad4)")
(net 65 "Net-(U7-Pad3)")
(net 66 "Net-(J1-Pad4)")
(net 67 "Net-(U3-Pad48)")
(net 68 "Net-(U3-Pad60)")
(net 69 "Net-(U3-Pad52)")
(net 70 "Net-(U3-Pad37)")
(net 71 "Net-(U3-Pad49)")
(net 72 "Net-(R6-Pad1)")
(net 73 "Net-(Q2-Pad3)")
(net 74 SW_C)
(net 75 "Net-(U3-Pad42)")
(net 76 SW_D)
(net 77 BATVSENSE)
(net 78 "Net-(U3-Pad36)")
(net_class Default "This is the default net class."
(clearance 0.1524)
(trace_width 0.1524)
(via_dia 0.508)
(via_drill 0.254)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net +3V0)
(add_net +5P)
(add_net +BATT)
(add_net ACC_AG_NT)
(add_net ACC_INT)
(add_net BATVSENSE)
(add_net CHGSTAT)
(add_net D+)
(add_net D-)
(add_net GES_INT)
(add_net GND)
(add_net IIC_SCL)
(add_net IIC_SDA)
(add_net LCD_BL)
(add_net LCD_CLK)
(add_net LCD_CS)
(add_net LCD_DC)
(add_net LCD_MOSI)
(add_net LCD_RST)
(add_net LCD_TE)
(add_net MIC_BCLK)
(add_net MIC_DATAOUT)
(add_net MIC_SEL)
(add_net MIC_WS)
(add_net NFC1)
(add_net NFC2)
(add_net "Net-(C10-Pad2)")
(add_net "Net-(C13-Pad1)")
(add_net "Net-(C9-Pad2)")
(add_net "Net-(IC1-Pad7)")
(add_net "Net-(IC1-Pad8)")
(add_net "Net-(IC2-Pad1)")
(add_net "Net-(IC2-Pad3)")
(add_net "Net-(J1-Pad4)")
(add_net "Net-(Q2-Pad3)")
(add_net "Net-(R10-Pad1)")
(add_net "Net-(R11-Pad1)")
(add_net "Net-(R12-Pad1)")
(add_net "Net-(R13-Pad1)")
(add_net "Net-(R15-Pad1)")
(add_net "Net-(R16-Pad1)")
(add_net "Net-(R6-Pad1)")
(add_net "Net-(U2-Pad4)")
(add_net "Net-(U3-Pad20)")
(add_net "Net-(U3-Pad21)")
(add_net "Net-(U3-Pad22)")
(add_net "Net-(U3-Pad23)")
(add_net "Net-(U3-Pad36)")
(add_net "Net-(U3-Pad37)")
(add_net "Net-(U3-Pad42)")
(add_net "Net-(U3-Pad48)")
(add_net "Net-(U3-Pad49)")
(add_net "Net-(U3-Pad52)")
(add_net "Net-(U3-Pad53)")
(add_net "Net-(U3-Pad54)")
(add_net "Net-(U3-Pad60)")
(add_net "Net-(U3-Pad61)")
(add_net "Net-(U3-Pad62)")
(add_net "Net-(U5-Pad12)")
(add_net "Net-(U5-Pad13)")
(add_net "Net-(U5-Pad9)")
(add_net "Net-(U7-Pad3)")
(add_net QSPI_CLK)
(add_net QSPI_DIO0)
(add_net QSPI_DIO1)
(add_net QSPI_DIO2)
(add_net QSPI_DIO3)
(add_net QSPI_~CS)
(add_net SWCLK)
(add_net SWDIO)
(add_net SW_A)
(add_net SW_B)
(add_net SW_C)
(add_net SW_D)
(add_net VBUS)
(add_net XL1)
(add_net XL2)
(add_net ~RESET)
)
(module Badge-PCB:M3 (layer F.Cu) (tedit 5E3F50F5) (tstamp 5E3FCA5F)
(at 138.94202 116.25564)
(descr "Mounting Hole 3.2mm, no annular, M3, ISO7380")
(tags "mounting hole 3.2mm no annular m3 iso7380")
(attr virtual)
(fp_text reference REF** (at 0 -3.85) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value M3 (at 0 3.85) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 2.9 2.9) (drill 2.9) (layers *.Cu *.Mask)
(clearance 0.6))
)
(module Badge-PCB:M3 (layer F.Cu) (tedit 5E3F50F5) (tstamp 5E3F55C6)
(at 101.444 116.2531)
(descr "Mounting Hole 3.2mm, no annular, M3, ISO7380")
(tags "mounting hole 3.2mm no annular m3 iso7380")
(attr virtual)
(fp_text reference REF** (at 0 -3.85) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value M3 (at 0 3.85) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 2.9 2.9) (drill 2.9) (layers *.Cu *.Mask)
(clearance 0.6))
)
(module Badge-PCB:M3 (layer F.Cu) (tedit 5E3F50F5) (tstamp 5E3F55B9)
(at 138.92932 78.75508)
(descr "Mounting Hole 3.2mm, no annular, M3, ISO7380")
(tags "mounting hole 3.2mm no annular m3 iso7380")
(attr virtual)
(fp_text reference REF** (at 0 -3.85) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value M3 (at 0 3.85) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 2.9 2.9) (drill 2.9) (layers *.Cu *.Mask)
(clearance 0.6))
)
(module Badge-PCB:M3 (layer F.Cu) (tedit 5E3F50F5) (tstamp 5E3F55AC)
(at 138.9725 78.7373)
(descr "Mounting Hole 3.2mm, no annular, M3, ISO7380")
(tags "mounting hole 3.2mm no annular m3 iso7380")
(attr virtual)
(fp_text reference REF** (at 0 -3.85) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value M3 (at 0 3.85) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 2.9 2.9) (drill 2.9) (layers *.Cu *.Mask)
(clearance 0.6))
)
(module Badge-PCB:M3 (layer F.Cu) (tedit 5E3F50F5) (tstamp 5E3F4FA8)
(at 101.43638 78.75254)
(descr "Mounting Hole 3.2mm, no annular, M3, ISO7380")
(tags "mounting hole 3.2mm no annular m3 iso7380")
(attr virtual)
(fp_text reference REF** (at 0 -3.85) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value M3 (at 0 3.85) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0.3 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 0 0) (size 2.9 2.9) (drill 2.9) (layers *.Cu *.Mask)
(clearance 0.6))
)
(module Badge-PCB:pcb-top locked (layer F.Cu) (tedit 5E1DD97F) (tstamp 5E3FC771)
(at 96.9848 100.0248)
(fp_text reference Ref** (at -2.54 3.9878) (layer F.SilkS) hide
(effects (font (size 0.762 0.762) (thickness 0.1524)))
)
(fp_text value Val** (at -2.4638 6.223) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
)
(fp_line (start 41.956168 14.73113) (end 41.956168 14.73113) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.662121 14.760193) (end 41.956168 14.73113) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.382052 14.845278) (end 41.662121 14.760193) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.123834 14.983123) (end 41.382052 14.845278) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.895339 15.170469) (end 41.123834 14.983123) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.707993 15.398964) (end 40.895339 15.170469) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.570147 15.657181) (end 40.707993 15.398964) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.485062 15.93725) (end 40.570147 15.657181) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.455998 16.231297) (end 40.485062 15.93725) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.485062 16.525344) (end 40.455998 16.231297) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.570146 16.805413) (end 40.485062 16.525344) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.707992 17.063631) (end 40.570146 16.805413) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.895338 17.292127) (end 40.707992 17.063631) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.123833 17.479473) (end 40.895338 17.292127) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.382052 17.617318) (end 41.123833 17.479473) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.662121 17.702403) (end 41.382052 17.617318) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.956168 17.731466) (end 41.662121 17.702403) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.250214 17.702401) (end 41.956168 17.731466) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.530281 17.617315) (end 42.250214 17.702401) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.788498 17.479469) (end 42.530281 17.617315) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.016991 17.292123) (end 42.788498 17.479469) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.204336 17.063628) (end 43.016991 17.292123) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.342181 16.805411) (end 43.204336 17.063628) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.427265 16.525343) (end 43.342181 16.805411) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.456328 16.231297) (end 43.427265 16.525343) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.427264 15.937251) (end 43.456328 16.231297) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.34218 15.657184) (end 43.427264 15.937251) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.204335 15.398967) (end 43.34218 15.657184) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.016991 15.170472) (end 43.204335 15.398967) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.788497 14.983127) (end 43.016991 15.170472) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.530281 14.845281) (end 42.788497 14.983127) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.250214 14.760195) (end 42.530281 14.845281) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.956168 14.73113) (end 42.250214 14.760195) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.456128 14.73113) (end 4.456128 14.73113) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.162081 14.760194) (end 4.456128 14.73113) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.882013 14.845279) (end 4.162081 14.760194) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.623796 14.983124) (end 3.882013 14.845279) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.395301 15.17047) (end 3.623796 14.983124) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.207956 15.398965) (end 3.395301 15.17047) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.070111 15.657182) (end 3.207956 15.398965) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.985026 15.93725) (end 3.070111 15.657182) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.955962 16.231297) (end 2.985026 15.93725) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.985026 16.525344) (end 2.955962 16.231297) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.07011 16.805412) (end 2.985026 16.525344) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.207955 17.06363) (end 3.07011 16.805412) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.395301 17.292125) (end 3.207955 17.06363) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.623795 17.479471) (end 3.395301 17.292125) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.882013 17.617317) (end 3.623795 17.479471) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.162081 17.702402) (end 3.882013 17.617317) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.456128 17.731466) (end 4.162081 17.702402) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.750175 17.702402) (end 4.456128 17.731466) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.030243 17.617317) (end 4.750175 17.702402) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.288461 17.479471) (end 5.030243 17.617317) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.516955 17.292125) (end 5.288461 17.479471) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.704301 17.06363) (end 5.516955 17.292125) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.842146 16.805412) (end 5.704301 17.06363) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.92723 16.525344) (end 5.842146 16.805412) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.956294 16.231297) (end 5.92723 16.525344) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.92723 15.93725) (end 5.956294 16.231297) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.842145 15.657182) (end 5.92723 15.93725) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.7043 15.398965) (end 5.842145 15.657182) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.516955 15.17047) (end 5.7043 15.398965) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.28846 14.983124) (end 5.516955 15.17047) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.030243 14.845279) (end 5.28846 14.983124) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.750175 14.760194) (end 5.030243 14.845279) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.456128 14.73113) (end 4.750175 14.760194) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.62991 -12.983974) (end 10.62991 -12.983974) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.496277 -12.970582) (end 10.62991 -12.983974) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.371962 -12.932153) (end 10.496277 -12.970582) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.259584 -12.871306) (end 10.371962 -12.932153) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.161763 -12.790663) (end 10.259584 -12.871306) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.081119 -12.692842) (end 10.161763 -12.790663) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.020273 -12.580464) (end 10.081119 -12.692842) (layer Edge.Cuts) (width 0.1))
(fp_line (start 9.981844 -12.456148) (end 10.020273 -12.580464) (layer Edge.Cuts) (width 0.1))
(fp_line (start 9.968452 -12.322516) (end 9.981844 -12.456148) (layer Edge.Cuts) (width 0.1))
(fp_line (start 9.968452 7.285073) (end 9.968452 -12.322516) (layer Edge.Cuts) (width 0.1))
(fp_line (start 9.981844 7.418706) (end 9.968452 7.285073) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.020273 7.543021) (end 9.981844 7.418706) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.081119 7.655399) (end 10.020273 7.543021) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.161763 7.75322) (end 10.081119 7.655399) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.259584 7.833864) (end 10.161763 7.75322) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.371962 7.89471) (end 10.259584 7.833864) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.496277 7.933139) (end 10.371962 7.89471) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.62991 7.946531) (end 10.496277 7.933139) (layer Edge.Cuts) (width 0.1))
(fp_line (start 13.858655 7.946531) (end 10.62991 7.946531) (layer Edge.Cuts) (width 0.1))
(fp_line (start 13.992288 7.933139) (end 13.858655 7.946531) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.116603 7.89471) (end 13.992288 7.933139) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.228981 7.833864) (end 14.116603 7.89471) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.326802 7.75322) (end 14.228981 7.833864) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.407446 7.655399) (end 14.326802 7.75322) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.468292 7.543021) (end 14.407446 7.655399) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.506721 7.418706) (end 14.468292 7.543021) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.520113 7.285073) (end 14.506721 7.418706) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.520113 -12.322516) (end 14.520113 7.285073) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.506721 -12.456148) (end 14.520113 -12.322516) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.468292 -12.580464) (end 14.506721 -12.456148) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.407446 -12.692842) (end 14.468292 -12.580464) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.326802 -12.790663) (end 14.407446 -12.692842) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.228981 -12.871306) (end 14.326802 -12.790663) (layer Edge.Cuts) (width 0.1))
(fp_line (start 14.116603 -12.932153) (end 14.228981 -12.871306) (layer Edge.Cuts) (width 0.1))
(fp_line (start 13.992288 -12.970582) (end 14.116603 -12.932153) (layer Edge.Cuts) (width 0.1))
(fp_line (start 13.858655 -12.983974) (end 13.992288 -12.970582) (layer Edge.Cuts) (width 0.1))
(fp_line (start 10.62991 -12.983974) (end 13.858655 -12.983974) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.956168 -22.76839) (end 41.956168 -22.76839) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.802814 -22.760664) (end 41.956168 -22.76839) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.653886 -22.737954) (end 41.802814 -22.760664) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.372331 -22.650597) (end 41.653886 -22.737954) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.117532 -22.512347) (end 41.372331 -22.650597) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.895522 -22.329234) (end 41.117532 -22.512347) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.712332 -22.107287) (end 40.895522 -22.329234) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.573993 -21.852537) (end 40.712332 -22.107287) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.486538 -21.571011) (end 40.573993 -21.852537) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.463777 -21.422092) (end 40.486538 -21.571011) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.455998 -21.26874) (end 40.463777 -21.422092) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.485062 -20.974693) (end 40.455998 -21.26874) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.570147 -20.694624) (end 40.485062 -20.974693) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.707993 -20.436407) (end 40.570147 -20.694624) (layer Edge.Cuts) (width 0.1))
(fp_line (start 40.895339 -20.207912) (end 40.707993 -20.436407) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.123834 -20.020566) (end 40.895339 -20.207912) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.382052 -19.882721) (end 41.123834 -20.020566) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.662121 -19.797636) (end 41.382052 -19.882721) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.956168 -19.768573) (end 41.662121 -19.797636) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.250214 -19.797638) (end 41.956168 -19.768573) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.530281 -19.882724) (end 42.250214 -19.797638) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.788497 -20.02057) (end 42.530281 -19.882724) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.016991 -20.207915) (end 42.788497 -20.02057) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.204335 -20.43641) (end 43.016991 -20.207915) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.34218 -20.694627) (end 43.204335 -20.43641) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.427264 -20.974694) (end 43.34218 -20.694627) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.456328 -21.26874) (end 43.427264 -20.974694) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.448549 -21.422091) (end 43.456328 -21.26874) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.425788 -21.57101) (end 43.448549 -21.422091) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.338334 -21.852534) (end 43.425788 -21.57101) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.199996 -22.107284) (end 43.338334 -21.852534) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.016808 -22.32923) (end 43.199996 -22.107284) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.794799 -22.512344) (end 43.016808 -22.32923) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.540002 -22.650594) (end 42.794799 -22.512344) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.258448 -22.737953) (end 42.540002 -22.650594) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.109522 -22.760663) (end 42.258448 -22.737953) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.956168 -22.76839) (end 42.109522 -22.760663) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.456128 -22.76839) (end 4.456128 -22.76839) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.302774 -22.760664) (end 4.456128 -22.76839) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.153847 -22.737954) (end 4.302774 -22.760664) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.872292 -22.650596) (end 4.153847 -22.737954) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.617494 -22.512346) (end 3.872292 -22.650596) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.395484 -22.329233) (end 3.617494 -22.512346) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.212295 -22.107286) (end 3.395484 -22.329233) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.073957 -21.852536) (end 3.212295 -22.107286) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.986502 -21.57101) (end 3.073957 -21.852536) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.963741 -21.422092) (end 2.986502 -21.57101) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.955962 -21.26874) (end 2.963741 -21.422092) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.985026 -20.974693) (end 2.955962 -21.26874) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.070111 -20.694625) (end 2.985026 -20.974693) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.207956 -20.436408) (end 3.070111 -20.694625) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.395301 -20.207913) (end 3.207956 -20.436408) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.623796 -20.020567) (end 3.395301 -20.207913) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.882013 -19.882722) (end 3.623796 -20.020567) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.162081 -19.797637) (end 3.882013 -19.882722) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.456128 -19.768573) (end 4.162081 -19.797637) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.750175 -19.797637) (end 4.456128 -19.768573) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.030243 -19.882722) (end 4.750175 -19.797637) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.28846 -20.020567) (end 5.030243 -19.882722) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.516955 -20.207913) (end 5.28846 -20.020567) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.7043 -20.436408) (end 5.516955 -20.207913) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.842145 -20.694625) (end 5.7043 -20.436408) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.92723 -20.974693) (end 5.842145 -20.694625) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.956294 -21.26874) (end 5.92723 -20.974693) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.948515 -21.422092) (end 5.956294 -21.26874) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.925754 -21.57101) (end 5.948515 -21.422092) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.838299 -21.852536) (end 5.925754 -21.57101) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.699961 -22.107286) (end 5.838299 -21.852536) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.516772 -22.329233) (end 5.699961 -22.107286) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.294762 -22.512346) (end 5.516772 -22.329233) (layer Edge.Cuts) (width 0.1))
(fp_line (start 5.039964 -22.650596) (end 5.294762 -22.512346) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.758409 -22.737954) (end 5.039964 -22.650596) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.609482 -22.760664) (end 4.758409 -22.737954) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.456128 -22.76839) (end 4.609482 -22.760664) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.634738 -24.018443) (end 4.777554 -24.018443) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.949638 -24.002647) (end 41.634738 -24.018443) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.255237 -23.956271) (end 41.949638 -24.002647) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.550015 -23.880837) (end 42.255237 -23.956271) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.832452 -23.777862) (end 42.550015 -23.880837) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.101028 -23.648868) (end 42.832452 -23.777862) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.354223 -23.495374) (end 43.101028 -23.648868) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.590518 -23.3189) (end 43.354223 -23.495374) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.808392 -23.120967) (end 43.590518 -23.3189) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.006326 -22.903092) (end 43.808392 -23.120967) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.182799 -22.666797) (end 44.006326 -22.903092) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.336293 -22.413602) (end 44.182799 -22.666797) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.465287 -22.145026) (end 44.336293 -22.413602) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.568262 -21.862589) (end 44.465287 -22.145026) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.643696 -21.567811) (end 44.568262 -21.862589) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.690072 -21.262212) (end 44.643696 -21.567811) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.705868 -20.947311) (end 44.690072 -21.262212) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.705868 15.90987) (end 44.705868 -20.947311) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.690072 16.224777) (end 44.705868 15.90987) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.643696 16.530392) (end 44.690072 16.224777) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.568262 16.825196) (end 44.643696 16.530392) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.465287 17.107666) (end 44.568262 16.825196) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.336293 17.376282) (end 44.465287 17.107666) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.182799 17.629521) (end 44.336293 17.376282) (layer Edge.Cuts) (width 0.1))
(fp_line (start 44.006326 17.865862) (end 44.182799 17.629521) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.808392 18.083784) (end 44.006326 17.865862) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.590518 18.281767) (end 43.808392 18.083784) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.354223 18.458287) (end 43.590518 18.281767) (layer Edge.Cuts) (width 0.1))
(fp_line (start 43.101028 18.611824) (end 43.354223 18.458287) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.832452 18.740858) (end 43.101028 18.611824) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.550015 18.843865) (end 42.832452 18.740858) (layer Edge.Cuts) (width 0.1))
(fp_line (start 42.255237 18.919325) (end 42.550015 18.843865) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.949638 18.965717) (end 42.255237 18.919325) (layer Edge.Cuts) (width 0.1))
(fp_line (start 41.634738 18.981519) (end 41.949638 18.965717) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.777554 18.981519) (end 41.634738 18.981519) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.462648 18.965717) (end 4.777554 18.981519) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.157033 18.919325) (end 4.462648 18.965717) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.86223 18.843865) (end 4.157033 18.919325) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.57976 18.740858) (end 3.86223 18.843865) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.311145 18.611824) (end 3.57976 18.740858) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.057907 18.458287) (end 3.311145 18.611824) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.821565 18.281767) (end 3.057907 18.458287) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.603643 18.083784) (end 2.821565 18.281767) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.405661 17.865862) (end 2.603643 18.083784) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.229141 17.629521) (end 2.405661 17.865862) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.075603 17.376282) (end 2.229141 17.629521) (layer Edge.Cuts) (width 0.1))
(fp_line (start 1.94657 17.107666) (end 2.075603 17.376282) (layer Edge.Cuts) (width 0.1))
(fp_line (start 1.843563 16.825196) (end 1.94657 17.107666) (layer Edge.Cuts) (width 0.1))
(fp_line (start 1.768103 16.530392) (end 1.843563 16.825196) (layer Edge.Cuts) (width 0.1))
(fp_line (start 1.721711 16.224777) (end 1.768103 16.530392) (layer Edge.Cuts) (width 0.1))
(fp_line (start 1.705909 15.90987) (end 1.721711 16.224777) (layer Edge.Cuts) (width 0.1))
(fp_line (start 1.705909 -20.947311) (end 1.705909 15.90987) (layer Edge.Cuts) (width 0.1))
(fp_line (start 1.721711 -21.262212) (end 1.705909 -20.947311) (layer Edge.Cuts) (width 0.1))
(fp_line (start 1.768103 -21.567811) (end 1.721711 -21.262212) (layer Edge.Cuts) (width 0.1))
(fp_line (start 1.843563 -21.862589) (end 1.768103 -21.567811) (layer Edge.Cuts) (width 0.1))
(fp_line (start 1.94657 -22.145026) (end 1.843563 -21.862589) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.075603 -22.413602) (end 1.94657 -22.145026) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.229141 -22.666797) (end 2.075603 -22.413602) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.405661 -22.903091) (end 2.229141 -22.666797) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.603643 -23.120965) (end 2.405661 -22.903091) (layer Edge.Cuts) (width 0.1))
(fp_line (start 2.821565 -23.318899) (end 2.603643 -23.120965) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.057907 -23.495373) (end 2.821565 -23.318899) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.311145 -23.648867) (end 3.057907 -23.495373) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.57976 -23.777861) (end 3.311145 -23.648867) (layer Edge.Cuts) (width 0.1))
(fp_line (start 3.86223 -23.880835) (end 3.57976 -23.777861) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.157033 -23.95627) (end 3.86223 -23.880835) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.462648 -24.002646) (end 4.157033 -23.95627) (layer Edge.Cuts) (width 0.1))
(fp_line (start 4.777554 -24.018443) (end 4.462648 -24.002646) (layer Edge.Cuts) (width 0.1))
(model ${KIPRJMOD}/3d_part_models/TFT_LCD_4421.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Badge-PCB:USB_Micro-B_Molex-105017-0001 (layer B.Cu) (tedit 5E3DE34D) (tstamp 5E1FB700)
(at 122.075 78.675)
(descr http://www.molex.com/pdm_docs/sd/1050170001_sd.pdf)
(tags "Micro-USB SMD Typ-B")
(path /5E163B77)
(attr smd)
(fp_text reference J1 (at 5.475 -1.5) (layer B.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.1524)) (justify mirror))
)
(fp_text value USB_B_Micro (at 0.3 -4.3375) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user "PCB Edge" (at 0 -2.6875) (layer Dwgs.User)
(effects (font (size 0.5 0.5) (thickness 0.08)))
)
(fp_text user %R (at 0 -0.8875) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_line (start -4.4 -3.64) (end 4.4 -3.64) (layer B.CrtYd) (width 0.05))
(fp_line (start 4.4 2.46) (end 4.4 -3.64) (layer B.CrtYd) (width 0.05))
(fp_line (start -4.4 2.46) (end 4.4 2.46) (layer B.CrtYd) (width 0.05))
(fp_line (start -4.4 -3.64) (end -4.4 2.46) (layer B.CrtYd) (width 0.05))
(fp_line (start -3.9 1.7625) (end -3.45 1.7625) (layer B.SilkS) (width 0.12))
(fp_line (start -3.9 -0.0875) (end -3.9 1.7625) (layer B.SilkS) (width 0.12))
(fp_line (start 3.9 -2.6375) (end 3.9 -2.3875) (layer B.SilkS) (width 0.12))
(fp_line (start 3.75 -3.3875) (end 3.75 1.6125) (layer B.Fab) (width 0.1))
(fp_line (start -3 -2.689204) (end 3 -2.689204) (layer B.Fab) (width 0.1))
(fp_line (start -3.75 -3.389204) (end 3.75 -3.389204) (layer B.Fab) (width 0.1))
(fp_line (start -3.75 1.6125) (end 3.75 1.6125) (layer B.Fab) (width 0.1))
(fp_line (start -3.75 -3.3875) (end -3.75 1.6125) (layer B.Fab) (width 0.1))
(fp_line (start -3.9 -2.6375) (end -3.9 -2.3875) (layer B.SilkS) (width 0.12))
(fp_line (start 3.9 -0.0875) (end 3.9 1.7625) (layer B.SilkS) (width 0.12))
(fp_line (start 3.9 1.7625) (end 3.45 1.7625) (layer B.SilkS) (width 0.12))
(fp_line (start -1.7 2.3125) (end -1.25 2.3125) (layer B.SilkS) (width 0.12))
(fp_line (start -1.7 2.3125) (end -1.7 1.8625) (layer B.SilkS) (width 0.12))
(fp_line (start -1.3 1.7125) (end -1.5 1.9125) (layer B.Fab) (width 0.1))
(fp_line (start -1.1 1.9125) (end -1.3 1.7125) (layer B.Fab) (width 0.1))
(fp_line (start -1.5 2.1225) (end -1.1 2.1225) (layer B.Fab) (width 0.1))
(fp_line (start -1.5 2.1225) (end -1.5 1.9125) (layer B.Fab) (width 0.1))
(fp_line (start -1.1 2.1225) (end -1.1 1.9125) (layer B.Fab) (width 0.1))
(pad 6 smd rect (at 1 -1.2375) (size 1.5 1.9) (layers B.Cu B.Paste B.Mask)
(net 4 GND))
(pad 6 thru_hole circle (at -2.5 1.4625) (size 1.45 1.45) (drill 0.85) (layers *.Cu *.Paste *.Mask)
(net 4 GND))
(pad 2 smd rect (at -0.65 1.4625) (size 0.4 1.35) (layers B.Cu B.Paste B.Mask)
(net 49 D-))
(pad 1 smd rect (at -1.3 1.4625) (size 0.4 1.35) (layers B.Cu B.Paste B.Mask)
(net 1 +5P))
(pad 5 smd rect (at 1.3 1.4625) (size 0.4 1.35) (layers B.Cu B.Paste B.Mask)
(net 4 GND))
(pad 4 smd rect (at 0.65 1.4625) (size 0.4 1.35) (layers B.Cu B.Paste B.Mask)
(net 66 "Net-(J1-Pad4)"))
(pad 3 smd rect (at 0 1.4625) (size 0.4 1.35) (layers B.Cu B.Paste B.Mask)
(net 50 D+))
(pad 6 thru_hole circle (at 2.5 1.4625) (size 1.45 1.45) (drill 0.85) (layers *.Cu *.Paste *.Mask)
(net 4 GND))
(pad 6 smd rect (at -1 -1.2375) (size 1.5 1.9) (layers B.Cu B.Paste B.Mask)
(net 4 GND))
(pad 6 thru_hole oval (at -3.5 -1.2375 180) (size 1.2 1.9) (drill oval 0.6 1.3) (layers *.Cu *.Paste *.Mask)
(net 4 GND))
(pad 6 thru_hole oval (at 3.5 -1.2375) (size 1.2 1.9) (drill oval 0.6 1.3) (layers *.Cu *.Paste *.Mask)
(net 4 GND))
(pad 6 smd rect (at 4.1 -1.2375) (size 2.2 1.9) (layers B.Cu B.Paste B.Mask)
(net 4 GND))
(pad 6 smd rect (at -4.1 -1.2375) (size 2.2 1.9) (layers B.Cu B.Paste B.Mask)
(net 4 GND))
(model ${KIPRJMOD}/3d_part_models/USB-MicroB_Molex_105017.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module "Badge-PCB:Qwiic lozenge curves-shenzen" (layer B.Cu) (tedit 0) (tstamp 5E3E34E1)
(at 104.925 114.315 90)
(fp_text reference Ref** (at 0 0 270) (layer B.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify mirror))
)
(fp_text value Val** (at 0 0 270) (layer B.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.15)) (justify mirror))
)
(fp_poly (pts (xy 1.735667 0.38394) (xy 1.734852 0.312626) (xy 1.729273 0.273781) (xy 1.714225 0.257541)
(xy 1.685004 0.254041) (xy 1.673703 0.254) (xy 1.606568 0.234837) (xy 1.556403 0.181935)
(xy 1.528261 0.102177) (xy 1.524 0.050062) (xy 1.538895 -0.04052) (xy 1.581971 -0.100981)
(xy 1.650818 -0.128995) (xy 1.709209 -0.12858) (xy 1.72534 -0.142066) (xy 1.73382 -0.190432)
(xy 1.735667 -0.253072) (xy 1.735667 -0.381) (xy 1.635125 -0.379658) (xy 1.563053 -0.374628)
(xy 1.501124 -0.363578) (xy 1.484739 -0.358353) (xy 1.369288 -0.292007) (xy 1.2864 -0.19873)
(xy 1.236369 -0.07899) (xy 1.219494 0.064788) (xy 1.236189 0.206954) (xy 1.286158 0.324081)
(xy 1.367421 0.413943) (xy 1.477999 0.474319) (xy 1.609199 0.502412) (xy 1.735667 0.51388)
(xy 1.735667 0.38394)) (layer B.Mask) (width 0.01))
(fp_poly (pts (xy 1.185334 -0.381) (xy 0.889 -0.381) (xy 0.889 0.508) (xy 1.185334 0.508)
(xy 1.185334 -0.381)) (layer B.Mask) (width 0.01))
(fp_poly (pts (xy -0.237156 0.503654) (xy -0.09525 0.497417) (xy -0.021166 0.238224) (xy 0.007619 0.140742)
(xy 0.033221 0.059986) (xy 0.053079 0.003628) (xy 0.06463 -0.020662) (xy 0.065441 -0.021067)
(xy 0.078266 -0.002814) (xy 0.096031 0.043357) (xy 0.103869 0.068792) (xy 0.122475 0.132604)
(xy 0.148277 0.220079) (xy 0.176293 0.314339) (xy 0.181781 0.332714) (xy 0.233791 0.506677)
(xy 0.846667 0.506677) (xy 0.846667 -0.382854) (xy 0.693209 -0.376635) (xy 0.53975 -0.370417)
(xy 0.529167 0.052917) (xy 0.518584 0.47625) (xy 0.361914 0.046763) (xy 0.205244 -0.382725)
(xy 0.056131 -0.376571) (xy -0.092981 -0.370417) (xy -0.168199 -0.118785) (xy -0.243416 0.132846)
(xy -0.32491 -0.124077) (xy -0.406403 -0.381) (xy -0.553116 -0.381) (xy -0.646036 -0.377085)
(xy -0.697809 -0.36529) (xy -0.709263 -0.354542) (xy -0.719076 -0.327368) (xy -0.741022 -0.266792)
(xy -0.772783 -0.1792) (xy -0.812045 -0.07098) (xy -0.85649 0.051479) (xy -0.867349 0.081392)
(xy -0.912017 0.204877) (xy -0.951315 0.314357) (xy -0.983095 0.403782) (xy -1.005212 0.467104)
(xy -1.015519 0.498273) (xy -1.016 0.500361) (xy -0.996625 0.504194) (xy -0.945539 0.50548)
(xy -0.873303 0.503991) (xy -0.864235 0.503636) (xy -0.712469 0.497417) (xy -0.685777 0.41275)
(xy -0.667465 0.353628) (xy -0.641624 0.268896) (xy -0.612809 0.173518) (xy -0.602024 0.137583)
(xy -0.544962 -0.052917) (xy -0.514636 0.052917) (xy -0.493699 0.124993) (xy -0.465936 0.219267)
(xy -0.436748 0.31741) (xy -0.431686 0.33432) (xy -0.379063 0.50989) (xy -0.237156 0.503654)) (layer B.Mask) (width 0.01))
(fp_poly (pts (xy -1.042129 -0.089958) (xy -1.04775 -0.687917) (xy -1.18623 -0.694075) (xy -1.259378 -0.6951)
(xy -1.314903 -0.691746) (xy -1.339688 -0.685256) (xy -1.346341 -0.65868) (xy -1.351477 -0.600245)
(xy -1.35433 -0.520418) (xy -1.354666 -0.480025) (xy -1.354992 -0.390245) (xy -1.357186 -0.336311)
(xy -1.363074 -0.311731) (xy -1.374481 -0.310019) (xy -1.393234 -0.324684) (xy -1.397328 -0.32838)
(xy -1.451779 -0.356324) (xy -1.532287 -0.37341) (xy -1.623639 -0.378219) (xy -1.710625 -0.369327)
(xy -1.743537 -0.360728) (xy -1.802573 -0.329343) (xy -1.865953 -0.278222) (xy -1.893139 -0.249755)
(xy -1.959294 -0.144503) (xy -1.99477 -0.025828) (xy -1.998772 0.053153) (xy -1.693333 0.053153)
(xy -1.677659 -0.033882) (xy -1.636112 -0.09921) (xy -1.576906 -0.138551) (xy -1.508258 -0.147627)
(xy -1.43838 -0.122157) (xy -1.406621 -0.096212) (xy -1.371354 -0.048778) (xy -1.356467 0.010766)
(xy -1.354666 0.055882) (xy -1.36878 0.152147) (xy -1.410818 0.216947) (xy -1.480323 0.249756)
(xy -1.526153 0.254) (xy -1.605233 0.236134) (xy -1.660674 0.184799) (xy -1.689651 0.103389)
(xy -1.693333 0.053153) (xy -1.998772 0.053153) (xy -2.001045 0.097993) (xy -1.979593 0.218683)
(xy -1.93189 0.327965) (xy -1.859413 0.417561) (xy -1.763636 0.479193) (xy -1.763135 0.479403)
(xy -1.668622 0.503367) (xy -1.564657 0.505727) (xy -1.469407 0.487143) (xy -1.425518 0.467151)
(xy -1.38133 0.441659) (xy -1.36058 0.43847) (xy -1.350716 0.457599) (xy -1.348125 0.467231)
(xy -1.337198 0.488778) (xy -1.312137 0.501142) (xy -1.26338 0.506742) (xy -1.186985 0.508)
(xy -1.036507 0.508) (xy -1.042129 -0.089958)) (layer B.Mask) (width 0.01))
(fp_poly (pts (xy -1.427837 0.2578) (xy -1.369884 0.207134) (xy -1.338659 0.125317) (xy -1.3335 0.062834)
(xy -1.337739 -0.009335) (xy -1.355093 -0.058762) (xy -1.392516 -0.104588) (xy -1.395372 -0.107461)
(xy -1.46588 -0.157589) (xy -1.524 -0.169333) (xy -1.596974 -0.150444) (xy -1.652628 -0.107461)
(xy -1.700809 -0.031155) (xy -1.716048 0.061451) (xy -1.697122 0.158619) (xy -1.683533 0.188986)
(xy -1.647703 0.240088) (xy -1.599257 0.266578) (xy -1.524987 0.275044) (xy -1.510723 0.275167)
(xy -1.427837 0.2578)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 1.880451 0.755384) (xy 2.029835 0.657366) (xy 2.151912 0.537218) (xy 2.237942 0.405162)
(xy 2.265687 0.34402) (xy 2.283059 0.289043) (xy 2.292414 0.226936) (xy 2.296106 0.144408)
(xy 2.296584 0.074083) (xy 2.295302 -0.028631) (xy 2.289882 -0.102358) (xy 2.27796 -0.160406)
(xy 2.257174 -0.216084) (xy 2.237713 -0.257464) (xy 2.140699 -0.409607) (xy 2.015489 -0.530906)
(xy 1.865035 -0.619186) (xy 1.69229 -0.672272) (xy 1.669244 -0.67633) (xy 1.618626 -0.680966)
(xy 1.528346 -0.685145) (xy 1.401075 -0.688825) (xy 1.239481 -0.691966) (xy 1.046233 -0.694526)
(xy 0.824003 -0.696464) (xy 0.575458 -0.69774) (xy 0.30327 -0.698312) (xy 0.238125 -0.69834)
(xy -1.058333 -0.6985) (xy -1.058333 0.486833) (xy -0.992955 0.486833) (xy -0.964405 0.407458)
(xy -0.922342 0.291195) (xy -0.877354 0.168001) (xy -0.83192 0.044539) (xy -0.78852 -0.072529)
(xy -0.749633 -0.176541) (xy -0.71774 -0.260835) (xy -0.69532 -0.318749) (xy -0.684853 -0.343622)
(xy -0.684809 -0.343695) (xy -0.659361 -0.352289) (xy -0.604523 -0.356365) (xy -0.54506 -0.355504)
(xy -0.416474 -0.34925) (xy -0.339627 -0.101404) (xy -0.309032 -0.005009) (xy -0.281942 0.076142)
(xy -0.26123 0.13373) (xy -0.249764 0.159437) (xy -0.249542 0.15968) (xy -0.239489 0.145442)
(xy -0.22043 0.099682) (xy -0.195372 0.031472) (xy -0.167326 -0.05012) (xy -0.1393 -0.136021)
(xy -0.114305 -0.217162) (xy -0.095348 -0.284471) (xy -0.08544 -0.328879) (xy -0.084666 -0.337301)
(xy -0.066153 -0.351353) (xy -0.009351 -0.356773) (xy 0.055448 -0.355509) (xy 0.195563 -0.34925)
(xy 0.349049 0.069731) (xy 0.501845 0.486833) (xy 0.550334 0.486833) (xy 0.550334 -0.359833)
(xy 0.8255 -0.359833) (xy 0.8255 0.486833) (xy 0.889 0.486833) (xy 0.889 -0.359833)
(xy 1.164167 -0.359833) (xy 1.164167 0.054367) (xy 1.227785 0.054367) (xy 1.245786 -0.053072)
(xy 1.29389 -0.159614) (xy 1.364083 -0.252572) (xy 1.448354 -0.319255) (xy 1.47069 -0.330336)
(xy 1.534653 -0.348773) (xy 1.61054 -0.358576) (xy 1.624542 -0.359005) (xy 1.7145 -0.359833)
(xy 1.7145 -0.254) (xy 1.713071 -0.191339) (xy 1.704525 -0.160091) (xy 1.682471 -0.149342)
(xy 1.652536 -0.148167) (xy 1.584441 -0.12922) (xy 1.534895 -0.075701) (xy 1.507357 0.007411)
(xy 1.502834 0.067317) (xy 1.508394 0.141649) (xy 1.529082 0.192683) (xy 1.554788 0.223212)
(xy 1.606047 0.259281) (xy 1.658648 0.275133) (xy 1.660621 0.275167) (xy 1.692584 0.278468)
(xy 1.708529 0.2956) (xy 1.713975 0.337405) (xy 1.7145 0.381) (xy 1.7145 0.486833)
(xy 1.628782 0.486833) (xy 1.510917 0.466806) (xy 1.405225 0.410902) (xy 1.319887 0.325391)
(xy 1.263081 0.21654) (xy 1.258919 0.203388) (xy 1.240711 0.133721) (xy 1.229506 0.074745)
(xy 1.227785 0.054367) (xy 1.164167 0.054367) (xy 1.164167 0.486833) (xy 0.889 0.486833)
(xy 0.8255 0.486833) (xy 0.550334 0.486833) (xy 0.501845 0.486833) (xy 0.502534 0.488712)
(xy 0.373388 0.482481) (xy 0.244241 0.47625) (xy 0.161414 0.195792) (xy 0.130446 0.094227)
(xy 0.10262 0.009057) (xy 0.080481 -0.052373) (xy 0.066571 -0.082719) (xy 0.064315 -0.084667)
(xy 0.05377 -0.065454) (xy 0.034572 -0.012685) (xy 0.009144 0.066341) (xy -0.02009 0.164321)
(xy -0.03085 0.202017) (xy -0.111743 0.4887) (xy -0.369009 0.47625) (xy -0.416028 0.3175)
(xy -0.444844 0.219506) (xy -0.474486 0.117582) (xy -0.497609 0.037042) (xy -0.518121 -0.027432)
(xy -0.53636 -0.071511) (xy -0.546543 -0.084551) (xy -0.557243 -0.065327) (xy -0.576782 -0.012611)
(xy -0.60269 0.066297) (xy -0.632493 0.164095) (xy -0.643319 0.201199) (xy -0.725721 0.486833)
(xy -0.992955 0.486833) (xy -1.058333 0.486833) (xy -1.195916 0.486833) (xy -1.26987 0.485914)
(xy -1.311061 0.480691) (xy -1.329055 0.467462) (xy -1.333418 0.442528) (xy -1.3335 0.433617)
(xy -1.3335 0.3804) (xy -1.4178 0.436187) (xy -1.474306 0.468856) (xy -1.526645 0.483657)
(xy -1.594284 0.48498) (xy -1.62556 0.483044) (xy -1.752274 0.456342) (xy -1.852059 0.397516)
(xy -1.923576 0.308165) (xy -1.965486 0.189888) (xy -1.976815 0.0635) (xy -1.960562 -0.080646)
(xy -1.914454 -0.195736) (xy -1.839361 -0.280746) (xy -1.736153 -0.334656) (xy -1.62015 -0.355726)
(xy -1.541252 -0.357616) (xy -1.485943 -0.348593) (xy -1.436038 -0.324599) (xy -1.412875 -0.309462)
(xy -1.3335 -0.255276) (xy -1.3335 -0.6985) (xy -1.455208 -0.695859) (xy -1.547714 -0.691258)
(xy -1.644014 -0.682588) (xy -1.683919 -0.677507) (xy -1.852156 -0.632165) (xy -2.002738 -0.549934)
(xy -2.131148 -0.434165) (xy -2.232871 -0.288209) (xy -2.24818 -0.258622) (xy -2.28236 -0.185142)
(xy -2.30303 -0.124915) (xy -2.313459 -0.062171) (xy -2.316914 0.018864) (xy -2.31704 0.073638)
(xy -2.314861 0.173317) (xy -2.307195 0.246225) (xy -2.291025 0.307856) (xy -2.263338 0.373701)
(xy -2.255414 0.390266) (xy -2.16261 0.537336) (xy -2.040929 0.661132) (xy -1.898796 0.753214)
(xy -1.887992 0.758398) (xy -1.767416 0.814917) (xy 1.767417 0.814917) (xy 1.880451 0.755384)) (layer B.SilkS) (width 0.01))
(fp_poly (pts (xy 1.735667 0.383621) (xy 1.734847 0.312417) (xy 1.729239 0.273669) (xy 1.714122 0.257502)
(xy 1.684774 0.254039) (xy 1.673703 0.254) (xy 1.606969 0.2348) (xy 1.556641 0.182382)
(xy 1.52855 0.104518) (xy 1.524673 0.055354) (xy 1.531159 -0.008447) (xy 1.546405 -0.057722)
(xy 1.551132 -0.065334) (xy 1.599633 -0.109277) (xy 1.656295 -0.135019) (xy 1.702383 -0.135243)
(xy 1.720908 -0.134381) (xy 1.731076 -0.155131) (xy 1.735173 -0.205486) (xy 1.735667 -0.251735)
(xy 1.735667 -0.381) (xy 1.635125 -0.379658) (xy 1.563053 -0.374628) (xy 1.501124 -0.363578)
(xy 1.484739 -0.358353) (xy 1.369267 -0.292088) (xy 1.286494 -0.198981) (xy 1.236531 -0.079211)
(xy 1.219494 0.06667) (xy 1.222385 0.152915) (xy 1.235183 0.216519) (xy 1.262871 0.276889)
(xy 1.281517 0.308171) (xy 1.363341 0.405584) (xy 1.468403 0.469431) (xy 1.600035 0.501623)
(xy 1.622633 0.503869) (xy 1.735667 0.513242) (xy 1.735667 0.383621)) (layer B.Cu) (width 0.01))
(fp_poly (pts (xy 1.185334 -0.381) (xy 0.889 -0.381) (xy 0.889 0.508) (xy 1.185334 0.508)
(xy 1.185334 -0.381)) (layer B.Cu) (width 0.01))
(fp_poly (pts (xy -0.237156 0.503654) (xy -0.09525 0.497417) (xy -0.021166 0.238224) (xy 0.007619 0.140742)
(xy 0.033221 0.059986) (xy 0.053079 0.003628) (xy 0.06463 -0.020662) (xy 0.065441 -0.021067)
(xy 0.078266 -0.002814) (xy 0.096031 0.043357) (xy 0.103869 0.068792) (xy 0.122475 0.132604)
(xy 0.148277 0.220079) (xy 0.176293 0.314339) (xy 0.181781 0.332714) (xy 0.233791 0.506677)
(xy 0.846667 0.506677) (xy 0.846667 -0.382854) (xy 0.693209 -0.376635) (xy 0.53975 -0.370417)
(xy 0.518584 0.475225) (xy 0.362231 0.046244) (xy 0.205879 -0.382738) (xy 0.056311 -0.376577)
(xy -0.093258 -0.370417) (xy -0.167883 -0.117163) (xy -0.242507 0.136091) (xy -0.323658 -0.122454)
(xy -0.404808 -0.381) (xy -0.552318 -0.381) (xy -0.64542 -0.377129) (xy -0.697464 -0.365453)
(xy -0.709263 -0.354542) (xy -0.719076 -0.327368) (xy -0.741022 -0.266792) (xy -0.772783 -0.1792)
(xy -0.812045 -0.07098) (xy -0.85649 0.051479) (xy -0.867349 0.081392) (xy -0.912017 0.204877)
(xy -0.951315 0.314357) (xy -0.983095 0.403782) (xy -1.005212 0.467104) (xy -1.015519 0.498273)
(xy -1.016 0.500361) (xy -0.996625 0.504194) (xy -0.945539 0.50548) (xy -0.873303 0.503991)
(xy -0.864235 0.503636) (xy -0.712469 0.497417) (xy -0.685475 0.41275) (xy -0.667025 0.353624)
(xy -0.641078 0.268886) (xy -0.612207 0.173502) (xy -0.601422 0.137583) (xy -0.544364 -0.052917)
(xy -0.514337 0.052917) (xy -0.493545 0.124987) (xy -0.465889 0.219255) (xy -0.436752 0.317393)
(xy -0.431686 0.33432) (xy -0.379063 0.50989) (xy -0.237156 0.503654)) (layer B.Cu) (width 0.01))
(fp_poly (pts (xy -1.042129 -0.089958) (xy -1.04775 -0.687917) (xy -1.18623 -0.694075) (xy -1.259378 -0.6951)
(xy -1.314903 -0.691746) (xy -1.339688 -0.685256) (xy -1.346341 -0.65868) (xy -1.351477 -0.600245)
(xy -1.35433 -0.520418) (xy -1.354666 -0.480025) (xy -1.354992 -0.390245) (xy -1.357186 -0.336311)
(xy -1.363074 -0.311731) (xy -1.374481 -0.310019) (xy -1.393234 -0.324684) (xy -1.397328 -0.32838)
(xy -1.451779 -0.356324) (xy -1.532287 -0.37341) (xy -1.623639 -0.378219) (xy -1.710625 -0.369327)
(xy -1.743537 -0.360728) (xy -1.802573 -0.329343) (xy -1.865953 -0.278222) (xy -1.893139 -0.249755)
(xy -1.959294 -0.144503) (xy -1.99477 -0.025828) (xy -1.997721 0.032407) (xy -1.692077 0.032407)
(xy -1.664742 -0.057264) (xy -1.662029 -0.062639) (xy -1.610692 -0.122986) (xy -1.543364 -0.148826)
(xy -1.470385 -0.138801) (xy -1.406621 -0.096212) (xy -1.371354 -0.048778) (xy -1.356467 0.010766)
(xy -1.354666 0.055882) (xy -1.36878 0.152147) (xy -1.410818 0.216947) (xy -1.480323 0.249756)
(xy -1.526153 0.254) (xy -1.60172 0.235953) (xy -1.656964 0.187409) (xy -1.688284 0.116762)
(xy -1.692077 0.032407) (xy -1.997721 0.032407) (xy -2.001045 0.097993) (xy -1.979593 0.218683)
(xy -1.93189 0.327965) (xy -1.859413 0.417561) (xy -1.763636 0.479193) (xy -1.763135 0.479403)
(xy -1.668622 0.503367) (xy -1.564657 0.505727) (xy -1.469407 0.487143) (xy -1.425518 0.467151)
(xy -1.38133 0.441659) (xy -1.36058 0.43847) (xy -1.350716 0.457599) (xy -1.348125 0.467231)
(xy -1.337198 0.488778) (xy -1.312137 0.501142) (xy -1.26338 0.506742) (xy -1.186985 0.508)
(xy -1.036507 0.508) (xy -1.042129 -0.089958)) (layer B.Cu) (width 0.01))
)
(module Badge-PCB:SON127P600X500X80-9N (layer B.Cu) (tedit 5E3DCDA6) (tstamp 5E016284)
(at 134.1704 85.5468 90)
(path /5E019631)
(fp_text reference U1 (at -0.2232 -4.1954 180) (layer B.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.1524)) (justify mirror))
)
(fp_text value W25Q32JVZPIQ (at 10.26471 -4.78919 90) (layer B.Fab)
(effects (font (size 1 1) (thickness 0.015)) (justify mirror))
)
(fp_line (start 1.7 2.2) (end 1.7 -2.4) (layer B.SilkS) (width 0.12))
(fp_line (start -1.7 2.2) (end -1.7 -2.3) (layer B.SilkS) (width 0.12))
(fp_line (start -2.55 3.05) (end 2.55 3.05) (layer B.Fab) (width 0.2032))
(fp_line (start 2.55 3.05) (end 2.55 -3.05) (layer B.Fab) (width 0.2032))
(fp_line (start 2.55 -3.05) (end -2.55 -3.05) (layer B.Fab) (width 0.2032))
(fp_line (start -2.55 -3.05) (end -2.55 3.05) (layer B.Fab) (width 0.2032))
(fp_poly (pts (xy 0.14 1.72) (xy 0.87 1.72) (xy 0.87 0.14) (xy 0.14 0.14)) (layer B.Paste) (width 0.01))
(fp_poly (pts (xy -0.87 -0.14) (xy -0.14 -0.14) (xy -0.14 -1.72) (xy -0.87 -1.72)) (layer B.Paste) (width 0.01))
(fp_poly (pts (xy -0.87 1.72) (xy -0.14 1.72) (xy -0.14 0.14) (xy -0.87 0.14)) (layer B.Paste) (width 0.01))
(fp_poly (pts (xy 0.14 -0.14) (xy 0.87 -0.14) (xy 0.87 -1.72) (xy 0.14 -1.72)) (layer B.Paste) (width 0.01))
(fp_line (start 2.55 -3.05) (end -2.55 -3.05) (layer B.SilkS) (width 0.2032))
(fp_line (start -2.55 3.05) (end 2.55 3.05) (layer B.SilkS) (width 0.2032))
(fp_line (start -3.1 3.3) (end 3.1 3.3) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.1 3.3) (end 3.1 -3.3) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.1 -3.3) (end -3.1 -3.3) (layer B.CrtYd) (width 0.05))
(fp_line (start -3.1 -3.3) (end -3.1 3.3) (layer B.CrtYd) (width 0.05))
(fp_circle (center -3.85 2.2) (end -3.738197 2.2) (layer B.SilkS) (width 0.2))
(fp_circle (center -3.85 2.2) (end -3.738197 2.2) (layer B.Fab) (width 0.2))
(pad 1 smd rect (at -2.535 1.905 90) (size 1.4 0.42) (layers B.Cu B.Paste B.Mask)
(net 27 QSPI_~CS))
(pad 2 smd rect (at -2.535 0.635 90) (size 1.4 0.42) (layers B.Cu B.Paste B.Mask)
(net 28 QSPI_DIO1))
(pad 3 smd rect (at -2.535 -0.635 90) (size 1.4 0.42) (layers B.Cu B.Paste B.Mask)
(net 32 QSPI_DIO2))
(pad 4 smd rect (at -2.535 -1.905 90) (size 1.4 0.42) (layers B.Cu B.Paste B.Mask)
(net 4 GND))
(pad 5 smd rect (at 2.535 -1.905 90) (size 1.4 0.42) (layers B.Cu B.Paste B.Mask)
(net 30 QSPI_DIO0))
(pad 6 smd rect (at 2.535 -0.635 90) (size 1.4 0.42) (layers B.Cu B.Paste B.Mask)
(net 29 QSPI_CLK))
(pad 7 smd rect (at 2.535 0.635 90) (size 1.4 0.42) (layers B.Cu B.Paste B.Mask)
(net 33 QSPI_DIO3))
(pad 8 smd rect (at 2.535 1.905 90) (size 1.4 0.42) (layers B.Cu B.Paste B.Mask)
(net 14 +3V0))
(pad 9 smd rect (at 0 0 90) (size 2.3 4) (layers B.Cu B.Mask))
(model ${KIPRJMOD}/3d_part_models/SON127P600X500X80-9N.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Badge-PCB:PQFN24P43_350X300X102L35X23N (layer B.Cu) (tedit 5E38DF88) (tstamp 5DFFE85B)
(at 116.4298 111.3782 270)
(path /5E460ADA)
(solder_mask_margin 0.0254)
(fp_text reference U5 (at 3.1418 -0.0052) (layer B.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.1524)) (justify mirror))
)
(fp_text value LSM9DS1 (at 9.46349 -2.52374 270) (layer B.Fab)
(effects (font (size 0.641307 0.641307) (thickness 0.015)) (justify mirror))
)
(fp_line (start -1.75 1.5) (end 1.75 1.5) (layer B.Fab) (width 0.127))
(fp_line (start 1.75 1.5) (end 1.75 -1.5) (layer B.Fab) (width 0.127))
(fp_line (start 1.75 -1.5) (end -1.75 -1.5) (layer B.Fab) (width 0.127))
(fp_line (start -1.75 -1.5) (end -1.75 1.5) (layer B.Fab) (width 0.127))
(fp_circle (center -2.005 1.275) (end -1.925 1.275) (layer B.SilkS) (width 0.16))
(fp_line (start -2.005 1.775) (end 1.995 1.775) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.995 1.775) (end 1.995 -1.725) (layer B.CrtYd) (width 0.05))
(fp_line (start 1.995 -1.725) (end -2.005 -1.725) (layer B.CrtYd) (width 0.05))
(fp_line (start -2.005 -1.725) (end -2.005 1.775) (layer B.CrtYd) (width 0.05))
(fp_line (start -1.75 1.075) (end -1.75 1.5) (layer B.SilkS) (width 0.1))
(fp_line (start -1.75 1.5) (end -1.755 1.475) (layer B.SilkS) (width 0.05))
(pad 18 smd rect (at 1.505 1.225 270) (size 0.28 0.53) (layers B.Cu B.Paste B.Mask)
(net 4 GND))
(pad 17 smd rect (at 1.47 0.645 270) (size 0.53 0.28) (layers B.Cu B.Paste B.Mask)
(net 4 GND))
(pad 16 smd rect (at 1.47 0.215 270) (size 0.53 0.28) (layers B.Cu B.Paste B.Mask)
(net 4 GND))
(pad 15 smd rect (at 1.47 -0.215 270) (size 0.53 0.28) (layers B.Cu B.Paste B.Mask)
(net 4 GND))
(pad 14 smd rect (at 1.47 -0.645 270) (size 0.53 0.28) (layers B.Cu B.Paste B.Mask)
(net 4 GND))
(pad 13 smd rect (at 1.505 -1.225 270) (size 0.28 0.53) (layers B.Cu B.Paste B.Mask)
(net 51 "Net-(U5-Pad13)"))
(pad 12 smd rect (at 1.075 -1.225 270) (size 0.28 0.53) (layers B.Cu B.Paste B.Mask)
(net 52 "Net-(U5-Pad12)"))
(pad 11 smd rect (at 0.645 -1.225 270) (size 0.28 0.53) (layers B.Cu B.Paste B.Mask)
(net 43 ACC_AG_NT))
(pad 10 smd rect (at 0.215 -1.225 270) (size 0.28 0.53) (layers B.Cu B.Paste B.Mask)
(net 41 ACC_INT))
(pad 9 smd rect (at -0.215 -1.225 270) (size 0.28 0.53) (layers B.Cu B.Paste B.Mask)
(net 53 "Net-(U5-Pad9)"))
(pad 8 smd rect (at -0.645 -1.225 270) (size 0.28 0.53) (layers B.Cu B.Paste B.Mask)
(net 54 "Net-(R10-Pad1)"))
(pad 7 smd rect (at -1.075 -1.225 270) (size 0.28 0.53) (layers B.Cu B.Paste B.Mask)
(net 55 "Net-(R11-Pad1)"))
(pad 6 smd rect (at -1.505 -1.225 270) (size 0.28 0.53) (layers B.Cu B.Paste B.Mask)
(net 56 "Net-(R13-Pad1)"))
(pad 5 smd rect (at -1.47 -0.645 270) (size 0.53 0.28) (layers B.Cu B.Paste B.Mask)
(net 57 "Net-(R12-Pad1)"))
(pad 4 smd rect (at -1.47 -0.215 270) (size 0.53 0.28) (layers B.Cu B.Paste B.Mask)
(net 48 IIC_SDA))
(pad 3 smd rect (at -1.47 0.215 270) (size 0.53 0.28) (layers B.Cu B.Paste B.Mask)
(net 14 +3V0))
(pad 2 smd rect (at -1.47 0.645 270) (size 0.53 0.28) (layers B.Cu B.Paste B.Mask)
(net 47 IIC_SCL))
(pad 1 smd rect (at -1.505 1.225 270) (size 0.28 0.53) (layers B.Cu B.Paste B.Mask)
(net 14 +3V0))
(pad 24 smd rect (at -1.075 1.225 270) (size 0.28 0.53) (layers B.Cu B.Paste B.Mask)
(net 58 "Net-(C9-Pad2)"))
(pad 23 smd rect (at -0.645 1.225 270) (size 0.28 0.53) (layers B.Cu B.Paste B.Mask)
(net 14 +3V0))
(pad 22 smd rect (at -0.215 1.225 270) (size 0.28 0.53) (layers B.Cu B.Paste B.Mask)
(net 14 +3V0))
(pad 21 smd rect (at 0.215 1.225 270) (size 0.28 0.53) (layers B.Cu B.Paste B.Mask)
(net 59 "Net-(C10-Pad2)"))
(pad 20 smd rect (at 0.645 1.225 270) (size 0.28 0.53) (layers B.Cu B.Paste B.Mask)
(net 4 GND))
(pad 19 smd rect (at 1.075 1.225 270) (size 0.28 0.53) (layers B.Cu B.Paste B.Mask)
(net 4 GND))
(model ${KIPRJMOD}/3d_part_models/LGA-24L_3.5x3_0.43p.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module "Badge-PCB:JST_SM04B-SRSS-TB(LF)(SN)" (layer B.Cu) (tedit 5E200796) (tstamp 5E1F8F8F)
(at 103.825 109.475 90)
(path /5E485CBA)
(fp_text reference J3 (at 4.315 -2.04) (layer B.SilkS)
(effects (font (size 0.762 0.762) (thickness 0.1524)) (justify mirror))
)
(fp_text value Conn_01x04_Shielded (at 12.17039 -5.74055 -90) (layer B.Fab)
(effects (font (size 1.000567 1.000567) (thickness 0.015)) (justify mirror))
)
(fp_line (start -3.65 -5.025) (end -3.65 1.025) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.65 -5.025) (end -3.65 -5.025) (layer B.CrtYd) (width 0.05))
(fp_line (start 3.65 1.025) (end 3.65 -5.025) (layer B.CrtYd) (width 0.05))
(fp_line (start -3.65 1.025) (end 3.65 1.025) (layer B.CrtYd) (width 0.05))
(fp_circle (center -2.45 0.385) (end -2.35 0.385) (layer B.Fab) (width 0.3))
(fp_line (start -1.8 -4.575) (end 1.8 -4.575) (layer B.SilkS) (width 0.127))
(fp_line (start 3 -0.325) (end 3 -2.6) (layer B.SilkS) (width 0.127))
(fp_line (start 2.2 -0.325) (end 3 -0.325) (layer B.SilkS) (width 0.127))
(fp_line (start -3 -0.325) (end -3 -2.6) (layer B.SilkS) (width 0.127))
(fp_line (start -2.2 -0.325) (end -3 -0.325) (layer B.SilkS) (width 0.127))
(fp_line (start -3 -4.575) (end -3 -0.325) (layer B.Fab) (width 0.127))
(fp_line (start 3 -4.575) (end -3 -4.575) (layer B.Fab) (width 0.127))
(fp_line (start 3 -0.325) (end 3 -4.575) (layer B.Fab) (width 0.127))
(fp_line (start -3 -0.325) (end 3 -0.325) (layer B.Fab) (width 0.127))
(fp_circle (center -2.45 0.385) (end -2.35 0.385) (layer B.SilkS) (width 0.3))
(pad 4 smd rect (at 1.5 0 90) (size 0.6 1.55) (layers B.Cu B.Paste B.Mask)
(net 47 IIC_SCL))
(pad 3 smd rect (at 0.5 0 90) (size 0.6 1.55) (layers B.Cu B.Paste B.Mask)
(net 48 IIC_SDA))
(pad 2 smd rect (at -0.5 0 90) (size 0.6 1.55) (layers B.Cu B.Paste B.Mask)
(net 14 +3V0))