-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFlashROM_100_PLCC.kicad_pcb
8561 lines (8547 loc) · 320 KB
/
FlashROM_100_PLCC.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "USLetter")
(title_block
(title "FlashROM_100")
(date "2023-02-23")
(rev "plcc_005")
(company "Brian K. White - [email protected]")
(comment 1 "System ROM for TRS-80 Model 100 with support for REX main rom feature")
(comment 2 "github.com/bkw777/aDIPters")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(solder_mask_min_width 0.22)
(grid_origin 150 100)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "GERBER_${TITLE}_${REVISION}")
)
)
(net 0 "")
(net 1 "/D3")
(net 2 "/A10")
(net 3 "/D4")
(net 4 "/A7")
(net 5 "/D5")
(net 6 "/A6")
(net 7 "/D6")
(net 8 "/A5")
(net 9 "/D7")
(net 10 "/A4")
(net 11 "/A11")
(net 12 "/A3")
(net 13 "/~{OE}")
(net 14 "/A2")
(net 15 "/A13")
(net 16 "/A1")
(net 17 "/A0")
(net 18 "/A12")
(net 19 "/D0")
(net 20 "/A9")
(net 21 "/D1")
(net 22 "/A8")
(net 23 "/D2")
(net 24 "/A14")
(net 25 "/~{WE}")
(net 26 "VCC")
(net 27 "GND")
(net 28 "/ALE_~{WE}")
(net 29 "/~{CS_BUS}")
(net 30 "/~{CS_IC}")
(net 31 "unconnected-(U1-Pad1)")
(net 32 "unconnected-(U1-Pad30)")
(footprint "000_LOCAL:R_0805" (layer "F.Cu")
(tedit 5F9E65BE) (tstamp 00000000-0000-0000-0000-00005e34a4c4)
(at 140.475 102.5 90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "FlashROM_100_PLCC.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e68c7f8")
(attr smd)
(fp_text reference "R2" (at -0.04 -0.02 unlocked) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.08)))
(tstamp b2233571-5aea-471a-8bde-044d70bcdafb)
)
(fp_text value "100K" (at 0 1.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6bd89837-8fbd-4439-9950-c0a594bfe5d5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 2200a9fe-5a76-4252-b643-c1cff471fb9b)
)
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp 090befa0-6e4c-4a18-bc26-f65b306cd422))
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 4e42f64e-1970-498e-ae3e-81cbd4e428ed))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 4b7c8bfc-7b16-4fc7-9ad8-d99d028367f1))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 6e191f4b-37a1-417b-8e5c-96e5b8bfa51c))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 7117aac5-f46e-4aaa-b260-7a947a165e2b))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 87af39b4-fc61-42b0-b5dd-9e0b3bff29de))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 6bb4591d-b862-4f93-9662-05d1c2c022eb))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp ab5cac16-0fe6-4bba-8c04-f19c4f2a2a2a))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp beecec78-9e4f-4697-a3a7-af7ca6ceba8d))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp bf6a3100-4365-4796-aebe-0d64197cce2f))
(pad "1" smd roundrect locked (at -0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 30 "/~{CS_IC}") (pintype "passive") (tstamp f40953ac-df7f-46a6-a2db-4d70fe79c435))
(pad "2" smd roundrect locked (at 0.95 0 90) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 26 "VCC") (pintype "passive") (tstamp 037106c7-89e3-4cf1-840d-3c7f7c64c12f))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/R_0805_2012Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_LOCAL:PLCC32_7x9" (layer "F.Cu")
(tedit 5FA39D00) (tstamp 00000000-0000-0000-0000-00005fa3d814)
(at 150 100 90)
(descr "PLCC, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc0015.pdf), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py")
(tags "PLCC LCC")
(property "Sheetfile" "FlashROM_100_PLCC.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e5b130a")
(attr smd)
(fp_text reference "U1" (at 0 -4.445 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp add96b91-fecf-4454-9b61-5a4581c52929)
)
(fp_text value "29F010" (at 0 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d611f53c-2048-4c23-b134-3c43a61142ac)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 43b4e25d-10d8-4ea0-b4a5-ce866874bbfc)
)
(fp_line (start -3.5 -5.75) (end 4.5 -5.75) (layer "F.SilkS") (width 0.12) (tstamp 79e16116-db3d-41b1-a3ae-3fc7e3db378a))
(fp_line (start 4.5 -5.75) (end 4.5 5.75) (layer "F.SilkS") (width 0.12) (tstamp 8a7f8651-0c4c-4ddb-bc05-e6e6ddb04400))
(fp_line (start -4.5 5.75) (end -4.5 -4.75) (layer "F.SilkS") (width 0.12) (tstamp 90435514-0562-4a98-8f13-07e93e0f5318))
(fp_line (start -4.5 -4.75) (end -3.5 -5.75) (layer "F.SilkS") (width 0.12) (tstamp df17740b-550d-40e0-b1bc-ab429f4daef5))
(fp_line (start 4.5 5.75) (end -4.5 5.75) (layer "F.SilkS") (width 0.12) (tstamp e1804e16-8d5f-43bc-ab35-ca0cb957e9df))
(fp_line (start 5.96 -5.63) (end 6.55 -5.63) (layer "F.CrtYd") (width 0.05) (tstamp 0224a0d3-f837-4f2e-8c8c-efbdd973eb0e))
(fp_line (start -5.96 7.23) (end -5.96 5.63) (layer "F.CrtYd") (width 0.05) (tstamp 05daa684-ac94-4cb2-a13b-dffd3692804a))
(fp_line (start -4.68 -7.23) (end -5.96 -5.95) (layer "F.CrtYd") (width 0.05) (tstamp 0cb875ef-d1eb-47b0-aa0b-8ffe24daedcc))
(fp_line (start 4.36 7.23) (end 5.96 7.23) (layer "F.CrtYd") (width 0.05) (tstamp 1820143c-766d-4d56-9a14-206254f64161))
(fp_line (start -6.55 -5.63) (end -6.55 0) (layer "F.CrtYd") (width 0.05) (tstamp 20b0a7f6-220b-44ea-9e60-49c123c5a388))
(fp_line (start -6.55 5.63) (end -6.55 0) (layer "F.CrtYd") (width 0.05) (tstamp 319d9885-9852-4d94-9bd5-1ab1287814ed))
(fp_line (start 6.55 -5.63) (end 6.55 0) (layer "F.CrtYd") (width 0.05) (tstamp 3456650d-7663-45a8-a4d1-93a1a84508b3))
(fp_line (start 0 7.82) (end 4.36 7.82) (layer "F.CrtYd") (width 0.05) (tstamp 3d127cbc-4fd5-40a4-8da3-fc7a70767bcf))
(fp_line (start -5.96 -5.95) (end -5.96 -5.63) (layer "F.CrtYd") (width 0.05) (tstamp 48d4fedb-4de7-418d-8a3a-4cc4b5a02737))
(fp_line (start 4.36 7.82) (end 4.36 7.23) (layer "F.CrtYd") (width 0.05) (tstamp 588df1b1-d9d0-49f0-b440-e4ccd44b1f1e))
(fp_line (start 0 -7.82) (end -4.36 -7.82) (layer "F.CrtYd") (width 0.05) (tstamp 5e48162f-f24b-4b3d-b95b-7d99f49f3c96))
(fp_line (start 4.36 -7.82) (end 4.36 -7.23) (layer "F.CrtYd") (width 0.05) (tstamp 609bc955-12dc-440f-9ed8-d49c12119113))
(fp_line (start -5.96 5.63) (end -6.55 5.63) (layer "F.CrtYd") (width 0.05) (tstamp 6a69c0d0-7840-47f8-92f8-2d7e4dc4f8f1))
(fp_line (start -4.36 7.23) (end -5.96 7.23) (layer "F.CrtYd") (width 0.05) (tstamp 7ad637e7-3a2f-447d-ae4a-c08d12ff8dfa))
(fp_line (start -4.36 -7.23) (end -4.68 -7.23) (layer "F.CrtYd") (width 0.05) (tstamp 804cc9c9-13b6-4127-947f-030fe3f67555))
(fp_line (start 5.96 5.63) (end 6.55 5.63) (layer "F.CrtYd") (width 0.05) (tstamp 9a804a75-fd92-41c1-8459-c3387a5c41a9))
(fp_line (start 0 -7.82) (end 4.36 -7.82) (layer "F.CrtYd") (width 0.05) (tstamp 9ed3989e-96d6-4e40-b120-46f4284ae687))
(fp_line (start 5.96 -7.23) (end 5.96 -5.63) (layer "F.CrtYd") (width 0.05) (tstamp b4efb804-54e5-40dd-a8a9-33239905125e))
(fp_line (start -4.36 7.82) (end -4.36 7.23) (layer "F.CrtYd") (width 0.05) (tstamp b5eae762-0e28-4426-aed3-fa6cba5eb32d))
(fp_line (start 6.55 5.63) (end 6.55 0) (layer "F.CrtYd") (width 0.05) (tstamp b86f3fbd-7636-4b4d-9ce8-cd102d6c429c))
(fp_line (start 4.36 -7.23) (end 5.96 -7.23) (layer "F.CrtYd") (width 0.05) (tstamp b90bdbce-d028-40ca-866c-692420abd401))
(fp_line (start 0 7.82) (end -4.36 7.82) (layer "F.CrtYd") (width 0.05) (tstamp d0589c7d-4836-40a7-841a-c3d7bcd7142a))
(fp_line (start -4.36 -7.82) (end -4.36 -7.23) (layer "F.CrtYd") (width 0.05) (tstamp e03964e8-607a-49f1-b1c7-eba22916abe9))
(fp_line (start -5.96 -5.63) (end -6.55 -5.63) (layer "F.CrtYd") (width 0.05) (tstamp e0a63160-cf8c-45d3-8a13-48864070c41e))
(fp_line (start 5.96 7.23) (end 5.96 5.63) (layer "F.CrtYd") (width 0.05) (tstamp ec5e7088-fd3c-4f7e-ab84-8ac54775c297))
(fp_line (start 0 -6.277893) (end 0.5 -6.985) (layer "F.Fab") (width 0.1) (tstamp 249621be-40b1-44a4-b06c-a47744817a60))
(fp_line (start 5.715 6.985) (end -5.715 6.985) (layer "F.Fab") (width 0.1) (tstamp 26b8eeed-4d7c-4f1f-8241-403621ceabb9))
(fp_line (start -5.715 -5.845) (end -4.575 -6.985) (layer "F.Fab") (width 0.1) (tstamp 2eeb6d23-5080-414d-9bda-631bb58d6891))
(fp_line (start 5.715 -6.985) (end 5.715 6.985) (layer "F.Fab") (width 0.1) (tstamp 3c3e10b1-2634-4aa2-bec7-4946fc264218))
(fp_line (start -4.575 -6.985) (end -0.5 -6.985) (layer "F.Fab") (width 0.1) (tstamp 8e5671d0-9607-4c06-b78c-782035efc079))
(fp_line (start -5.715 6.985) (end -5.715 -5.845) (layer "F.Fab") (width 0.1) (tstamp 90f712a4-71ac-466c-9633-0bfd1ce61aa7))
(fp_line (start -0.5 -6.985) (end 0 -6.277893) (layer "F.Fab") (width 0.1) (tstamp a18e2f3a-fbbd-473c-a6da-31d52cfcdf46))
(fp_line (start 0.5 -6.985) (end 5.715 -6.985) (layer "F.Fab") (width 0.1) (tstamp f9174d3c-7bb3-418a-b9ba-3e23681d7d21))
(fp_circle (center 0 -5.08) (end 0.25 -5.08) (layer "F.Fab") (width 0.5) (fill none) (tstamp 13d274da-5c0e-43f1-8cf0-c818a5199ad8))
(pad "1" smd roundrect locked (at 0 -6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "unconnected-(U1-Pad1)") (pinfunction "NC") (pintype "no_connect") (tstamp 6817ea83-dcad-4f62-ae1a-800ac01ae849))
(pad "2" smd roundrect locked (at -1.27 -6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "GND") (pinfunction "A16") (pintype "input") (tstamp 0283a1e5-d261-4e35-a2f0-b504767b2e78))
(pad "3" smd roundrect locked (at -2.54 -6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "GND") (pinfunction "A15") (pintype "input") (tstamp a3a61395-856c-4125-8c5b-c7232ae0ea25))
(pad "4" smd roundrect locked (at -3.81 -6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "/A12") (pinfunction "A12") (pintype "input") (tstamp 76507928-a0af-4d76-89db-07bb1b25839f))
(pad "5" smd roundrect locked (at -5.5625 -5.08 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/A7") (pinfunction "A7") (pintype "input") (tstamp 275bd3bf-86a5-4592-a80d-7fb353eee42e))
(pad "6" smd roundrect locked (at -5.5625 -3.81 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/A6") (pinfunction "A6") (pintype "input") (tstamp 997a1ea4-5c17-484a-97bd-5b14fc76ac6a))
(pad "7" smd roundrect locked (at -5.5625 -2.54 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/A5") (pinfunction "A5") (pintype "input") (tstamp e4f2a223-446e-4c55-b430-6310bc44b82c))
(pad "8" smd roundrect locked (at -5.5625 -1.27 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/A4") (pinfunction "A4") (pintype "input") (tstamp 4b027099-5359-4b65-bef2-53edc09754d5))
(pad "9" smd roundrect locked (at -5.5625 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/A3") (pinfunction "A3") (pintype "input") (tstamp 5347cd22-6f85-41e6-a11f-8edbd7687131))
(pad "10" smd roundrect locked (at -5.5625 1.27 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/A2") (pinfunction "A2") (pintype "input") (tstamp f0b9a74a-053a-4e3f-be9b-eb37503ef4a7))
(pad "11" smd roundrect locked (at -5.5625 2.54 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/A1") (pinfunction "A1") (pintype "input") (tstamp 41eb9583-c2e0-49bc-b8b0-27b061fd1929))
(pad "12" smd roundrect locked (at -5.5625 3.81 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/A0") (pinfunction "A0") (pintype "input") (tstamp 38ddab32-d372-430f-b665-3d0a2db345d5))
(pad "13" smd roundrect locked (at -5.5625 5.08 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/D0") (pinfunction "DQ0") (pintype "tri_state") (tstamp 5cc3eade-4ffd-4e27-8934-233291863e18))
(pad "14" smd roundrect locked (at -3.81 6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/D1") (pinfunction "DQ1") (pintype "tri_state") (tstamp 48fdfa60-1013-490b-89d8-1a56f38da22e))
(pad "15" smd roundrect locked (at -2.54 6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/D2") (pinfunction "DQ2") (pintype "tri_state") (tstamp 994ba6ee-a9c8-4c37-8616-7f950fd27513))
(pad "16" smd roundrect locked (at -1.27 6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 0b2cdcd0-ecd7-442b-a49e-fafdbe47324d))
(pad "17" smd roundrect locked (at 0 6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "/D3") (pinfunction "DQ3") (pintype "tri_state") (tstamp 0b005d25-0222-4b23-9792-2492e9623fba))
(pad "18" smd roundrect locked (at 1.27 6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/D4") (pinfunction "DQ4") (pintype "tri_state") (tstamp 6d1a168b-0084-427d-a6f0-771f6fb271a4))
(pad "19" smd roundrect locked (at 2.54 6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/D5") (pinfunction "DQ5") (pintype "tri_state") (tstamp 5ccf3058-1810-44af-801c-ebac30aac310))
(pad "20" smd roundrect locked (at 3.81 6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/D6") (pinfunction "DQ6") (pintype "tri_state") (tstamp 568c8fc5-692a-466a-b23e-bde48fc59f32))
(pad "21" smd roundrect locked (at 5.5625 5.08 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/D7") (pinfunction "DQ7") (pintype "tri_state") (tstamp 2ec64814-adf1-473b-95e4-12052e8d29d7))
(pad "22" smd roundrect locked (at 5.5625 3.81 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "/~{CS_IC}") (pinfunction "~{CE}") (pintype "input") (tstamp e7732aad-d5a3-4e72-9f0c-f942c79b3af1))
(pad "23" smd roundrect locked (at 5.5625 2.54 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/A10") (pinfunction "A10") (pintype "input") (tstamp e5caba5a-965d-49ba-9d2e-761a2a2bdbd1))
(pad "24" smd roundrect locked (at 5.5625 1.27 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "/~{OE}") (pinfunction "~{OE}") (pintype "input") (tstamp d8bdf8c8-0668-4e90-8422-292b7ba2f9c5))
(pad "25" smd roundrect locked (at 5.5625 0 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/A11") (pinfunction "A11") (pintype "input") (tstamp 5daac4a3-e590-400b-84e0-4f659a60e618))
(pad "26" smd roundrect locked (at 5.5625 -1.27 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "/A9") (pinfunction "A9") (pintype "input") (tstamp 566b6b02-6b59-45df-ab53-a05d432c2fec))
(pad "27" smd roundrect locked (at 5.5625 -2.54 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "/A8") (pinfunction "A8") (pintype "input") (tstamp d2d2b3de-0037-4366-a1a5-4244f4f0e24f))
(pad "28" smd roundrect locked (at 5.5625 -3.81 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "/A13") (pinfunction "A13") (pintype "input") (tstamp d3603acf-e353-4e76-aa05-01a6263d058b))
(pad "29" smd roundrect locked (at 5.5625 -5.08 90) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "/A14") (pinfunction "A14") (pintype "input") (tstamp dddd686a-0fc6-44e8-8c0c-c8f23621612b))
(pad "30" smd roundrect locked (at 3.81 -6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "unconnected-(U1-Pad30)") (pinfunction "NC") (pintype "no_connect") (tstamp 3e9b2427-bf5c-4baa-84fc-2649274ec0ed))
(pad "31" smd roundrect locked (at 2.54 -6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "/~{WE}") (pinfunction "~{WE}") (pintype "input") (tstamp cf09e6eb-e16c-4726-9208-468c2f46d189))
(pad "32" smd roundrect locked (at 1.27 -6.8375 90) (size 0.6 1.475) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "VCC") (pinfunction "VDD") (pintype "power_in") (tstamp e8c005af-d44c-46ef-b87f-09996718b99b))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/PLCC32_7x9.step"
(offset (xyz 0 0 2.9))
(scale (xyz 1 1 1))
(rotate (xyz -90 0 180))
)
)
(footprint "000_LOCAL:Pin_Header_Angled_1x02_Pitch2.54mm" (layer "F.Cu")
(tedit 5F9E6982) (tstamp 00000000-0000-0000-0000-00005fbb8d5e)
(at 165.24 94.285 -90)
(descr "Through hole angled pin header, 1x02, 2.54mm pitch, 6mm pin length, single row")
(tags "Through hole angled pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "FlashROM_100_PLCC.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005fbc3795")
(attr through_hole)
(fp_text reference "JP2" (at 4.385 -2.27 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7d7e62cd-122b-4a20-acd3-623d5d2a498d)
)
(fp_text value "Write-Enable" (at 4.385 4.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cdd55c76-90e3-41fe-8d8c-85a7616bf649)
)
(fp_text user "${REFERENCE}" (at 2.77 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 28b3e522-79ef-4f31-b0e1-3a3bfb7d603e)
)
(fp_line (start 10.1 2.92) (end 4.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp 090c4b1f-9f21-45f8-a6af-98f7dc51704f))
(fp_line (start 1.44 3.87) (end 4.1 3.87) (layer "F.SilkS") (width 0.12) (tstamp 130542d1-f1eb-4260-8416-6038d4430276))
(fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 1ee47823-575c-4153-ac89-3974c8c3cddb))
(fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 36bbb209-82c4-4b25-bf11-3ec21d5f7568))
(fp_line (start 4.1 2.16) (end 10.1 2.16) (layer "F.SilkS") (width 0.12) (tstamp 4b4f6737-1576-47de-8c40-f659583bbc86))
(fp_line (start 10.1 0.38) (end 4.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp 4ff8fe52-ee9c-43d8-b0ba-5c887e9808a7))
(fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer "F.SilkS") (width 0.12) (tstamp 5489975b-07aa-40fc-801b-bce1a3005a53))
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer "F.SilkS") (width 0.12) (tstamp 74941a2e-20b2-4103-accd-53fa843bce8b))
(fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer "F.SilkS") (width 0.12) (tstamp 8705d698-8eff-4a54-9c95-c52c0076c807))
(fp_line (start 4.1 3.87) (end 4.1 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 8810e5a6-f8ee-45bf-88b9-66f9d84ad53d))
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 8f9fd01f-b962-4bd4-8d32-727d4800948c))
(fp_line (start 10.1 2.16) (end 10.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp a0bbc60d-0ee1-44cf-bd8c-8f6e7022da36))
(fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp de962c8f-0b1b-4e11-b629-e90dcd256d9e))
(fp_line (start 1.44 -1.33) (end 1.44 3.87) (layer "F.SilkS") (width 0.12) (tstamp e081a995-f285-4db5-96ac-aa47c27a55ec))
(fp_line (start 1.44 1.27) (end 4.1 1.27) (layer "F.SilkS") (width 0.12) (tstamp e268d469-3bd6-4255-b42e-d0f638d8bb1a))
(fp_line (start -1.8 4.35) (end 10.55 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 4ebbafc2-6af3-48d0-be29-229358d2f8bb))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 76528c68-fd29-45c7-b492-53fcf1bb5149))
(fp_line (start 10.55 4.35) (end 10.55 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 7c200dcb-f8af-49d6-bd43-7e99745e59be))
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp ab9adbaa-1015-4d51-a52b-3c4f653885fd))
(fp_line (start 4.04 3.81) (end 1.5 3.81) (layer "F.Fab") (width 0.1) (tstamp 11403dcc-c6df-4364-ab1a-ea7c37d88426))
(fp_line (start 1.5 3.81) (end 1.5 -0.635) (layer "F.Fab") (width 0.1) (tstamp 17972eea-151d-4a4d-b978-516f05fa188d))
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 27bd199b-df78-42a1-a1b3-f65e33b0b1e2))
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer "F.Fab") (width 0.1) (tstamp 35be41b8-7ec4-4d07-824d-95b8a9bab985))
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer "F.Fab") (width 0.1) (tstamp 46cc14d4-0165-4013-ba37-745e6ac372f3))
(fp_line (start 4.04 -1.27) (end 4.04 3.81) (layer "F.Fab") (width 0.1) (tstamp 4ee81723-f347-4c15-a4e3-55135073d31d))
(fp_line (start 4.04 2.22) (end 10.04 2.22) (layer "F.Fab") (width 0.1) (tstamp 50bdfdf5-c44c-437c-9f19-cd7dccb25656))
(fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer "F.Fab") (width 0.1) (tstamp 5c17dc2b-27f7-4ab5-8ef8-5911cd794fda))
(fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 65420d05-4b29-4b65-8e85-1edcf20dcbac))
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer "F.Fab") (width 0.1) (tstamp 723cc35f-a4d5-464c-8952-8e441cfed9db))
(fp_line (start 10.04 2.22) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 85ba38e4-3bae-42b4-b452-4e228606c37b))
(fp_line (start 4.04 2.86) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 94943387-b213-412b-a285-c01c8124dd88))
(fp_line (start -0.32 2.86) (end 1.5 2.86) (layer "F.Fab") (width 0.1) (tstamp 9b8ad01d-c16e-4624-917b-e23f30fbc454))
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer "F.Fab") (width 0.1) (tstamp b02c9691-58c6-4d73-b16d-23caa68576e0))
(fp_line (start -0.32 2.22) (end 1.5 2.22) (layer "F.Fab") (width 0.1) (tstamp dcaeffef-574c-4bfc-80d9-4533299919aa))
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer "F.Fab") (width 0.1) (tstamp e8f9f5bf-ecd5-41e8-9fee-713f29c88d02))
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer "F.Fab") (width 0.1) (tstamp ee856840-0070-4cf7-a463-e061916a2854))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 25 "/~{WE}") (pinfunction "A") (pintype "passive") (tstamp 6ea7a544-f48c-4905-a2bf-640594c27b99))
(pad "2" thru_hole circle locked (at 0 2.54 270) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 28 "/ALE_~{WE}") (pinfunction "B") (pintype "passive") (tstamp 1e9fb626-e366-4a45-a1dc-1432ec7170be))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/PinHeader_1x02_P2.54mm_Horizontal.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_LOCAL:R_0805" (layer "F.Cu")
(tedit 5F9E65BE) (tstamp 00000000-0000-0000-0000-0000604ac043)
(at 140.475 97.5 -90)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "FlashROM_100_PLCC.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e6b3af8")
(attr smd)
(fp_text reference "R1" (at -0.04 -0.01 unlocked) (layer "F.SilkS")
(effects (font (size 0.6 0.6) (thickness 0.08)))
(tstamp c3e6d4a4-3bb8-4987-9975-cd753981a43e)
)
(fp_text value "100K" (at 0 1.75 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f6d39d9f-c7f3-44ef-8779-ff3f6a109e5a)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab") hide
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp b45a585c-af1d-4b10-b185-fdfea50cd3c5)
)
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp a9ced192-752c-4c71-815a-a7ba863e848b))
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp cfe75d5a-f51c-40b7-9655-d8398972a1b8))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 3b029617-a386-4747-9341-5396027fd68c))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 4bd14df9-4d08-4361-bcb1-0996954f857b))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 78a98640-3315-4997-bf8e-6e8e73a1d95a))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 84950047-64bb-4322-9858-73f09d7587a0))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 7b8fa563-730f-45b3-96e5-7a9f0ef43683))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 9336d67a-8ff9-4954-b650-f9103ed580e6))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 9d273ef4-10ab-45d7-b5f6-3aa0ee76da85))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp bcc71ee9-adb3-41c7-bdc6-7575e6e610c2))
(pad "1" smd roundrect locked (at -0.95 0 270) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 25 "/~{WE}") (pintype "passive") (tstamp 290edf38-0b7b-436a-be88-228f283f47d5))
(pad "2" smd roundrect locked (at 0.95 0 270) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 26 "VCC") (pintype "passive") (tstamp 73c492f7-1146-4d88-810f-e7052591f7e0))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/R_0805_2012Metric.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_LOCAL:Pin_Header_Angled_1x02_Pitch2.54mm" (layer "F.Cu")
(tedit 5F9E6982) (tstamp 00000000-0000-0000-0000-0000604afb77)
(at 137.3 94.285 -90)
(descr "Through hole angled pin header, 1x02, 2.54mm pitch, 6mm pin length, single row")
(tags "Through hole angled pin header THT 1x02 2.54mm single row")
(property "Sheetfile" "FlashROM_100_PLCC.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e68b8a2")
(attr through_hole)
(fp_text reference "JP1" (at 4.385 -2.27 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 18a5274c-a903-4004-8a6b-fbe9542e3cb1)
)
(fp_text value "~{CS} breakout" (at 4.385 4.81 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e1d7b4d9-ec8f-4953-95f4-0e092a2dcc2a)
)
(fp_text user "${REFERENCE}" (at 2.77 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 51062d08-9868-45c8-bb86-4e0e39db5937)
)
(fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 1963f296-1b8e-4bcc-b477-4e0c2106d26a))
(fp_line (start 10.1 0.38) (end 4.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp 36bdb12c-9f7d-43b9-9462-b2831cda1b67))
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer "F.SilkS") (width 0.12) (tstamp 447dc93f-9cb7-46b8-8d97-8ff0b921ccf1))
(fp_line (start 10.1 2.16) (end 10.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp 4f0edae2-77b9-4f79-8b13-ae7a810dc328))
(fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer "F.SilkS") (width 0.12) (tstamp 51e74c5f-2bb2-4bff-81f8-946f93163b83))
(fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 54143722-7c39-4a53-9c94-235f1bd82092))
(fp_line (start 1.44 1.27) (end 4.1 1.27) (layer "F.SilkS") (width 0.12) (tstamp 6fb6fa8d-d964-4676-ba5d-a32fd7225347))
(fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer "F.SilkS") (width 0.12) (tstamp 7a2e3101-031a-40f1-9d2c-18b11ce73e1a))
(fp_line (start 10.1 2.92) (end 4.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp 99edd5c2-39bd-4e24-ba08-04ace5262310))
(fp_line (start 1.44 3.87) (end 4.1 3.87) (layer "F.SilkS") (width 0.12) (tstamp 9e3d2272-5381-41c7-9513-e75790dee008))
(fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp aab371dc-ddf6-43ac-a20e-76f6ad6c75cd))
(fp_line (start 4.1 3.87) (end 4.1 -1.33) (layer "F.SilkS") (width 0.12) (tstamp af5785c0-4ca5-4b92-871c-87620cab16fb))
(fp_line (start 1.44 -1.33) (end 1.44 3.87) (layer "F.SilkS") (width 0.12) (tstamp b6a73a2a-1b8e-419d-8e8b-0847e746ca68))
(fp_line (start 4.1 2.16) (end 10.1 2.16) (layer "F.SilkS") (width 0.12) (tstamp c363d97a-5f98-4a2d-a1c7-08829160c3ea))
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer "F.SilkS") (width 0.12) (tstamp f433003b-585b-476d-81d8-a116a7015fef))
(fp_line (start -1.8 4.35) (end 10.55 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 5192520a-0c85-4fcf-a2c1-541bcc1adc9b))
(fp_line (start 10.55 4.35) (end 10.55 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp c433f1d4-6758-4d96-a09c-dcd175c0717c))
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp c66f3568-669f-4072-94b5-5a55dbe22503))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp e8defe40-fab5-404b-af4d-b537448a5c4a))
(fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 00a95272-7279-4bd4-b88a-b8442f778692))
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer "F.Fab") (width 0.1) (tstamp 10d14aac-9b63-4221-b9a5-6855ced39e92))
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer "F.Fab") (width 0.1) (tstamp 2301b773-878b-48f3-8a76-a79c11b02d64))
(fp_line (start 4.04 2.22) (end 10.04 2.22) (layer "F.Fab") (width 0.1) (tstamp 28528841-6c94-4fd7-894b-1792ab579fb4))
(fp_line (start -0.32 2.86) (end 1.5 2.86) (layer "F.Fab") (width 0.1) (tstamp 3ad6bf1a-93c7-427f-9d04-a79282219830))
(fp_line (start 10.04 2.22) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 4af17552-25dc-4962-a5df-4cee76c7de13))
(fp_line (start 4.04 3.81) (end 1.5 3.81) (layer "F.Fab") (width 0.1) (tstamp 52c4eaef-181c-4336-a95c-2bd641e31323))
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 5a8f8c5f-a6cd-483e-9776-afe7c6e736a6))
(fp_line (start 1.5 3.81) (end 1.5 -0.635) (layer "F.Fab") (width 0.1) (tstamp 6ab12637-a3c3-45a6-90d5-2fab3af7af17))
(fp_line (start 4.04 -1.27) (end 4.04 3.81) (layer "F.Fab") (width 0.1) (tstamp 7d8ec633-d574-479f-9dc8-3a2fa3b4e872))
(fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer "F.Fab") (width 0.1) (tstamp 8cbfafd4-c2b2-4428-8bb7-bc98d0492a85))
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer "F.Fab") (width 0.1) (tstamp ea8eae0e-e03b-4f5f-87b9-7e9a0e444cc2))
(fp_line (start 4.04 2.86) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp f4518967-592b-4588-937d-e77218937c8f))
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer "F.Fab") (width 0.1) (tstamp f565a4f4-5745-485d-a148-a1ee5bca4201))
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer "F.Fab") (width 0.1) (tstamp f6098564-a4f9-47d1-96a8-0152bfec7098))
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer "F.Fab") (width 0.1) (tstamp f93206ad-9069-4b68-adbb-a647cd673ca0))
(fp_line (start -0.32 2.22) (end 1.5 2.22) (layer "F.Fab") (width 0.1) (tstamp fcb59a25-acea-4ae7-8a5a-868edad8b138))
(pad "1" thru_hole circle locked (at 0 0 270) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 30 "/~{CS_IC}") (pinfunction "A") (pintype "passive") (tstamp ebdd275b-3900-45b7-a223-0232ae12e38d))
(pad "2" thru_hole circle locked (at 0 2.54 270) (size 1.524 1.524) (drill 0.9144) (layers *.Cu *.Mask)
(net 29 "/~{CS_BUS}") (pinfunction "B") (pintype "passive") (tstamp e5500026-7946-4930-8b47-c3296a8a8da9))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/PinHeader_1x02_P2.54mm_Horizontal.step"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "000_LOCAL:DIP28_0.6_pcb" (layer "F.Cu")
(tedit 616C066F) (tstamp 00000000-0000-0000-0000-0000604afd94)
(at 150 100 90)
(descr "28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils)")
(tags "THT DIP DIL PDIP 2.54mm 15.24mm 600mil")
(property "Sheetfile" "FlashROM_100_PLCC.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e5c209e")
(attr through_hole)
(fp_text reference "J1" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0f2edd4e-5e33-48a7-9033-cdb49a76c6c1)
)
(fp_text value "LH535618 DIP LEGS" (at -1.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9f716584-a760-4d58-9d44-4a35b70187e9)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e634e991-5f99-4a15-9949-c01d545d6ef6)
)
(fp_line (start 8.89 17.145) (end 8.89 -17.145) (layer "Edge.Cuts") (width 0.0254) (tstamp 09c6bb70-a88a-4653-bfab-b8f7abf13b9b))
(fp_line (start -8.255 -17.78) (end -1.524 -17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp 3e679b36-ddad-45cc-b19d-0b21dbaafee3))
(fp_line (start -8.89 -17.145) (end -8.89 17.145) (layer "Edge.Cuts") (width 0.0254) (tstamp 667da9ec-9425-459e-9c7c-76a0ab05cc3e))
(fp_line (start 1.524 -17.78) (end 8.255 -17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp 7c8c74cf-d3af-47ad-9a63-17b245d2a350))
(fp_line (start -8.255 17.78) (end 8.255 17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp da0e5d08-5c68-487c-aab7-76cb3db5607f))
(fp_arc (start -8.255 17.78) (mid -8.704013 17.594013) (end -8.89 17.145) (layer "Edge.Cuts") (width 0.0254) (tstamp 207e4c9f-9e81-4045-b8c4-384bee87f0bd))
(fp_arc (start -1.524 -17.78) (mid -1.344395 -17.705605) (end -1.27 -17.526) (layer "Edge.Cuts") (width 0.0254) (tstamp 759ee2de-d7ae-4050-bffc-e893b1dbefc8))
(fp_arc (start 1.27 -17.526) (mid 0 -16.256) (end -1.27 -17.526) (layer "Edge.Cuts") (width 0.0254) (tstamp 81adbf8b-604a-4c44-a154-7c822ebb02c4))
(fp_arc (start 1.27 -17.526) (mid 1.344395 -17.705605) (end 1.524 -17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp 89da8eaa-6d1f-4b92-828e-31e82421e7e8))
(fp_arc (start 8.89 17.145) (mid 8.704013 17.594013) (end 8.255 17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp d7379a4c-f654-4ef3-9613-9b3d743b9012))
(fp_arc (start 8.255 -17.78) (mid 8.704013 -17.594013) (end 8.89 -17.145) (layer "Edge.Cuts") (width 0.0254) (tstamp f3333085-5d91-4ba8-ae7a-5ef4c546fac0))
(fp_arc (start -8.89 -17.145) (mid -8.704013 -17.594013) (end -8.255 -17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp fbd2db17-34b9-47ee-991a-12f6da4816bc))
(pad "1" thru_hole roundrect (at -7.62 -16.51 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask) (roundrect_rratio 0.1)
(net 26 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp 42d05c08-37bf-40fb-adba-dce3a833ab9a))
(pad "2" thru_hole circle (at -7.62 -13.97 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 2 "/A10") (pinfunction "A10") (pintype "input") (tstamp 0296ae87-42f7-43e9-a16d-9088a947367d))
(pad "3" thru_hole circle (at -7.62 -11.43 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 4 "/A7") (pinfunction "AD7") (pintype "input") (tstamp 6f110a95-16d7-4bea-9979-9ed51976b79f))
(pad "4" thru_hole circle (at -7.62 -8.89 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 6 "/A6") (pinfunction "AD6") (pintype "input") (tstamp 85a8c70a-3aa2-42d4-b3e2-9be8b3285094))
(pad "5" thru_hole circle (at -7.62 -6.35 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 8 "/A5") (pinfunction "AD5") (pintype "input") (tstamp 2023359f-845a-4f94-839c-d3aeeb2851f3))
(pad "6" thru_hole circle (at -7.62 -3.81 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 10 "/A4") (pinfunction "AD4") (pintype "input") (tstamp c032ffb4-20de-4aed-9abc-a9dc089bbf36))
(pad "7" thru_hole circle (at -7.62 -1.27 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 12 "/A3") (pinfunction "AD3") (pintype "input") (tstamp f751a5e8-4b07-4ac7-8735-363f7bd7b0ac))
(pad "8" thru_hole circle (at -7.62 1.27 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 14 "/A2") (pinfunction "AD2") (pintype "input") (tstamp 87a04583-04e4-4bb7-8b8e-d8c0eb549bbe))
(pad "9" thru_hole circle (at -7.62 3.81 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 16 "/A1") (pinfunction "AD1") (pintype "input") (tstamp da6dc1ef-8c8e-4a93-a0eb-eb1be1f7ccb9))
(pad "10" thru_hole circle (at -7.62 6.35 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 17 "/A0") (pinfunction "AD0") (pintype "input") (tstamp e0080419-bc6c-48c7-8499-da9ad2a2b671))
(pad "11" thru_hole circle (at -7.62 8.89 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 19 "/D0") (pinfunction "D0") (pintype "tri_state") (tstamp e8d15f5c-45f6-42fe-b90e-499ca2fc8022))
(pad "12" thru_hole circle (at -7.62 11.43 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 21 "/D1") (pinfunction "D1") (pintype "tri_state") (tstamp 25a88286-cd13-4054-9fb4-50b07757b5f2))
(pad "13" thru_hole circle (at -7.62 13.97 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 23 "/D2") (pinfunction "D2") (pintype "tri_state") (tstamp b7432acb-9096-4553-abd6-7069d993df3b))
(pad "14" thru_hole circle (at -7.62 16.51 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 27 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp eb6b25ae-dc1d-4c34-baa2-565f70667694))
(pad "15" thru_hole circle (at 7.62 16.51 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 1 "/D3") (pinfunction "D3") (pintype "tri_state") (tstamp e767f883-af54-447c-af5a-3bb1447b3661))
(pad "16" thru_hole circle (at 7.62 13.97 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 3 "/D4") (pinfunction "D4") (pintype "tri_state") (tstamp 328f1e8d-31c4-4681-aaa8-bd59047b8219))
(pad "17" thru_hole circle (at 7.62 11.43 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 5 "/D5") (pinfunction "D5") (pintype "tri_state") (tstamp a17b8d63-bb98-47c5-9b61-7ccb938081b4))
(pad "18" thru_hole circle (at 7.62 8.89 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 7 "/D6") (pinfunction "D6") (pintype "tri_state") (tstamp 4e6bfebf-3dd9-4c57-84a9-cee7ed421374))
(pad "19" thru_hole circle (at 7.62 6.35 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 9 "/D7") (pinfunction "D7") (pintype "tri_state") (tstamp 441b25ee-af03-461b-97b0-2381e50d684e))
(pad "20" thru_hole circle (at 7.62 3.81 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 11 "/A11") (pinfunction "A11") (pintype "input") (tstamp c62d1b58-f28e-47d3-a25d-9aa72d4a2215))
(pad "21" thru_hole circle (at 7.62 1.27 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 13 "/~{OE}") (pinfunction "~{OE}") (pintype "input") (tstamp 9272e36b-3331-4d60-b8cd-6cf915c86271))
(pad "22" thru_hole circle (at 7.62 -1.27 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 15 "/A13") (pinfunction "A13") (pintype "input") (tstamp 88786460-f06a-45be-9bd6-2a63df643647))
(pad "23" thru_hole circle (at 7.62 -3.81 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 28 "/ALE_~{WE}") (pinfunction "ALE") (pintype "input") (tstamp 6923cb39-009d-4300-b013-f72116b24755))
(pad "24" thru_hole circle (at 7.62 -6.35 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 18 "/A12") (pinfunction "A12") (pintype "input") (tstamp 7d1fd06c-f388-43ff-acc8-cfa88fe83930))
(pad "25" thru_hole circle (at 7.62 -8.89 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 20 "/A9") (pinfunction "A9") (pintype "input") (tstamp 379a307c-2548-48c8-a83c-89b8a2d1df3d))
(pad "26" thru_hole circle (at 7.62 -11.43 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 22 "/A8") (pinfunction "A8") (pintype "input") (tstamp 19f901a6-2778-41f7-a413-a1abb4d85ec5))
(pad "27" thru_hole circle (at 7.62 -13.97 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 29 "/~{CS_BUS}") (pinfunction "~{CS}") (pintype "input") (tstamp ec30785e-c49b-4091-9546-d8d4ce0519db))
(pad "28" thru_hole circle (at 7.62 -16.51 90) (size 1.2 1.2) (drill 0.6) (layers *.Cu *.Mask)
(net 24 "/A14") (pinfunction "A14") (pintype "input") (tstamp 3d15d983-3724-402c-81d6-37113aca46d2))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/DIP28_legs_solder.step"
(offset (xyz -7.62 16.51 -1.7399))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/DIP28_legs.step_"
(offset (xyz -7.62 16.51 -1.6002))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 90))
)
)
(gr_circle (center 133.4 106) (end 133.4 105.8) (layer "F.SilkS") (width 0.4) (fill none) (tstamp 5aa90a12-b3fa-4a00-92e3-fef4ce7019b0))
(gr_text "R1,R2: ${00000000-0000-0000-0000-0000604ac043:VALUE}\nLegs: TE 1544210" (at 166.51 105.08) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00005e253af7)
(effects (font (size 0.6 0.6) (thickness 0.08)) (justify left mirror))
)
(gr_text "${COMMENT2}\n${TITLE} ${REVISION}" (at 142.38 105.08) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00005e438e65)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify mirror))
)
(gr_text "REX_Classic main ROM support:\n~{CS_BUS} to REX TP1 to boot from REX main rom\n~{CS_BUS} to ~{CS_IC} to boot from internal main rom\n" (at 165.875 100) (layer "B.SilkS") (tstamp 0e1e77ab-24dd-4dbc-a5f5-46e0ac6c9b70)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify left mirror))
)
(gr_text "tandy.wiki/FlexROM_100\n" (at 150 95.555) (layer "B.SilkS") (tstamp d537a88e-d765-4a6a-a698-32a376528ed3)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "IC" (at 137.2998 104.826 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e2556cf)
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify right))
)
(gr_text "BUS" (at 134.76 104.826 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e25583b)
(effects (font (size 0.6 0.6) (thickness 0.1)) (justify right))
)
(gr_text "~{CS}" (at 136.1822 103.5436 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e34c224)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(gr_text "System ROM" (at 160.25 100 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005fa44572)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(gr_text "PROGRAM" (at 164 101.5 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005fbb97c9)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(gr_text "TRS-80 Model 100" (at 158.75 100 90) (layer "F.SilkS") (tstamp 1e91b8be-2163-4631-854c-12bfdd167c69)
(effects (font (size 0.8 0.8) (thickness 0.15)))
)
(segment (start 166.51 92.38) (end 166.51 94.92) (width 0.2) (layer "F.Cu") (net 1) (tstamp 24c16067-0f1e-431d-b9f9-d25fc69c341a))
(segment (start 161.43 100) (end 156.8375 100) (width 0.2) (layer "F.Cu") (net 1) (tstamp 8e5fce02-f3ea-428d-826a-e301a7b29004))
(segment (start 166.51 94.92) (end 161.43 100) (width 0.2) (layer "F.Cu") (net 1) (tstamp 96c5dc78-8444-4cfa-bc17-16a10347fe36))
(segment (start 152.54 94.4375) (end 152.54 94.4375) (width 0.2) (layer "F.Cu") (net 2) (tstamp 00000000-0000-0000-0000-00005fa40166))
(segment (start 152.54 94.4375) (end 152.54 96.19) (width 0.2) (layer "F.Cu") (net 2) (tstamp 787615e5-b0de-4be2-a050-1c5152b09763))
(segment (start 138.7605 104.8895) (end 136.03 107.62) (width 0.2) (layer "F.Cu") (net 2) (tstamp cfc0fcac-7841-4e83-bd56-a8ead3dc1f2f))
(segment (start 152.54 96.19) (end 143.8405 104.8895) (width 0.2) (layer "F.Cu") (net 2) (tstamp e9825fb6-0f07-4e4b-b72c-29714337f4cf))
(segment (start 143.8405 104.8895) (end 138.7605 104.8895) (width 0.2) (layer "F.Cu") (net 2) (tstamp ead1dde9-8a91-487b-a8d4-fe1fb11c8f94))
(segment (start 163.97 92.38) (end 163.97 94.92) (width 0.2) (layer "F.Cu") (net 3) (tstamp 906a7bae-34db-417a-a5b9-4d2c197dd7fd))
(segment (start 160.16 98.73) (end 156.8375 98.73) (width 0.2) (layer "F.Cu") (net 3) (tstamp be45c4be-6ff9-49db-b1be-32859ab89294))
(segment (start 163.97 94.92) (end 160.16 98.73) (width 0.2) (layer "F.Cu") (net 3) (tstamp f5f6e585-9cdf-4d52-b23b-49571acb90a5))
(segment (start 144.92 105.5625) (end 140.6275 105.5625) (width 0.2) (layer "F.Cu") (net 4) (tstamp 0d431d54-edb7-4e50-9464-0e84a69b5c6c))
(segment (start 140.6275 105.5625) (end 138.57 107.62) (width 0.2) (layer "F.Cu") (net 4) (tstamp 750ebc15-5d34-4833-876b-fe867dee5a56))
(segment (start 157.8105 97.46) (end 156.8375 97.46) (width 0.2) (layer "F.Cu") (net 5) (tstamp 1cfb57b1-7984-4fa9-a979-dbc9e8a27b03))
(segment (start 161.43 93.8405) (end 157.8105 97.46) (width 0.2) (layer "F.Cu") (net 5) (tstamp 76202b0d-13bd-4db4-9a56-41b6d8231941))
(segment (start 161.43 92.38) (end 161.43 93.8405) (width 0.2) (layer "F.Cu") (net 5) (tstamp 7942b116-6994-44a2-b8f3-815ffc321fcb))
(via (at 146.19 105.5625) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 6) (tstamp 72f70692-ff4a-43ff-9296-7779b97c9b66))
(segment (start 143.1675 105.5625) (end 141.11 107.62) (width 0.2) (layer "B.Cu") (net 6) (tstamp 5281e1c0-a9e4-41b4-a12a-73c175cd979e))
(segment (start 146.19 105.5625) (end 143.1675 105.5625) (width 0.2) (layer "B.Cu") (net 6) (tstamp 5b57ece5-6cbc-4435-b146-309a1dbd740e))
(segment (start 157.3025 96.19) (end 156.8375 96.19) (width 0.2) (layer "F.Cu") (net 7) (tstamp 95603c68-b916-49e1-b332-b56e046be946))
(segment (start 158.89 94.6025) (end 157.3025 96.19) (width 0.2) (layer "F.Cu") (net 7) (tstamp c5a50052-4b79-4a39-86ce-13faf2b130f2))
(segment (start 158.89 92.38) (end 158.89 94.6025) (width 0.2) (layer "F.Cu") (net 7) (tstamp f3a8feb4-195d-4c4d-8705-925609fbab7d))
(segment (start 143.65 107.62) (end 144.6025 106.6675) (width 0.2) (layer "F.Cu") (net 8) (tstamp 4dcc0430-bd2f-4256-bd9e-820eaf361113))
(segment (start 144.6025 106.6675) (end 146.825 106.6675) (width 0.2) (layer "F.Cu") (net 8) (tstamp b2179f63-c734-4c13-a2f8-96a88dc9095e))
(segment (start 146.825 106.6675) (end 147.46 106.0325) (width 0.2) (layer "F.Cu") (net 8) (tstamp c081f5a8-d8af-4836-ad24-d067b9e9f199))
(segment (start 147.46 106.0325) (end 147.46 105.5625) (width 0.2) (layer "F.Cu") (net 8) (tstamp f522d447-c0b8-409f-b168-11510fc52180))
(segment (start 156.35 92.38) (end 155.2832 93.4468) (width 0.2) (layer "F.Cu") (net 9) (tstamp 230ff814-a04c-4e98-b09c-f3c4e3887dca))
(segment (start 155.2832 93.4468) (end 155.2832 94.2343) (width 0.2) (layer "F.Cu") (net 9) (tstamp 45f6ec7d-3548-4878-bdac-77e2e0b2ae55))
(segment (start 155.2832 94.2343) (end 155.08 94.4375) (width 0.2) (layer "F.Cu") (net 9) (tstamp b95d00d6-7cbd-46dc-813a-725b59edcec1))
(segment (start 156.35 92.38) (end 156.223 92.38) (width 0.2) (layer "F.Cu") (net 9) (tstamp c4379fbe-9846-455a-97cc-da1b9584ed08))
(segment (start 146.19 107.62) (end 147.1425 107.62) (width 0.2) (layer "F.Cu") (net 10) (tstamp 3a2ca94b-d869-4467-84e9-6b25ece7c121))
(segment (start 147.1425 107.62) (end 148.73 106.0325) (width 0.2) (layer "F.Cu") (net 10) (tstamp 5187c18e-9229-415c-8569-69efaa2f383d))
(segment (start 148.73 106.0325) (end 148.73 105.5625) (width 0.2) (layer "F.Cu") (net 10) (tstamp 8c8e1613-0df3-4bcb-8784-c967402fedca))
(segment (start 150.6985 95.555) (end 150 94.8565) (width 0.2) (layer "F.Cu") (net 11) (tstamp 66ec78a2-8e36-4c6a-8489-c796f45cd127))
(segment (start 151.905 93.4595) (end 151.905 95.3645) (width 0.2) (layer "F.Cu") (net 11) (tstamp 713c13a4-69ce-4e18-97f6-11727ee58513))
(segment (start 152.9845 92.38) (end 151.905 93.4595) (width 0.2) (layer "F.Cu") (net 11) (tstamp 8d9b8571-2a6b-4a2c-85b8-f45118d7fa13))
(segment (start 150 94.8565) (end 150 94.4375) (width 0.2) (layer "F.Cu") (net 11) (tstamp dbe5e99e-793c-461b-a27f-eebbac72b15a))
(segment (start 151.7145 95.555) (end 150.6985 95.555) (width 0.2) (layer "F.Cu") (net 11) (tstamp dcb96e25-4872-4388-8477-2c3759715d74))
(segment (start 153.81 92.38) (end 152.9845 92.38) (width 0.2) (layer "F.Cu") (net 11) (tstamp f40788af-3d7d-426b-8a55-8cb6281af7b5))
(segment (start 151.905 95.3645) (end 151.7145 95.555) (width 0.2) (layer "F.Cu") (net 11) (tstamp fa37bc81-d429-48aa-a468-1ed92bff209b))
(segment (start 148.73 107.62) (end 149.8 106.55) (width 0.2) (layer "F.Cu") (net 12) (tstamp 0a9bdc97-90e1-47a6-800f-1f84fa4d155a))
(segment (start 149.8 105.7625) (end 150 105.5625) (width 0.2) (layer "F.Cu") (net 12) (tstamp 681b0bfe-7cdd-4c09-8413-0e360b19bd73))
(segment (start 149.8 106.55) (end 149.8 105.7625) (width 0.2) (layer "F.Cu") (net 12) (tstamp f61aa675-714c-4b7f-92e8-c6174583f535))
(segment (start 151.27 92.38) (end 151.27 94.4375) (width 0.2) (layer "F.Cu") (net 13) (tstamp fd548a2c-9690-4dc5-b305-201e26966db0))
(segment (start 151.27 107.62) (end 151.27 105.5625) (width 0.2) (layer "F.Cu") (net 14) (tstamp 80439b21-a2f9-492e-9902-af44e491948e))
(segment (start 148.73 92.38) (end 147.841 92.38) (width 0.2) (layer "F.Cu") (net 15) (tstamp 41b3b564-9f5d-4038-8307-6691539a0fd9))
(segment (start 146.19 94.031) (end 146.19 94.4375) (width 0.2) (layer "F.Cu") (net 15) (tstamp 795b595c-f42f-4b3b-b134-61de9947107c))
(segment (start 147.841 92.38) (end 146.19 94.031) (width 0.2) (layer "F.Cu") (net 15) (tstamp 97799ac1-95aa-42f3-b4a8-5931e076c8d8))
(segment (start 152.7432 105.7657) (end 152.54 105.5625) (width 0.2) (layer "F.Cu") (net 16) (tstamp 67788fc3-91a3-4780-b3d8-e94a09340e02))
(segment (start 152.7432 106.5532) (end 152.7432 105.7657) (width 0.2) (layer "F.Cu") (net 16) (tstamp 6f13c4fd-5fad-4baa-be45-e5d6588ae55a))
(segment (start 153.81 107.62) (end 152.7432 106.5532) (width 0.2) (layer "F.Cu") (net 16) (tstamp a1f3400f-2d00-4498-a32f-d8b12932a6b6))
(segment (start 155.461 107.62) (end 153.81 105.969) (width 0.2) (layer "F.Cu") (net 17) (tstamp 2ff91b84-7df9-46d9-976a-0b0eeb3c877c))
(segment (start 156.35 107.62) (end 155.461 107.62) (width 0.2) (layer "F.Cu") (net 17) (tstamp ca9fa625-06b4-4895-8420-01aa805c8674))
(segment (start 153.81 105.969) (end 153.81 105.5625) (width 0.2) (layer "F.Cu") (net 17) (tstamp db870f0a-6e8a-4ab5-aebb-9ea9354a2b72))
(segment (start 143.1625 103.81) (end 143.61325 103.81) (width 0.2) (layer "F.Cu") (net 18) (tstamp 0cd10652-da9e-47c2-b048-f510ceb7fadd))
(segment (start 144.48 92.38) (end 143.65 92.38) (width 0.2) (layer "F.Cu") (net 18) (tstamp 1b8de50a-6f73-4031-b64e-4aefcb834a51))
(segment (start 145.55 93.45) (end 144.48 92.38) (width 0.2) (layer "F.Cu") (net 18) (tstamp 618272e4-fe82-4134-b01c-eda4d620b152))
(segment (start 145.55 101.87325) (end 145.55 93.45) (width 0.2) (layer "F.Cu") (net 18) (tstamp 7bffdb93-3e17-4317-8328-b079369a0a06))
(segment (start 143.61325 103.81) (end 145.55 101.87325) (width 0.2) (layer "F.Cu") (net 18) (tstamp 832b777c-af9d-41bf-b4db-4ea0fe343284))
(segment (start 156.8325 105.5625) (end 155.08 105.5625) (width 0.2) (layer "F.Cu") (net 19) (tstamp 30123658-95da-4d25-8e33-6e76e4ce29cf))
(segment (start 158.89 107.62) (end 156.8325 105.5625) (width 0.2) (layer "F.Cu") (net 19) (tstamp be0f8876-af22-48af-a4a9-738a17e2bd9c))
(segment (start 148.73 95.682) (end 148.73 94.4375) (width 0.2) (layer "F.Cu") (net 20) (tstamp cb90add9-2c29-4d90-b56f-fb1a0b4301f8))
(via (at 148.73 95.682) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 20) (tstamp 9d94c55b-bcaf-4312-861e-a601f8f04c61))
(segment (start 143.2055 94.4755) (end 141.11 92.38) (width 0.2) (layer "B.Cu") (net 20) (tstamp 1796b0ba-2416-4a3f-8a2f-2f3ce81e9d1c))
(segment (start 148.73 95.682) (end 147.5235 94.4755) (width 0.2) (layer "B.Cu") (net 20) (tstamp 65301a17-47f0-4efc-a1f7-5b853f096c46))
(segment (start 147.5235 94.4755) (end 143.2055 94.4755) (width 0.2) (layer "B.Cu") (net 20) (tstamp adae7887-cb93-4e64-9938-4805f795a536))
(segment (start 158.4455 103.81) (end 156.8375 103.81) (width 0.2) (layer "F.Cu") (net 21) (tstamp 3b91c195-15d2-40ce-bac3-d904c69cdbc4))
(segment (start 161.43 107.62) (end 161.43 106.7945) (width 0.2) (layer "F.Cu") (net 21) (tstamp 49d5ac13-103d-400b-a9cb-fa3b519e8364))
(segment (start 161.43 106.7945) (end 158.4455 103.81) (width 0.2) (layer "F.Cu") (net 21) (tstamp c400f5ae-4d5c-4922-a223-75fca0c459b7))
(segment (start 147.2568 95.2502) (end 147.2568 94.6407) (width 0.2) (layer "F.Cu") (net 22) (tstamp 0e66ad77-8551-4108-99ef-d5b555362ab1))
(segment (start 147.2568 94.6407) (end 147.46 94.4375) (width 0.2) (layer "F.Cu") (net 22) (tstamp 8c8858c7-37e2-4f09-a0ab-c518d7e02fc1))
(segment (start 146.825 95.682) (end 147.2568 95.2502) (width 0.2) (layer "F.Cu") (net 22) (tstamp ae6b55e2-2509-4fc9-9700-7546c3f015cb))
(via (at 146.825 95.682) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 22) (tstamp ea5dda40-a6e1-4781-8257-7f6126991e3b))
(segment (start 146.825 95.682) (end 141.872 95.682) (width 0.2) (layer "B.Cu") (net 22) (tstamp 3cde9fed-e155-4e11-be1b-7b3f39aaa114))
(segment (start 141.872 95.682) (end 138.57 92.38) (width 0.2) (layer "B.Cu") (net 22) (tstamp cf955871-86a8-4cb3-8cf0-f915cf957981))
(segment (start 163.97 107.62) (end 158.89 102.54) (width 0.2) (layer "F.Cu") (net 23) (tstamp 5cf2a662-2eb5-41ab-88ee-bd69484a07f5))
(segment (start 158.89 102.54) (end 156.8375 102.54) (width 0.2) (layer "F.Cu") (net 23) (tstamp 7d7203e0-8e7a-4a35-939a-1bd4971c1a5b))
(segment (start 133.49 94.79) (end 133.49 92.38) (width 0.2) (layer "F.Cu") (net 24) (tstamp 362a698d-13d5-4616-a778-e7848b9a8ebc))
(segment (start 138.9255 94.4375) (end 137.913 95.45) (width 0.2) (layer "F.Cu") (net 24) (tstamp 3d7a2a84-8670-4d73-88b0-b2174104768b))
(segment (start 144.92 94.4375) (end 138.9255 94.4375) (width 0.2) (layer "F.Cu") (net 24) (tstamp 600167dc-8367-424e-919b-482b36f9a493))
(segment (start 134.15 95.45) (end 133.49 94.79) (width 0.2) (layer "F.Cu") (net 24) (tstamp c94adca7-cb5e-46bb-9f0a-a54f6913a1ad))
(segment (start 137.913 95.45) (end 134.15 95.45) (width 0.2) (layer "F.Cu") (net 24) (tstamp d107d784-99dd-429a-90db-c7b344c4e456))
(segment (start 143.1625 97.46) (end 143.1625 97.46) (width 0.2) (layer "F.Cu") (net 25) (tstamp 4e1af913-7569-4a0e-ac7d-aac8a934548a))
(segment (start 140.835 96.55) (end 140.475 96.55) (width 0.2) (layer "F.Cu") (net 25) (tstamp bfe9a8a6-2eee-4971-a15a-16ee43fa5155))
(segment (start 143.1625 97.46) (end 141.745 97.46) (width 0.2) (layer "F.Cu") (net 25) (tstamp da43d6bf-03f0-462d-a7d1-093d9d176841))
(segment (start 141.745 97.46) (end 140.835 96.55) (width 0.2) (layer "F.Cu") (net 25) (tstamp ec76820b-67a3-4da7-b8e9-9d71ca77d06b))
(via (at 143.1625 97.46) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 25) (tstamp 24ca72f2-7018-4673-84c8-5b72c98960c1))
(segment (start 165.24 94.285) (end 162.065 97.46) (width 0.2) (layer "B.Cu") (net 25) (tstamp 158cdd6f-e565-4678-8ee8-5f08c193690c))
(segment (start 162.065 97.46) (end 143.1625 97.46) (width 0.2) (layer "B.Cu") (net 25) (tstamp 48eabd7d-5337-48f4-bba4-335244e6bffc))
(segment (start 140.602 98.73) (end 143.1625 98.73) (width 0.6) (layer "F.Cu") (net 26) (tstamp 175f6ba0-0aa4-4fd9-92f0-3c98a6d2123a))
(segment (start 140.475 101.55) (end 140.475 98.45) (width 0.6) (layer "F.Cu") (net 26) (tstamp 423641b0-c2b0-41e1-923a-1e464f5da3a7))
(segment (start 140.475 98.857) (end 140.602 98.73) (width 0.6) (layer "F.Cu") (net 26) (tstamp 87547117-6c6d-47c1-8f86-e8a69a73f478))
(segment (start 133.49 107.62) (end 139.56 101.55) (width 0.6) (layer "F.Cu") (net 26) (tstamp 96492bf5-ced4-4f06-8d90-6f168a556412))
(segment (start 139.56 101.55) (end 140.475 101.55) (width 0.6) (layer "F.Cu") (net 26) (tstamp b9992f1e-adc1-477f-85ba-b544d5d6a9a5))
(segment (start 140.475 98.45) (end 140.475 98.857) (width 0.6) (layer "F.Cu") (net 26) (tstamp f676d31f-0a55-4f78-a2c2-6e9cbae0916e))
(via (at 144.666 99.365) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 27) (tstamp 077ea149-65ce-4e94-89dc-c9ca398f0969))
(segment (start 146.19 92.38) (end 147.079 92.38) (width 0.2) (layer "B.Cu") (net 28) (tstamp 3a5847ff-6e44-4fe0-92ea-9b6f41c2c0eb))
(segment (start 147.079 92.38) (end 148.984 94.285) (width 0.2) (layer "B.Cu") (net 28) (tstamp 9b886d60-5ae2-4434-a9a7-d973ac036a92))
(segment (start 148.984 94.285) (end 162.7 94.285) (width 0.2) (layer "B.Cu") (net 28) (tstamp af0983f2-00af-4a00-b2a9-ecbb42ed512d))
(segment locked (start 134.76 94.285) (end 136.03 92.38) (width 0.2) (layer "F.Cu") (net 29) (tstamp fb15e9df-d4e4-4ef9-9cf1-0a27f3ed0337))
(segment (start 153.81 101.524) (end 153.81 94.4375) (width 0.2) (layer "F.Cu") (net 30) (tstamp 60ce5125-7d5f-42fe-b36b-4d9c6c3a078d))
(via (at 140.475 103.45) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 30) (tstamp 03bacc02-6b31-4d9a-b1ce-c2708ed5526c))
(via (at 153.81 101.524) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 30) (tstamp bee0b2d1-624e-403b-bb71-7c41bbbd14cf))
(segment (start 142.375 101.55) (end 153.784 101.55) (width 0.2) (layer "B.Cu") (net 30) (tstamp 374a3701-f0f9-41a8-8223-cf4cc19d049c))
(segment (start 153.784 101.55) (end 153.81 101.524) (width 0.2) (layer "B.Cu") (net 30) (tstamp 529173a4-0fed-4ecf-8d99-e9084ae11a76))
(segment (start 140.475 103.45) (end 137.3 100.275) (width 0.2) (layer "B.Cu") (net 30) (tstamp 91a7773c-380d-4d25-97ed-fc7a9e716759))
(segment (start 137.3 100.275) (end 137.3 94.285) (width 0.2) (layer "B.Cu") (net 30) (tstamp 99163285-e145-42a0-9b81-f2d9d27f257c))
(segment (start 140.475 103.45) (end 142.375 101.55) (width 0.2) (layer "B.Cu") (net 30) (tstamp d7c38ace-ada9-4d13-ad7c-9efb4543f360))
(segment (start 143.64 96.19) (end 143.1625 96.19) (width 0.2) (layer "F.Cu") (net 32) (tstamp bb9c7cd5-390c-47c1-879e-595e0f4884db))
(zone (net 27) (net_name "GND") (layer "F.Cu") (tstamp 60985fde-622a-4d21-a79e-805465bea858) (hatch edge 0.508)
(connect_pads yes (clearance 0.2))
(min_thickness 0.2) (filled_areas_thickness no)
(fill yes (thermal_gap 0.2) (thermal_bridge_width 0.3) (smoothing fillet) (radius 0.2))
(polygon
(pts
(xy 167.78 91.11)
(xy 167.78 108.89)
(xy 132.22 108.89)
(xy 132.22 91.11)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 167.133169 91.313018)
(xy 167.133776 91.313158)
(xy 167.133778 91.313158)
(xy 167.144641 91.315656)
(xy 167.155516 91.313196)
(xy 167.159206 91.313202)
(xy 167.171955 91.314049)
(xy 167.244534 91.323604)
(xy 167.269498 91.330293)
(xy 167.35021 91.363725)
(xy 167.372586 91.376643)
(xy 167.441906 91.429834)
(xy 167.460166 91.448094)
(xy 167.513357 91.517414)
(xy 167.526275 91.53979)
(xy 167.559707 91.620502)
(xy 167.566396 91.645466)
(xy 167.575999 91.718409)
(xy 167.576846 91.731503)
(xy 167.576842 91.733779)
(xy 167.574344 91.744641)
(xy 167.576804 91.755513)
(xy 167.577059 91.756638)
(xy 167.5795 91.778488)
(xy 167.5795 108.220983)
(xy 167.576982 108.243169)
(xy 167.574344 108.254641)
(xy 167.576804 108.265516)
(xy 167.576798 108.269206)
(xy 167.575951 108.281955)
(xy 167.566396 108.354534)
(xy 167.559707 108.379498)
(xy 167.526275 108.46021)
(xy 167.513357 108.482586)
(xy 167.460166 108.551906)
(xy 167.441906 108.570166)
(xy 167.372586 108.623357)
(xy 167.35021 108.636275)
(xy 167.269498 108.669707)
(xy 167.244534 108.676396)
(xy 167.171591 108.685999)
(xy 167.158497 108.686846)
(xy 167.156221 108.686842)
(xy 167.145359 108.684344)
(xy 167.134487 108.686804)
(xy 167.134302 108.686846)
(xy 167.133359 108.687059)
(xy 167.111512 108.6895)
(xy 132.889017 108.6895)
(xy 132.866831 108.686982)
(xy 132.866224 108.686842)
(xy 132.866222 108.686842)
(xy 132.855359 108.684344)
(xy 132.844484 108.686804)
(xy 132.840794 108.686798)
(xy 132.828045 108.685951)
(xy 132.755466 108.676396)
(xy 132.730502 108.669707)
(xy 132.64979 108.636275)
(xy 132.627414 108.623357)
(xy 132.558094 108.570166)
(xy 132.539834 108.551906)
(xy 132.486643 108.482586)
(xy 132.473725 108.46021)
(xy 132.440293 108.379499)
(xy 132.433604 108.354534)
(xy 132.424549 108.285751)
(xy 132.424351 108.261514)
(xy 132.42439 108.261178)
(xy 132.425655 108.255718)
(xy 132.425656 108.255)
(xy 132.423085 108.243728)
(xy 132.42298 108.243266)
(xy 132.4205 108.221248)
(xy 132.4205 108.137554)
(xy 132.6895 108.137554)
(xy 132.695645 108.184231)
(xy 132.698848 108.191099)
(xy 132.698848 108.1911)
(xy 132.73527 108.269206)
(xy 132.743412 108.286667)
(xy 132.823333 108.366588)
(xy 132.831181 108.370248)
(xy 132.831183 108.370249)
(xy 132.894354 108.399706)
(xy 132.925769 108.414355)
(xy 132.972446 108.4205)
(xy 134.007554 108.4205)
(xy 134.054231 108.414355)
(xy 134.085646 108.399706)
(xy 134.148817 108.370249)
(xy 134.148819 108.370248)
(xy 134.156667 108.366588)
(xy 134.236588 108.286667)
(xy 134.244731 108.269206)
(xy 134.281152 108.1911)
(xy 134.281152 108.191099)
(xy 134.284355 108.184231)
(xy 134.2905 108.137554)
(xy 134.2905 107.568322)
(xy 134.309407 107.510131)
(xy 134.319496 107.498318)
(xy 138.061174 103.75664)
(xy 139.6245 103.75664)
(xy 139.640195 103.835544)
(xy 139.699981 103.925019)
(xy 139.789456 103.984805)
(xy 139.799019 103.986707)
(xy 139.799021 103.986708)
(xy 139.831751 103.993218)
(xy 139.86836 104.0005)
(xy 141.08164 104.0005)
(xy 141.118249 103.993218)
(xy 141.150979 103.986708)
(xy 141.150981 103.986707)
(xy 141.160544 103.984805)
(xy 141.250019 103.925019)
(xy 141.309805 103.835544)
(xy 141.3255 103.75664)
(xy 141.3255 103.14336)
(xy 141.309805 103.064456)
(xy 141.250019 102.974981)
(xy 141.160544 102.915195)
(xy 141.150981 102.913293)
(xy 141.150979 102.913292)
(xy 141.11784 102.906701)
(xy 141.08164 102.8995)
(xy 139.86836 102.8995)
(xy 139.83216 102.906701)
(xy 139.799021 102.913292)
(xy 139.799019 102.913293)
(xy 139.789456 102.915195)
(xy 139.699981 102.974981)
(xy 139.640195 103.064456)
(xy 139.6245 103.14336)
(xy 139.6245 103.75664)
(xy 138.061174 103.75664)
(xy 139.704957 102.112857)
(xy 139.759474 102.08508)
(xy 139.794272 102.085763)
(xy 139.86836 102.1005)
(xy 141.08164 102.1005)
(xy 141.11784 102.093299)
(xy 141.150979 102.086708)
(xy 141.150981 102.086707)
(xy 141.160544 102.084805)
(xy 141.250019 102.025019)
(xy 141.309805 101.935544)
(xy 141.3255 101.85664)
(xy 141.3255 101.24336)
(xy 141.313623 101.183648)
(xy 141.311708 101.174021)
(xy 141.311707 101.174019)
(xy 141.309805 101.164456)
(xy 141.250019 101.074981)
(xy 141.160544 101.015195)
(xy 141.150981 101.013293)
(xy 141.150979 101.013292)
(xy 141.11784 101.006701)
(xy 141.08164 100.9995)
(xy 141.0745 100.9995)
(xy 141.073508 100.999178)
(xy 141.071938 100.999023)
(xy 141.071972 100.998679)
(xy 141.016309 100.980593)
(xy 140.980345 100.931093)
(xy 140.9755 100.9005)
(xy 140.9755 100.183218)
(xy 142.2245 100.183218)
(xy 142.225028 100.186801)
(xy 142.225028 100.186808)
(xy 142.229796 100.219195)
(xy 142.234642 100.252112)
(xy 142.238033 100.259018)
(xy 142.238033 100.259019)
(xy 142.250892 100.285209)
(xy 142.286068 100.356855)
(xy 142.36865 100.439293)
(xy 142.473482 100.490536)
(xy 142.481084 100.491645)
(xy 142.481087 100.491646)
(xy 142.538237 100.499983)
(xy 142.538239 100.499983)
(xy 142.541782 100.5005)
(xy 143.783218 100.5005)
(xy 143.786801 100.499972)
(xy 143.786808 100.499972)
(xy 143.844499 100.491479)
(xy 143.844501 100.491478)
(xy 143.852112 100.490358)
(xy 143.956855 100.438932)
(xy 144.039293 100.35635)
(xy 144.090536 100.251518)
(xy 144.091645 100.243916)
(xy 144.091646 100.243913)
(xy 144.099983 100.186763)
(xy 144.099983 100.186761)
(xy 144.1005 100.183218)
(xy 144.1005 99.816782)
(xy 144.090358 99.747888)
(xy 144.038932 99.643145)
(xy 143.95635 99.560707)
(xy 143.851518 99.509464)
(xy 143.843916 99.508355)
(xy 143.843913 99.508354)
(xy 143.786763 99.500017)
(xy 143.786761 99.500017)
(xy 143.783218 99.4995)
(xy 142.541782 99.4995)
(xy 142.538199 99.500028)
(xy 142.538192 99.500028)
(xy 142.480501 99.508521)
(xy 142.480499 99.508522)
(xy 142.472888 99.509642)
(xy 142.368145 99.561068)
(xy 142.285707 99.64365)
(xy 142.234464 99.748482)
(xy 142.233355 99.756084)
(xy 142.233354 99.756087)
(xy 142.230869 99.773122)
(xy 142.2245 99.816782)
(xy 142.2245 100.183218)
(xy 140.9755 100.183218)
(xy 140.9755 99.3295)
(xy 140.994407 99.271309)
(xy 141.043907 99.235345)
(xy 141.0745 99.2305)
(xy 143.783218 99.2305)
(xy 143.786801 99.229972)
(xy 143.786808 99.229972)
(xy 143.844499 99.221479)
(xy 143.844501 99.221478)
(xy 143.852112 99.220358)
(xy 143.873963 99.20963)
(xy 143.898274 99.197694)
(xy 143.956855 99.168932)
(xy 144.039293 99.08635)
(xy 144.090536 98.981518)
(xy 144.091645 98.973916)
(xy 144.091646 98.973913)
(xy 144.099983 98.916763)
(xy 144.099983 98.916761)
(xy 144.1005 98.913218)
(xy 144.1005 98.546782)
(xy 144.097346 98.525351)
(xy 144.091479 98.485501)
(xy 144.091478 98.485499)
(xy 144.090358 98.477888)
(xy 144.038932 98.373145)
(xy 143.95635 98.290707)
(xy 143.851518 98.239464)
(xy 143.843916 98.238355)
(xy 143.843913 98.238354)
(xy 143.786763 98.230017)
(xy 143.786761 98.230017)
(xy 143.783218 98.2295)
(xy 141.423234 98.2295)
(xy 141.365043 98.210593)
(xy 141.329079 98.161093)
(xy 141.3255 98.143981)
(xy 141.3255 98.14336)
(xy 141.309805 98.064456)
(xy 141.250019 97.974981)
(xy 141.160544 97.915195)
(xy 141.150981 97.913293)
(xy 141.150979 97.913292)