-
Notifications
You must be signed in to change notification settings - Fork 2
/
FlashROM_100_TSOP.kicad_pcb
7945 lines (7931 loc) · 301 KB
/
FlashROM_100_TSOP.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_TSOP")
(date "2023-02-23")
(rev "008")
(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 false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "GERBER_${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-Pad6)")
(net 32 "unconnected-(U1-Pad9)")
(footprint "000_LOCAL:R_0805" (layer "F.Cu")
(tedit 5F9E65BE) (tstamp 00000000-0000-0000-0000-00005e34a4c4)
(at 148.73 94.539 180)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "FlashROM_100_TSOP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e68c7f8")
(attr smd)
(fp_text reference "R2" (at -0.04 -0.02 90 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp 62a2859b-bb90-4b5b-92ca-b6f3a118656b)
)
(fp_text value "100K" (at 0 1.75) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1e213d2b-41c3-419e-8cfb-787da94f57b8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 862b8e12-8de0-4c86-9ed3-f6107217a90c)
)
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 893669b6-fe7f-4004-baee-69a28b3aba71))
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp a4f6d578-7987-4670-90a6-b53ce3f450c3))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 25a87358-4a1e-472a-bf6d-8a37bd026698))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp e256da17-39c7-4a00-9163-6c7313010f8d))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp f8c15afb-7287-4bd8-9390-6ab6fdeb1d97))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp fde57bd2-23f5-4b76-be29-f0abc2db776b))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 05d5ee6c-b0d1-4cee-a529-fcef73f1cee2))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp 98ea7baf-3303-48d1-8deb-88a68c3ff21d))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp a78eea6d-6daa-48e1-986d-dd88e7a7c531))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp f0bade88-ae13-4f8f-87cd-e1c9f773cc64))
(pad "1" smd roundrect locked (at -0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 30 "/~{CS_IC}") (pintype "passive") (tstamp 232abdd2-2713-4fe5-8de6-ace6b052a27e))
(pad "2" smd roundrect locked (at 0.95 0 180) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 26 "VCC") (pintype "passive") (tstamp 1029e84c-d187-43c9-b0d8-08cbf2ebff96))
(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:TSOP32-dual" (layer "F.Cu")
(tedit 5F970953) (tstamp 00000000-0000-0000-0000-00006049da79)
(at 150 100)
(descr "Module CMS TSOP 32 pins")
(tags "CMS TSOP")
(property "Sheetfile" "FlashROM_100_TSOP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e5b130a")
(attr smd)
(fp_text reference "U1" (at -3.175 -1.905 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp a2958472-0b99-4952-a664-74c48a01482b)
)
(fp_text value "29F010" (at -3 1.27 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 20dea31d-5aa3-421a-8bc2-433da3eb74fa)
)
(fp_line (start 9.175 4) (end 9.175 -4) (layer "F.SilkS") (width 0.12) (tstamp 0e7a4368-80c8-4519-88cc-d751069f3847))
(fp_line (start 9.175 -4) (end 5 -4) (layer "F.SilkS") (width 0.12) (tstamp 26208ddf-c554-4bea-accd-a895b0fb6759))
(fp_line (start -10.25 -4.15) (end -9.175 -4.15) (layer "F.SilkS") (width 0.12) (tstamp 35b29abb-80e2-4ee6-8bc8-92825683fb3d))
(fp_line (start -9.175 -4.15) (end -9.175 4) (layer "F.SilkS") (width 0.12) (tstamp 4b90b7b3-3b49-43c9-b6b2-999ae99a80a9))
(fp_line (start 3.175 -4) (end -9.175 -4) (layer "F.SilkS") (width 0.12) (tstamp 5d6018ee-f22d-405c-adea-b7d96c1dce32))
(fp_line (start 9.175 4) (end 5 4) (layer "F.SilkS") (width 0.12) (tstamp aca89b13-b6ed-4bc1-8ff5-bc9ea41a2436))
(fp_line (start 3.175 4) (end -9.175 4) (layer "F.SilkS") (width 0.12) (tstamp e1cdbab5-91e1-410a-aca4-94fca01fffc9))
(fp_line (start 3.175 4) (end 3.175 -4) (layer "F.SilkS") (width 0.12) (tstamp f4512bff-c4fb-4294-8ba2-aea02038509e))
(fp_circle (center -8.05 -3) (end -8.05 -2.75) (layer "F.SilkS") (width 0.5) (fill none) (tstamp dca92976-e416-4708-90aa-7e75ac552f46))
(fp_line (start -10.55 -4.25) (end -10.55 4.25) (layer "F.CrtYd") (width 0.05) (tstamp 308243d4-1222-4015-9d5d-e01d1788b83d))
(fp_line (start 10.55 -4.25) (end -10.55 -4.25) (layer "F.CrtYd") (width 0.05) (tstamp 6c6c80f6-8fee-445c-b19c-c99e4e6976a3))
(fp_line (start -10.55 4.25) (end 10.55 4.25) (layer "F.CrtYd") (width 0.05) (tstamp cef9e9e6-42d1-4e59-ab37-d6f0edfde80d))
(fp_line (start 10.55 4.25) (end 10.55 -4.25) (layer "F.CrtYd") (width 0.05) (tstamp e6df8447-26b5-4ed1-88f7-8bab3d96a8ab))
(pad "1" smd roundrect (at -9.85 -3.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 11 "/A11") (pinfunction "A11") (pintype "input") (tstamp 7dd1974a-2f8f-499a-b8bb-6edd1b92803c))
(pad "2" smd roundrect (at -9.85 -3.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "/A9") (pinfunction "A9") (pintype "input") (tstamp 8b07e3c3-d463-42dc-b074-28fb96e4edf7))
(pad "3" smd roundrect (at -9.85 -2.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 22 "/A8") (pinfunction "A8") (pintype "input") (tstamp 0a06d91d-9e3c-4fd4-b6f7-46cd5280f647))
(pad "4" smd roundrect (at -9.85 -2.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 15 "/A13") (pinfunction "A13") (pintype "input") (tstamp 68ae3009-0517-427e-be30-9dbe42bbfb53))
(pad "5" smd roundrect (at -9.85 -1.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 24 "/A14") (pinfunction "A14") (pintype "input") (tstamp 81609e26-8b07-4560-b543-90e8505c6c46))
(pad "6" smd roundrect (at -9.85 -1.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 31 "unconnected-(U1-Pad6)") (pinfunction "NC") (pintype "passive+no_connect") (tstamp 839cdfbb-d65d-4bfd-b1b4-0348efeb0451))
(pad "7" smd roundrect (at -9.85 -0.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 25 "/~{WE}") (pinfunction "~{WE}") (pintype "input") (tstamp 03a1c6ab-0861-4940-8228-5ea736f080e5))
(pad "8" smd roundrect (at -9.85 -0.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 26 "VCC") (pinfunction "VDD") (pintype "power_in") (tstamp c425c149-a448-40bf-b9c7-bd3a06ecb668))
(pad "9" smd roundrect (at -9.85 0.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 32 "unconnected-(U1-Pad9)") (pinfunction "NC") (pintype "passive+no_connect") (tstamp 640e5c01-6a32-478a-abfe-cec4de667631))
(pad "10" smd roundrect (at -9.85 0.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "GND") (pinfunction "A16") (pintype "input") (tstamp f88a4b22-5461-491f-952f-fc5a4bfaa87e))
(pad "11" smd roundrect (at -9.85 1.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "GND") (pinfunction "A15") (pintype "input") (tstamp 1f182ff5-4b5c-4aca-aef7-0a378e352e17))
(pad "12" smd roundrect (at -9.85 1.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 18 "/A12") (pinfunction "A12") (pintype "input") (tstamp 21d37f65-fc5d-4ae4-b8a2-fb4f1bd0274f))
(pad "13" smd roundrect (at -9.85 2.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/A7") (pinfunction "A7") (pintype "input") (tstamp fe172cae-8061-4b83-8421-3c0b279120ee))
(pad "14" smd roundrect (at -9.85 2.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "/A6") (pinfunction "A6") (pintype "input") (tstamp 882fe13c-ce58-4e0a-b6ee-19170b20e556))
(pad "15" smd roundrect (at -9.85 3.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 8 "/A5") (pinfunction "A5") (pintype "input") (tstamp 4cbe95dd-5695-454b-9304-83f7338a3ce3))
(pad "16" smd roundrect (at -9.85 3.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 10 "/A4") (pinfunction "A4") (pintype "input") (tstamp 19b1fd85-5d45-4639-a581-bbdee046d9ba))
(pad "17" smd roundrect (at 9.85 3.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/A3") (pinfunction "A3") (pintype "input") (tstamp 0da35c7b-a94f-45c4-97ef-4231536832a0))
(pad "17" smd roundrect (at 3.85 3.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 12 "/A3") (pinfunction "A3") (pintype "input") (tstamp 82a4410a-529d-48a9-8b11-9eb51d7bad58))
(pad "18" smd roundrect (at 9.85 3.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/A2") (pinfunction "A2") (pintype "input") (tstamp 15af9729-2b69-4004-9045-5de70d78bae7))
(pad "18" smd roundrect (at 3.85 3.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 14 "/A2") (pinfunction "A2") (pintype "input") (tstamp ba23a99d-57fe-4097-a095-086fc930d135))
(pad "19" smd roundrect (at 3.85 2.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/A1") (pinfunction "A1") (pintype "input") (tstamp 13bbc226-6e05-4b72-a54d-484cb986132b))
(pad "19" smd roundrect (at 9.85 2.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 16 "/A1") (pinfunction "A1") (pintype "input") (tstamp 3792fae7-60f9-402b-9564-f0580ffa7edb))
(pad "20" smd roundrect (at 3.85 2.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/A0") (pinfunction "A0") (pintype "input") (tstamp 3d405c9e-4975-49ad-bc79-5a8b66127351))
(pad "20" smd roundrect (at 9.85 2.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 17 "/A0") (pinfunction "A0") (pintype "input") (tstamp 9e31d4e4-b549-41e1-9fe2-16fd922b8366))
(pad "21" smd roundrect (at 9.85 1.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/D0") (pinfunction "DQ0") (pintype "tri_state") (tstamp 19b9a1f3-c203-46fa-a348-831213f5638d))
(pad "21" smd roundrect (at 3.85 1.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 19 "/D0") (pinfunction "DQ0") (pintype "tri_state") (tstamp 9d2640f1-52cd-41fb-8bf3-cc9d36da303a))
(pad "22" smd roundrect (at 9.85 1.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/D1") (pinfunction "DQ1") (pintype "tri_state") (tstamp 971970cd-79cd-4b9f-85ee-b937c043e7d4))
(pad "22" smd roundrect (at 3.85 1.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 21 "/D1") (pinfunction "DQ1") (pintype "tri_state") (tstamp b1ab815a-e170-48ae-aa40-3560c2ca2a79))
(pad "23" smd roundrect (at 3.85 0.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/D2") (pinfunction "DQ2") (pintype "tri_state") (tstamp 724d819e-bb4e-4a7e-bcb3-5a9913a6cb23))
(pad "23" smd roundrect (at 9.85 0.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 23 "/D2") (pinfunction "DQ2") (pintype "tri_state") (tstamp 9a17edbd-3ed1-458b-a1b2-d801102a5c12))
(pad "24" smd roundrect (at 3.85 0.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 29d2e49e-28f1-45bd-a0b4-b6fb795f473d))
(pad "24" smd roundrect (at 9.85 0.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 27 "GND") (pinfunction "VSS") (pintype "power_in") (tstamp 8e0d91e8-f2de-43a4-b846-06ee0e0c2758))
(pad "25" smd roundrect (at 9.85 -0.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "/D3") (pinfunction "DQ3") (pintype "tri_state") (tstamp 7fddbbfa-669f-4d46-b2df-5eb6e1f29371))
(pad "25" smd roundrect (at 3.85 -0.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "/D3") (pinfunction "DQ3") (pintype "tri_state") (tstamp c574f179-b0c6-42d2-b8bc-0b7a126f8718))
(pad "26" smd roundrect (at 3.85 -0.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/D4") (pinfunction "DQ4") (pintype "tri_state") (tstamp 3971a399-191e-478a-8d84-723ab96c292f))
(pad "26" smd roundrect (at 9.85 -0.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "/D4") (pinfunction "DQ4") (pintype "tri_state") (tstamp f9e1d21d-e9aa-49da-856b-65094a68c75a))
(pad "27" smd roundrect (at 3.85 -1.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/D5") (pinfunction "DQ5") (pintype "tri_state") (tstamp 6609a710-67d4-4da0-a55f-da4767c08fc0))
(pad "27" smd roundrect (at 9.85 -1.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "/D5") (pinfunction "DQ5") (pintype "tri_state") (tstamp c675f8e8-ce43-4f4c-96ba-0454c58585c3))
(pad "28" smd roundrect (at 3.85 -1.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/D6") (pinfunction "DQ6") (pintype "tri_state") (tstamp 14376841-dfb3-4d2a-ba3f-c49b542379dc))
(pad "28" smd roundrect (at 9.85 -1.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 7 "/D6") (pinfunction "DQ6") (pintype "tri_state") (tstamp b84c9f5f-95e5-4f1a-a820-c0874bdc5ae8))
(pad "29" smd roundrect (at 9.85 -2.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/D7") (pinfunction "DQ7") (pintype "tri_state") (tstamp dd874ec2-aed2-4af1-98e7-4b3ed54053b6))
(pad "29" smd roundrect (at 3.85 -2.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 9 "/D7") (pinfunction "DQ7") (pintype "tri_state") (tstamp ec8e53a9-cf29-4ce4-a973-fbb2f10ca958))
(pad "30" smd roundrect (at 9.85 -2.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "/~{CS_IC}") (pinfunction "~{CE}") (pintype "input") (tstamp 1ab9bd1a-cad5-4967-a897-038fcc6221dc))
(pad "30" smd roundrect (at 3.85 -2.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 30 "/~{CS_IC}") (pinfunction "~{CE}") (pintype "input") (tstamp 96397217-fe66-43c3-8700-5cbebe6d5f1c))
(pad "31" smd roundrect (at 3.85 -3.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/A10") (pinfunction "A10") (pintype "input") (tstamp 21493b64-daf3-4a48-b832-4c1524c1a231))
(pad "31" smd roundrect (at 9.85 -3.25 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/A10") (pinfunction "A10") (pintype "input") (tstamp f8ddde5b-afe5-44a3-a15f-485b3801a352))
(pad "32" smd roundrect (at 9.85 -3.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "/~{OE}") (pinfunction "~{OE}") (pintype "input") (tstamp 0c438414-7ff8-4538-ae19-b205d139d5fb))
(pad "32" smd roundrect (at 3.85 -3.75 270) (size 0.3 0.9) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 13 "/~{OE}") (pinfunction "~{OE}") (pintype "input") (tstamp 9e748f4b-3b3a-4c5a-95ef-aec5009e413b))
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/TSOP32_8x14.step"
(offset (xyz -3 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "${KIPRJMOD}/000_LOCAL.pretty/packages3d/TSOP32_8X20.step" hide
(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-00006049de0f)
(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_TSOP.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 932673cd-5108-4a4e-bea6-441c86e2da50)
)
(fp_text value "LH535618 DIP LEGS" (at -1.5 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0cf51036-c2cc-4f18-a2b0-e98bc62e03fe)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d5013d9-4af0-4704-be17-6a8f0bb1d892)
)
(fp_line (start 8.89 17.145) (end 8.89 -17.145) (layer "Edge.Cuts") (width 0.0254) (tstamp 2bbebf05-ad3b-4c9f-b97a-b670b66d0f1b))
(fp_line (start -8.89 -17.145) (end -8.89 17.145) (layer "Edge.Cuts") (width 0.0254) (tstamp 6765ad01-90fc-44f5-81a2-7a16f379aa36))
(fp_line (start -8.255 17.78) (end 8.255 17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp 81e4059f-d726-4068-80ce-6547d6c2db1f))
(fp_line (start 1.524 -17.78) (end 8.255 -17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp a6e92f4b-830d-446f-85dc-8cc51e46f669))
(fp_line (start -8.255 -17.78) (end -1.524 -17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp b4649cbe-a9dc-44e9-b501-aaaaacbc674b))
(fp_arc (start 8.89 17.145) (mid 8.704013 17.594013) (end 8.255 17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp 02342cb2-6ee6-48cf-b2a1-cfd2ebdf995c))
(fp_arc (start 1.27 -17.526) (mid 1.344395 -17.705605) (end 1.524 -17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp 05f79a62-eeaa-424e-960c-bb0dce169087))
(fp_arc (start 8.255 -17.78) (mid 8.704013 -17.594013) (end 8.89 -17.145) (layer "Edge.Cuts") (width 0.0254) (tstamp 0a4efddb-c1e3-4f0b-a7e2-6817901373b7))
(fp_arc (start 1.27 -17.526) (mid 0 -16.256) (end -1.27 -17.526) (layer "Edge.Cuts") (width 0.0254) (tstamp 68c325fc-cb45-4264-98b8-4a5069440d37))
(fp_arc (start -8.255 17.78) (mid -8.704013 17.594013) (end -8.89 17.145) (layer "Edge.Cuts") (width 0.0254) (tstamp 754c228a-44ba-46ae-945c-33327472d3a7))
(fp_arc (start -8.89 -17.145) (mid -8.704013 -17.594013) (end -8.255 -17.78) (layer "Edge.Cuts") (width 0.0254) (tstamp afc505fb-f26c-4d23-b1ef-92bb731b1331))
(fp_arc (start -1.524 -17.78) (mid -1.344395 -17.705605) (end -1.27 -17.526) (layer "Edge.Cuts") (width 0.0254) (tstamp c7254608-714e-477a-a57c-04b480b6146c))
(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 d394c1aa-e05b-40b4-bc71-81fb2bcae475))
(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 91d55959-78dd-4a90-9ce7-e5bc531a2354))
(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 ca8119bb-c120-4f19-b2eb-b35d0a1e6b2a))
(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 eab0ff97-ee31-4f07-b8bf-0975b9986b0c))
(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 554fcca3-52f8-4c81-accc-7f72c8be1ded))
(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 7322d5a3-d3b7-4350-9be0-e7e2ea2b58ef))
(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 0eb5e9fb-6633-4fac-bd73-7a43a3d6502d))
(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 4353a50a-9c02-46e7-8345-469326faf698))
(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 3317c5b5-f5c1-420f-aa5d-27e8ecc20316))
(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 081cd9aa-1120-4a5e-b8ab-3faa527fb633))
(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 e1170a59-b423-4a19-ac3f-d44cc2704058))
(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 86eda736-63b0-4482-bb5a-b4022927b033))
(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 fc1da687-6e73-4945-8b4d-ef1ec3731320))
(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 607a8647-a016-40bb-b4af-d0eddff704ce))
(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 f98cb4fd-3cf3-4f9b-8eeb-f2c45dbf7320))
(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 4c0aefb4-cc75-4387-8a04-2f6ea34aaaf0))
(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 d75bdd88-acf1-43c9-bba6-13aab5cd36cb))
(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 fc343ba2-3770-484e-a8b3-bb55bf4b85df))
(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 a567b35a-3ac6-44d1-afab-43dd50396b19))
(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 fbda20db-9d63-4e5c-8298-7ccced50a96c))
(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 ae9a60bd-ea12-412f-96f2-72b64e6df52a))
(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 6d4ac50a-9f1e-4497-b00d-5a5c138c60a6))
(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 30108efd-5f30-4d48-81a1-1d1e4fa376f3))
(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 ba4db501-a07f-462b-ad02-d056a84ccc4a))
(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 e0f7febf-0990-4e27-944f-fcc0b9ba9c1d))
(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 3cd1866e-b7ef-459e-a7d1-e4a95d1a1a56))
(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 fbc8440d-bb45-460a-8963-8519af7f22d3))
(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 a9bd9194-2f67-4c21-9db3-8908ced78e19))
(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))
)
)
(footprint "000_LOCAL:Pin_Header_Angled_1x02_Pitch2.54mm" (layer "F.Cu")
(tedit 5F9E6982) (tstamp 00000000-0000-0000-0000-00006049e59c)
(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_TSOP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e68b8a2")
(attr through_hole)
(fp_text reference "JP1" (at 4.385 -2.27 -270) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b68a43ee-6b23-40fd-8537-365240a51282)
)
(fp_text value "~{CS} breakout" (at 4.385 4.81 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e4c3cba-395d-487f-ab5d-6688c3b36ac7)
)
(fp_text user "${REFERENCE}" (at 2.77 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 79c6c44c-912b-4ef2-9db5-7ef025313dda)
)
(fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 21e5a16d-1ba2-46a7-a200-b6e0f50b066e))
(fp_line (start 4.1 2.16) (end 10.1 2.16) (layer "F.SilkS") (width 0.12) (tstamp 2881728f-dfae-4f9f-83c5-93331064196a))
(fp_line (start 10.1 0.38) (end 4.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp 59b8b088-8e1a-4c34-82da-b042e742ecb1))
(fp_line (start 10.1 2.92) (end 4.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp 5d37a87a-e18c-4301-9bbc-0d5892fb3445))
(fp_line (start 10.1 2.16) (end 10.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp 6051db80-a23b-40b9-a0e7-7cce732f40bd))
(fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer "F.SilkS") (width 0.12) (tstamp 755cd29a-f86e-4c45-a075-486f065ffe6b))
(fp_line (start 1.44 -1.33) (end 1.44 3.87) (layer "F.SilkS") (width 0.12) (tstamp 7ef526c6-5473-4859-b98b-54ebbf7657bc))
(fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer "F.SilkS") (width 0.12) (tstamp b70891da-ccf5-4775-8967-0f18adeaff98))
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer "F.SilkS") (width 0.12) (tstamp c3d4860d-035a-4f64-9140-0dca094c856c))
(fp_line (start 1.44 3.87) (end 4.1 3.87) (layer "F.SilkS") (width 0.12) (tstamp c9ab99a4-9fb3-419f-9eb0-9e8840f1498c))
(fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp db8c8036-d127-4ef7-8f6f-9181b525478a))
(fp_line (start 1.44 1.27) (end 4.1 1.27) (layer "F.SilkS") (width 0.12) (tstamp e1448f04-b578-4246-ae09-ab51c223f404))
(fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e1c7cfee-46a4-4ff9-8d4b-8b55b9d92014))
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer "F.SilkS") (width 0.12) (tstamp f1b7b397-3393-4b7d-9c7b-461967ef3349))
(fp_line (start 4.1 3.87) (end 4.1 -1.33) (layer "F.SilkS") (width 0.12) (tstamp f7361cc7-0652-4297-bbfc-e513a692104f))
(fp_line (start -1.8 4.35) (end 10.55 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 063e7e36-0b7d-4578-aff3-da5d6c0e0f8d))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 37125432-87bd-48e4-933b-0afdc882b621))
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 542b823f-d2aa-4696-920d-7ef4575f6d0c))
(fp_line (start 10.55 4.35) (end 10.55 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 881e0d4e-5c93-436c-9f41-312bca92c298))
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer "F.Fab") (width 0.1) (tstamp 206b28da-cbed-42bb-b4b4-fcbf574c7fc2))
(fp_line (start 4.04 -1.27) (end 4.04 3.81) (layer "F.Fab") (width 0.1) (tstamp 2d5862f3-ee0b-4354-bb74-7df8ef64648d))
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer "F.Fab") (width 0.1) (tstamp 462ec93b-2a80-4d5b-acfb-92c813a3c930))
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer "F.Fab") (width 0.1) (tstamp 58ffbeb6-ffd6-409c-8bb0-91d10ab820da))
(fp_line (start -0.32 2.86) (end 1.5 2.86) (layer "F.Fab") (width 0.1) (tstamp 6974e535-8a04-4a25-bd24-a023fcd42468))
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 7a9d282d-da12-4e87-84fe-30bfa0d0bc90))
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer "F.Fab") (width 0.1) (tstamp 7f445c7a-62b4-4f04-a15d-e53a6273154a))
(fp_line (start 10.04 2.22) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 8e6f12f9-7bc6-447f-b42f-50ec205dab2c))
(fp_line (start 1.5 3.81) (end 1.5 -0.635) (layer "F.Fab") (width 0.1) (tstamp 8f2343f2-8a4c-442c-ab70-399196777e5d))
(fp_line (start 4.04 3.81) (end 1.5 3.81) (layer "F.Fab") (width 0.1) (tstamp 8f329f63-d418-4e27-841b-9393d4c7b431))
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer "F.Fab") (width 0.1) (tstamp 91a86b91-b2c6-429a-818e-b790d889511b))
(fp_line (start 4.04 2.22) (end 10.04 2.22) (layer "F.Fab") (width 0.1) (tstamp c29be7ae-9a39-45bc-858f-e9f2341822ce))
(fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp ca2504d5-c47c-4f43-9c93-0a385979ac8f))
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer "F.Fab") (width 0.1) (tstamp d0d3c7c7-5dbd-4ceb-9ac1-d83e6bf9d8d9))
(fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer "F.Fab") (width 0.1) (tstamp d707a668-befb-42c5-8161-1e84efad18a6))
(fp_line (start -0.32 2.22) (end 1.5 2.22) (layer "F.Fab") (width 0.1) (tstamp f02875db-d156-494f-9a3b-cfe269f08361))
(fp_line (start 4.04 2.86) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp f2594137-80f5-4470-95ba-bd35e1761491))
(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 00b79f7c-857f-41ca-a7a0-cb76fa609486))
(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 76f5c09d-d8e0-452c-a511-8d4d52cbd4e7))
(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:Pin_Header_Angled_1x02_Pitch2.54mm" (layer "F.Cu")
(tedit 5F9E6982) (tstamp 00000000-0000-0000-0000-00006049e5c7)
(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_TSOP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005fbc3795")
(attr through_hole)
(fp_text reference "JP2" (at 4.385 -2.27 -270) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f0fb0bc3-9cac-4c0c-bd68-57317719d2f0)
)
(fp_text value "Write-Enable" (at 4.385 4.81 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b47f478-ad05-416e-8d23-4dcda14060c3)
)
(fp_text user "${REFERENCE}" (at 2.77 1.27) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6fb36b55-20d3-49db-82a8-4864f3f43516)
)
(fp_line (start 1.11 0.38) (end 1.44 0.38) (layer "F.SilkS") (width 0.12) (tstamp 3e1cff4a-76df-49ba-b8ce-e83f0b7b153d))
(fp_line (start 1.11 -0.38) (end 1.44 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 42f4d270-9d90-454d-9671-9b895e036b73))
(fp_line (start 4.1 -0.38) (end 10.1 -0.38) (layer "F.SilkS") (width 0.12) (tstamp 4d6e4cf9-47e2-4e45-ab80-39860c849a57))
(fp_line (start 10.1 0.38) (end 4.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp 5f4ff667-06ec-4883-9f24-045f30da2d97))
(fp_line (start 1.042929 2.16) (end 1.44 2.16) (layer "F.SilkS") (width 0.12) (tstamp 6fb24bf8-0ec9-4641-9317-c974de1a3338))
(fp_line (start 10.1 2.92) (end 4.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp 7af93c93-437e-48e1-a4e7-d2e44bf1ff57))
(fp_line (start 4.1 3.87) (end 4.1 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 99106158-d785-481f-bac7-3ad168a86ec2))
(fp_line (start 1.44 1.27) (end 4.1 1.27) (layer "F.SilkS") (width 0.12) (tstamp 9d8ba308-1e62-4cd9-ada6-173a8ab95039))
(fp_line (start 1.042929 2.92) (end 1.44 2.92) (layer "F.SilkS") (width 0.12) (tstamp b4a81ceb-a24a-4881-a567-5eade3105f0b))
(fp_line (start 1.44 3.87) (end 4.1 3.87) (layer "F.SilkS") (width 0.12) (tstamp d20ce83b-e255-4eeb-930f-44fd361edf17))
(fp_line (start 4.1 -1.33) (end 1.44 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d9edad21-0be6-44ab-85f8-a6c6b5a7f563))
(fp_line (start 1.44 -1.33) (end 1.44 3.87) (layer "F.SilkS") (width 0.12) (tstamp de7dd6f0-6457-40c6-981b-5d8efbf104e4))
(fp_line (start 10.1 -0.38) (end 10.1 0.38) (layer "F.SilkS") (width 0.12) (tstamp e4e49b6a-a9cc-41b9-8236-e5872f242e5a))
(fp_line (start 10.1 2.16) (end 10.1 2.92) (layer "F.SilkS") (width 0.12) (tstamp ebbe65fc-b1c0-47b7-bcb8-9674f902541a))
(fp_line (start 4.1 2.16) (end 10.1 2.16) (layer "F.SilkS") (width 0.12) (tstamp f4b9efa8-45fe-4324-8632-9272780ffbcd))
(fp_line (start 10.55 4.35) (end 10.55 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 45f2b5f4-c144-40aa-9612-93a7b43ed6e9))
(fp_line (start -1.8 4.35) (end 10.55 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 62c7d649-3f1b-4593-ab99-a97aa2cac59b))
(fp_line (start 10.55 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp c67c7e35-307b-4175-8b72-cfd2ca9ff3da))
(fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp d55351b3-3c16-443a-aca8-182849260375))
(fp_line (start 4.04 0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 175fe04e-c973-41e1-bc1f-c5af847ff63e))
(fp_line (start 4.04 2.22) (end 10.04 2.22) (layer "F.Fab") (width 0.1) (tstamp 17f6617b-3443-4fa5-81b1-dbffaf3838f8))
(fp_line (start 4.04 -0.32) (end 10.04 -0.32) (layer "F.Fab") (width 0.1) (tstamp 230a1ad4-6685-4b43-90e0-d1e5f205fec0))
(fp_line (start 4.04 3.81) (end 1.5 3.81) (layer "F.Fab") (width 0.1) (tstamp 28b172e0-27b0-4a5d-8a8a-b69a7c49da37))
(fp_line (start -0.32 2.22) (end 1.5 2.22) (layer "F.Fab") (width 0.1) (tstamp 2968f0b4-afc7-44f1-8938-3a0916c82b15))
(fp_line (start 2.135 -1.27) (end 4.04 -1.27) (layer "F.Fab") (width 0.1) (tstamp 31604941-fa73-4522-8ad1-ccd07455bcb4))
(fp_line (start -0.32 0.32) (end 1.5 0.32) (layer "F.Fab") (width 0.1) (tstamp 39296a7e-7dcd-4e0a-9483-178dc5e3a1bb))
(fp_line (start -0.32 2.86) (end 1.5 2.86) (layer "F.Fab") (width 0.1) (tstamp 40598e42-27a7-49f2-9ba6-de84459015fa))
(fp_line (start 1.5 -0.635) (end 2.135 -1.27) (layer "F.Fab") (width 0.1) (tstamp 4a701026-4944-497c-a418-76c49f39ab4b))
(fp_line (start -0.32 -0.32) (end 1.5 -0.32) (layer "F.Fab") (width 0.1) (tstamp 4c2a702a-c77a-4a5e-bd1c-d25547aa02ad))
(fp_line (start 10.04 -0.32) (end 10.04 0.32) (layer "F.Fab") (width 0.1) (tstamp 5f892084-498d-4119-a7cb-c1c3db2d37be))
(fp_line (start 4.04 2.86) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp 93a1861c-b361-470d-8c52-63424e08ec99))
(fp_line (start -0.32 2.22) (end -0.32 2.86) (layer "F.Fab") (width 0.1) (tstamp 94992e46-f8ac-4764-a5a5-c452622e0772))
(fp_line (start -0.32 -0.32) (end -0.32 0.32) (layer "F.Fab") (width 0.1) (tstamp 98b7d426-8880-483e-8a72-94c1e9fd823f))
(fp_line (start 1.5 3.81) (end 1.5 -0.635) (layer "F.Fab") (width 0.1) (tstamp a20dcb74-9cc4-4dde-a090-3e157504cde4))
(fp_line (start 10.04 2.22) (end 10.04 2.86) (layer "F.Fab") (width 0.1) (tstamp a89d3ebb-8267-4e81-b891-3862f417fc7b))
(fp_line (start 4.04 -1.27) (end 4.04 3.81) (layer "F.Fab") (width 0.1) (tstamp efedfea4-fd64-442c-8550-1d8a71303889))
(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 025c3b76-7330-41cc-b132-affdfd8e15e2))
(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 cb3b355e-4b89-45bc-a83f-238fac10b0d7))
(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 143.65 94.539)
(descr "Resistor SMD 0805, reflow soldering, Vishay (see dcrcw.pdf)")
(tags "resistor 0805")
(property "Sheetfile" "FlashROM_100_TSOP.kicad_sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-00005e6b3af8")
(attr smd)
(fp_text reference "R1" (at 0 -0.01 90 unlocked) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.1)))
(tstamp e1ee3a8b-9748-473b-8730-4b7cab264f51)
)
(fp_text value "100K" (at 0 1.75) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5eac0e1d-38d3-47c2-9562-8d1143584dd2)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab") hide
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp f9bf6737-e5cc-4294-8cae-54df2d70bc54)
)
(fp_line (start 0.6 0.88) (end -0.6 0.88) (layer "F.SilkS") (width 0.12) (tstamp 6b55c098-4532-4981-9cfe-3a79c1b63212))
(fp_line (start -0.6 -0.88) (end 0.6 -0.88) (layer "F.SilkS") (width 0.12) (tstamp f958fab5-ae41-42df-aad7-2aa84dbe438a))
(fp_line (start 1.55 0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp 0291337d-7c2b-4d0f-bee7-979d574a88c8))
(fp_line (start 1.55 0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp 0c85c57d-8690-46db-9d02-4b479a24cc42))
(fp_line (start -1.55 -0.9) (end -1.55 0.9) (layer "F.CrtYd") (width 0.05) (tstamp c73e634a-f88b-4bd0-be4b-429965ba5d49))
(fp_line (start -1.55 -0.9) (end 1.55 -0.9) (layer "F.CrtYd") (width 0.05) (tstamp dff7a9c8-3fc1-4f1d-ba93-14f32ba2c7ae))
(fp_line (start 1 0.62) (end -1 0.62) (layer "F.Fab") (width 0.1) (tstamp 66cb5b5a-8423-46ec-8e5e-025d7121d275))
(fp_line (start -1 0.62) (end -1 -0.62) (layer "F.Fab") (width 0.1) (tstamp 6ef3c1ae-b426-4d11-bd6c-0a1752f0c3cd))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer "F.Fab") (width 0.1) (tstamp a29f067d-49bd-4b99-9a6f-467733174e2a))
(fp_line (start 1 -0.62) (end 1 0.62) (layer "F.Fab") (width 0.1) (tstamp b9b571ff-cb8b-47cf-8ebf-b3751de26593))
(pad "1" smd roundrect locked (at -0.95 0) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 25 "/~{WE}") (pintype "passive") (tstamp 6de939fa-ae4b-4367-93d7-6467d09a0647))
(pad "2" smd roundrect locked (at 0.95 0) (size 0.7 1.3) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1)
(net 26 "VCC") (pintype "passive") (tstamp 123365cf-2caa-4940-8dd3-1aa183677d7e))
(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))
)
)
(gr_circle (center 133.49 106) (end 134.09 106) (layer "F.SilkS") (width 0.01) (fill solid) (tstamp 0a2554be-e133-4b30-9034-97229265a894))
(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 "REX_Classic main ROM support:\n~{CS_BUS} to REX TP1 to boot REX main rom\n~{CS_BUS} to ~{CS_IC} to boot internal main rom\n" (at 165.875 100) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00005e351697)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify left mirror))
)
(gr_text "tandy.wiki/FlexROM_100" (at 150 95.047) (layer "B.SilkS") (tstamp 00000000-0000-0000-0000-00005e438e65)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "${TITLE} ${REVISION}\n${COMMENT2}" (at 142.38 104.445) (layer "B.SilkS") (tstamp feb2db93-c272-4ed5-a7b3-26950ec7d23d)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify mirror))
)
(gr_text "IC" (at 137.3 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.157 103.683 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00005e34c224)
(effects (font (size 0.8 0.8) (thickness 0.12)))
)
(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\nSystem ROM" (at 150 105.588) (layer "F.SilkS") (tstamp f893366f-63ec-4a27-8301-d662c262305f)
(effects (font (size 0.8 1) (thickness 0.15)))
)
(segment (start 161.925 99.75) (end 166.51 95.165) (width 0.2) (layer "F.Cu") (net 1) (tstamp 1f31c0ab-b543-4e04-9bac-8dd349edf5f1))
(segment (start 153.85 99.75) (end 161.925 99.75) (width 0.2) (layer "F.Cu") (net 1) (tstamp aa5b0a0c-c046-4876-b905-40549ce252ac))
(segment (start 166.51 95.165) (end 166.51 92.38) (width 0.2) (layer "F.Cu") (net 1) (tstamp c6253ce9-4f08-4c26-9c1c-d1e16dd44436))
(segment (start 152.45 96.75) (end 159.85 96.75) (width 0.2) (layer "F.Cu") (net 2) (tstamp 1834348b-a9fe-48bf-909b-6ddbaac8b0d3))
(segment (start 136.03 100) (end 136.03 107.62) (width 0.2) (layer "F.Cu") (net 2) (tstamp 78917abe-fb99-4ae4-8449-686987ae6a5b))
(segment (start 152.4 96.7) (end 152.45 96.75) (width 0.2) (layer "F.Cu") (net 2) (tstamp 99b8b1da-ebf0-44bd-acbf-5a611f16c9e9))
(via (at 152.4 96.7) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp ae12ae4f-5123-4155-9c56-9165ccc457a6))
(via (at 136.03 100) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 2) (tstamp f696a668-3fac-4f61-ab66-0075d2d90a60))
(segment (start 139.28 96.75) (end 136.03 100) (width 0.2) (layer "B.Cu") (net 2) (tstamp 91b8ef08-cfa4-4c2c-8474-1807fa078f60))
(segment (start 152.35 96.75) (end 139.28 96.75) (width 0.2) (layer "B.Cu") (net 2) (tstamp e70cc873-3996-4883-bd2c-fb20874387c5))
(segment (start 152.4 96.7) (end 152.35 96.75) (width 0.2) (layer "B.Cu") (net 2) (tstamp eed6ca4c-ec58-47f2-9fbb-6965dfadfe0f))
(segment (start 161.05 99.25) (end 153.85 99.25) (width 0.2) (layer "F.Cu") (net 3) (tstamp 3ce2a8a6-f21d-4b8f-8665-4659a68b5262))
(segment (start 163.97 92.38) (end 163.97 96.33) (width 0.2) (layer "F.Cu") (net 3) (tstamp 878a4017-f0ab-494c-b87a-ba45d94832f4))
(segment (start 163.97 96.33) (end 161.05 99.25) (width 0.2) (layer "F.Cu") (net 3) (tstamp 8a7eb21f-7087-4abe-a068-9a57c6d0d691))
(segment (start 137.85 103.425) (end 139.025 102.25) (width 0.2) (layer "F.Cu") (net 4) (tstamp 04146996-a9b9-4061-bad7-eb734b73f3f2))
(segment (start 139.025 102.25) (end 140.15 102.25) (width 0.2) (layer "F.Cu") (net 4) (tstamp 43ce0ae7-7c0f-40dc-8a22-2a414d93ad87))
(segment (start 137.85 106.9) (end 137.85 103.425) (width 0.2) (layer "F.Cu") (net 4) (tstamp 5b4c5aab-f0b1-444f-b4f8-fa291db9180f))
(segment (start 138.57 107.62) (end 137.85 106.9) (width 0.2) (layer "F.Cu") (net 4) (tstamp 7c9ba0fd-d554-4213-bb87-c50463cd4e94))
(segment (start 160.825 98.75) (end 161.43 98.145) (width 0.2) (layer "F.Cu") (net 5) (tstamp 1c8a5e4d-4316-487c-a38c-50c0f67efab7))
(segment (start 161.43 98.145) (end 161.43 92.38) (width 0.2) (layer "F.Cu") (net 5) (tstamp c256f0dd-0921-4de1-8294-64483c633209))
(segment (start 153.85 98.75) (end 160.825 98.75) (width 0.2) (layer "F.Cu") (net 5) (tstamp c8fde942-b1b6-409d-adf4-ec1cd0c8ca72))
(segment (start 139.3 102.75) (end 138.55 103.5) (width 0.2) (layer "F.Cu") (net 6) (tstamp 2ef1eabc-4008-455b-b56d-33792d23c695))
(segment (start 138.55 105.06) (end 141.11 107.62) (width 0.2) (layer "F.Cu") (net 6) (tstamp 4316a55b-3904-4852-89df-b412d47d9d18))
(segment (start 140.15 102.75) (end 139.3 102.75) (width 0.2) (layer "F.Cu") (net 6) (tstamp 53b1075b-4a70-4299-b703-99c496bdb846))
(segment (start 138.55 103.5) (end 138.55 105.06) (width 0.2) (layer "F.Cu") (net 6) (tstamp 9538cf2d-78ea-4d59-a48d-a5e58def9dd1))
(segment (start 161.025 97.85) (end 160.625 98.25) (width 0.2) (layer "F.Cu") (net 7) (tstamp 1f1ff2d9-5ce0-4c03-9e3d-9446a8fe24a6))
(segment (start 161.025 94.515) (end 161.025 97.85) (width 0.2) (layer "F.Cu") (net 7) (tstamp 8ae1b641-a368-4919-a8d3-9bff956979dd))
(segment (start 158.89 92.38) (end 161.025 94.515) (width 0.2) (layer "F.Cu") (net 7) (tstamp b74c8be3-8d1f-47e3-9c75-946fa941b3b7))
(segment (start 160.625 98.25) (end 153.85 98.25) (width 0.2) (layer "F.Cu") (net 7) (tstamp cae38fc3-fd95-45ef-b260-e951c03721b8))
(segment (start 140.425 105.4) (end 139.175 104.15) (width 0.2) (layer "F.Cu") (net 8) (tstamp 26897f78-9bde-4bd8-af07-b35cbeb0d181))
(segment (start 139.175 103.6) (end 139.525 103.25) (width 0.2) (layer "F.Cu") (net 8) (tstamp 329952da-63f5-4c1f-a242-cab559a8b987))
(segment (start 143.65 107.62) (end 141.43 105.4) (width 0.2) (layer "F.Cu") (net 8) (tstamp 8a994a1f-5463-4bf2-bc57-1a2265b11af5))
(segment (start 141.43 105.4) (end 140.425 105.4) (width 0.2) (layer "F.Cu") (net 8) (tstamp dec17683-d6ce-49e4-9951-341f1c221521))
(segment (start 139.525 103.25) (end 140.15 103.25) (width 0.2) (layer "F.Cu") (net 8) (tstamp f6991466-f4fe-4c74-94df-50103796af3b))
(segment (start 139.175 104.15) (end 139.175 103.6) (width 0.2) (layer "F.Cu") (net 8) (tstamp fa8b6060-b377-498c-9d9e-5275b9bfe77d))
(segment (start 153.85 97.75) (end 160.425 97.75) (width 0.2) (layer "F.Cu") (net 9) (tstamp 47222014-ef90-4924-ae01-6c84c88cd0a9))
(segment (start 160.425 97.75) (end 160.625 97.55) (width 0.2) (layer "F.Cu") (net 9) (tstamp 92a7e6bb-2fb8-4039-8aad-deba2fc235e0))
(segment (start 160.625 97.55) (end 160.625 95.475) (width 0.2) (layer "F.Cu") (net 9) (tstamp a003a43f-252a-4979-99e7-040cbcb98e4a))
(segment (start 160.625 95.475) (end 159.435 94.285) (width 0.2) (layer "F.Cu") (net 9) (tstamp ae4d41ca-ab4b-4367-84f5-fdfa2c611948))
(segment (start 159.435 94.285) (end 158.255 94.285) (width 0.2) (layer "F.Cu") (net 9) (tstamp bac419f0-87e7-4341-a377-3716782eef2e))
(segment (start 158.255 94.285) (end 156.35 92.38) (width 0.2) (layer "F.Cu") (net 9) (tstamp cf3601d1-390f-4d44-ba0a-d3985008cb7d))
(segment (start 142.32 103.75) (end 140.15 103.75) (width 0.2) (layer "F.Cu") (net 10) (tstamp 64fbdddc-af06-4d34-bafc-ee9cc929e3a1))
(segment (start 146.19 107.62) (end 142.32 103.75) (width 0.2) (layer "F.Cu") (net 10) (tstamp c4e9ac68-08ca-4170-979d-62b88724f926))
(segment (start 146.175 107.605) (end 146.19 107.62) (width 0.2) (layer "B.Cu") (net 10) (tstamp 640d26d5-7145-4678-a85f-42ec8ca2bd29))
(segment (start 140.145 95.555) (end 140.15 95.56) (width 0.2) (layer "F.Cu") (net 11) (tstamp 79b8a85f-ac2f-4dc0-b581-2041c1cf0642))
(segment (start 140.15 95.56) (end 140.15 96.25) (width 0.2) (layer "F.Cu") (net 11) (tstamp accb4374-97fa-421b-a2a7-29da6110eb0a))
(segment (start 153.81 95.555) (end 153.81 92.38) (width 0.2) (layer "F.Cu") (net 11) (tstamp dd917215-9bf0-491b-90bb-344eb16b0548))
(via (at 153.81 95.555) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 11) (tstamp 94850c11-e648-464b-8f61-6558ea162e73))
(via (at 140.145 95.555) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 11) (tstamp af13f4c9-3303-49e8-8e8e-23e0c0587bb7))
(segment (start 140.145 95.555) (end 153.81 95.555) (width 0.2) (layer "B.Cu") (net 11) (tstamp 723e7fbb-93c9-4886-b6c6-9d3facfd5b91))
(segment (start 148.73 107.62) (end 152.6 103.75) (width 0.2) (layer "F.Cu") (net 12) (tstamp 282b5997-8d26-420d-8f24-c1c458428a30))
(segment (start 152.6 103.75) (end 159.85 103.75) (width 0.2) (layer "F.Cu") (net 12) (tstamp 7f464fdf-1b82-49f5-8714-69ae6832a27a))
(segment (start 152.95 96.25) (end 151.27 94.57) (width 0.2) (layer "F.Cu") (net 13) (tstamp 0e176e2d-ceda-454a-a76b-65818a6b609d))
(segment (start 159.85 96.25) (end 152.95 96.25) (width 0.2) (layer "F.Cu") (net 13) (tstamp 1b446b06-7900-4b14-86d0-462179366581))
(segment (start 151.27 94.57) (end 151.27 92.38) (width 0.2) (layer "F.Cu") (net 13) (tstamp 87e6bc53-fbcc-41e2-a659-6ed92f804c7d))
(segment (start 151.27 107.62) (end 151.175 107.525) (width 0.2) (layer "F.Cu") (net 14) (tstamp 158b6931-a02e-4b8e-a607-73137536f9d0))
(segment (start 160.55 103.25) (end 153.85 103.25) (width 0.2) (layer "F.Cu") (net 14) (tstamp 189b2f0e-ec6b-43dc-a5e0-2e1f3c0606c0))
(segment (start 160.8 103.5) (end 160.55 103.25) (width 0.2) (layer "F.Cu") (net 14) (tstamp 54996a4e-2148-4d26-a746-0c3a5c2b596f))
(segment (start 154.14 104.75) (end 160.25 104.75) (width 0.2) (layer "F.Cu") (net 14) (tstamp 709d2a65-7184-47bf-a5d3-87ab80027e0e))
(segment (start 160.25 104.75) (end 160.8 104.2) (width 0.2) (layer "F.Cu") (net 14) (tstamp a627c6ed-36a9-4317-a8ec-7db8ba057154))
(segment (start 151.27 107.62) (end 154.14 104.75) (width 0.2) (layer "F.Cu") (net 14) (tstamp d42e1c38-e363-481f-a912-aaa26be3d63d))
(segment (start 160.8 104.2) (end 160.8 103.5) (width 0.2) (layer "F.Cu") (net 14) (tstamp e17de734-ea3e-4dda-be2d-5a8f8458cdf3))
(segment (start 140.15 97.75) (end 141.15 97.75) (width 0.2) (layer "F.Cu") (net 15) (tstamp 793be30b-f66d-41d6-bee8-5a02d61719fd))
(segment (start 148.73 97.75) (end 148.73 92.38) (width 0.2) (layer "F.Cu") (net 15) (tstamp 8406991e-12ea-4a2c-9a78-8d2f81ba164f))
(via (at 148.73 97.75) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 15) (tstamp 579ecbbf-f15d-4f70-9431-6046f679ff1a))
(via (at 141.15 97.75) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 15) (tstamp d5da5121-613a-44f5-968f-258ab11b7c80))
(segment (start 141.15 97.75) (end 148.73 97.75) (width 0.2) (layer "B.Cu") (net 15) (tstamp 225880de-1e1f-42c1-83c9-4162ec17495b))
(segment (start 160.75 102.75) (end 161.325 103.325) (width 0.2) (layer "F.Cu") (net 16) (tstamp 04dedfc9-f8e2-48f2-8375-31c89de3f42a))
(segment (start 161.325 103.325) (end 161.325 104.5) (width 0.2) (layer "F.Cu") (net 16) (tstamp 497b5553-94bd-40dc-a99f-b562f3974ee9))
(segment (start 161.325 104.5) (end 160.575 105.25) (width 0.2) (layer "F.Cu") (net 16) (tstamp 5a10f4a4-cc54-4870-a0fa-132742322f25))
(segment (start 153.85 102.75) (end 160.75 102.75) (width 0.2) (layer "F.Cu") (net 16) (tstamp d8daa368-185e-49b1-a273-410b1147b7d3))
(segment (start 160.575 105.25) (end 156.18 105.25) (width 0.2) (layer "F.Cu") (net 16) (tstamp e665f61d-6efc-4e50-b987-f4677f1f8084))
(segment (start 156.18 105.25) (end 153.81 107.62) (width 0.2) (layer "F.Cu") (net 16) (tstamp ef90e24c-29fa-4d80-9a8b-413fd28aa618))
(segment (start 160.875 105.75) (end 161.875 104.75) (width 0.2) (layer "F.Cu") (net 17) (tstamp 1d33792a-018f-4763-b4e1-e76f16e01c99))
(segment (start 156.35 107.62) (end 158.22 105.75) (width 0.2) (layer "F.Cu") (net 17) (tstamp 3094fd14-70ef-47ec-849e-89fc836d075b))
(segment (start 161.875 103.15) (end 160.975 102.25) (width 0.2) (layer "F.Cu") (net 17) (tstamp 3d3e037f-c2c6-4034-8efa-4fb04fe38220))
(segment (start 161.875 104.75) (end 161.875 103.15) (width 0.2) (layer "F.Cu") (net 17) (tstamp 3f440146-69d7-44fd-8812-24e9094ca8ab))
(segment (start 160.975 102.25) (end 153.85 102.25) (width 0.2) (layer "F.Cu") (net 17) (tstamp 5965bd3c-0c60-47a9-a51a-0497d8308eb5))
(segment (start 158.22 105.75) (end 160.875 105.75) (width 0.2) (layer "F.Cu") (net 17) (tstamp c412c40c-6cf6-466e-b80f-8e24f7a719be))
(segment (start 143.65 99.1) (end 141 101.75) (width 0.2) (layer "F.Cu") (net 18) (tstamp 51315838-d4ad-4d6f-b93b-a95e0738edf5))
(segment (start 141 101.75) (end 140.15 101.75) (width 0.2) (layer "F.Cu") (net 18) (tstamp 941310ff-7776-4151-b472-8091c0c51287))
(segment (start 143.65 92.38) (end 143.65 99.1) (width 0.2) (layer "F.Cu") (net 18) (tstamp d5dc6447-9fcd-42f8-891e-238b1d468da0))
(segment (start 161.175 106.25) (end 160.26 106.25) (width 0.2) (layer "F.Cu") (net 19) (tstamp 1eb24100-d643-42d9-b7ef-32a143abd2e2))
(segment (start 161.2 101.75) (end 162.425 102.975) (width 0.2) (layer "F.Cu") (net 19) (tstamp 2495e9ae-bb56-4482-a70d-7a32424d5eb1))
(segment (start 153.85 101.75) (end 161.2 101.75) (width 0.2) (layer "F.Cu") (net 19) (tstamp d49ff302-80ba-4397-a9d4-3b17e9e6cc49))
(segment (start 162.425 102.975) (end 162.425 105) (width 0.2) (layer "F.Cu") (net 19) (tstamp db14906e-c09d-4b67-be1d-56f363a52214))
(segment (start 160.26 106.25) (end 158.89 107.62) (width 0.2) (layer "F.Cu") (net 19) (tstamp dc226505-db8b-400c-b426-1c81a827cf36))
(segment (start 162.425 105) (end 161.175 106.25) (width 0.2) (layer "F.Cu") (net 19) (tstamp eeb57bf2-0775-4eb5-b87c-cd2aca4bb789))
(segment (start 141.11 96.571) (end 140.931 96.75) (width 0.2) (layer "F.Cu") (net 20) (tstamp 8f526649-038c-42ff-a4cb-9a7863e9661c))
(segment (start 140.931 96.75) (end 140.15 96.75) (width 0.2) (layer "F.Cu") (net 20) (tstamp c7155706-a8f5-44d9-89ee-1f7bfc6d8ef4))
(segment (start 141.11 92.38) (end 141.11 96.571) (width 0.2) (layer "F.Cu") (net 20) (tstamp cc5b7a43-9db2-4a6f-8a19-8686f6913428))
(segment (start 161.475 101.25) (end 153.85 101.25) (width 0.2) (layer "F.Cu") (net 21) (tstamp 0f78a3ac-1737-41ac-ab73-9a527d705e0d))
(segment (start 163 102.775) (end 161.475 101.25) (width 0.2) (layer "F.Cu") (net 21) (tstamp 4bf091d2-54fd-4386-bffe-eff7ad46f2d4))
(segment (start 163 106.05) (end 163 102.775) (width 0.2) (layer "F.Cu") (net 21) (tstamp 7dbcb73b-3ee4-4819-be3e-cdccf4f264a3))
(segment (start 161.43 107.62) (end 163 106.05) (width 0.2) (layer "F.Cu") (net 21) (tstamp 98eb5de4-b47b-4af0-8eae-26aa21ad6147))
(segment (start 140.15 97.25) (end 139.4 97.25) (width 0.2) (layer "F.Cu") (net 22) (tstamp 4c432d97-7946-4535-8ef2-59d931287037))
(segment (start 139.4 97.25) (end 138.57 96.42) (width 0.2) (layer "F.Cu") (net 22) (tstamp 83d057a3-40a8-4129-9539-9393652c891c))
(segment (start 138.57 96.42) (end 138.57 92.38) (width 0.2) (layer "F.Cu") (net 22) (tstamp 9028e034-9b5f-44a8-82fc-269a22e8d515))
(segment (start 161.75 100.75) (end 163.97 102.97) (width 0.2) (layer "F.Cu") (net 23) (tstamp 2d950811-8953-42e8-96a2-44afc7194caa))
(segment (start 153.85 100.75) (end 161.75 100.75) (width 0.2) (layer "F.Cu") (net 23) (tstamp 72730dcd-7921-4e3d-b91d-6e921cc422d0))
(segment (start 163.97 102.97) (end 163.97 107.62) (width 0.2) (layer "F.Cu") (net 23) (tstamp c0a7217d-4df9-4925-bf25-fb3f83fe4983))
(segment (start 133.49 94.99) (end 133.49 92.38) (width 0.2) (layer "F.Cu") (net 24) (tstamp 57482e4d-a075-41f7-92c7-4d00b6fcbab5))
(segment (start 136.75 98.25) (end 133.49 94.99) (width 0.2) (layer "F.Cu") (net 24) (tstamp 8d206eb7-d305-4cb3-8be4-62d87ce61a19))
(segment (start 140.15 98.25) (end 136.75 98.25) (width 0.2) (layer "F.Cu") (net 24) (tstamp bf366085-168d-4293-8b8f-06c31418b08d))
(segment (start 142.7 97.75) (end 141.2 99.25) (width 0.2) (layer "F.Cu") (net 25) (tstamp 37c2c86d-5758-4881-858e-7ca5ed8c788b))
(segment (start 142.7 96.15) (end 142.7 97.75) (width 0.2) (layer "F.Cu") (net 25) (tstamp 806f0513-403c-4958-959b-a08bba9180c1))
(segment (start 141.2 99.25) (end 140.15 99.25) (width 0.2) (layer "F.Cu") (net 25) (tstamp 9172620e-85af-407e-ab28-904817e2ece2))
(segment (start 142.7 96.15) (end 142.7 94.539) (width 0.2) (layer "F.Cu") (net 25) (tstamp fb2ff450-9ee8-446d-81b4-0caf4714f53d))
(via (at 142.7 96.15) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 25) (tstamp 47458dff-0efe-4464-acb4-15af38ef6bcc))
(segment (start 142.7 96.15) (end 163.375 96.15) (width 0.2) (layer "B.Cu") (net 25) (tstamp 01d4863e-c675-4f6e-9c57-5b39fa411b05))
(segment (start 163.375 96.15) (end 165.24 94.285) (width 0.2) (layer "B.Cu") (net 25) (tstamp 1f7801dc-685b-407e-8c28-def60ff95edc))
(segment (start 145.555 94.93) (end 145.555 99.75) (width 0.2) (layer "F.Cu") (net 26) (tstamp 385a0b67-0e09-4bd2-acf6-2f7cf5dc1dfa))
(segment (start 144.6 94.925) (end 144.6 94.539) (width 0.2) (layer "F.Cu") (net 26) (tstamp 46248184-53a9-49cd-b330-72c376e955cc))
(segment (start 145.55 94.925) (end 144.6 94.925) (width 0.2) (layer "F.Cu") (net 26) (tstamp 7ce1ee48-a019-4a45-b53c-de00c1d049cd))
(segment (start 145.55 94.925) (end 147.78 94.925) (width 0.2) (layer "F.Cu") (net 26) (tstamp 9c68247f-64e8-43da-90cb-24b6414c7318))
(segment (start 140.15 99.75) (end 139 99.75) (width 0.3) (layer "F.Cu") (net 26) (tstamp a4c1f0b0-864c-4f3d-b18d-15e0b09926b9))
(segment (start 147.78 94.925) (end 147.78 94.539) (width 0.2) (layer "F.Cu") (net 26) (tstamp b1d21c15-2021-4d17-afc5-97b70f01d2c1))
(segment (start 145.55 94.925) (end 145.555 94.93) (width 0.6) (layer "F.Cu") (net 26) (tstamp e8d32f52-4ec0-4556-aa33-0f30d8f2fb99))
(via (at 139 99.75) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 26) (tstamp 08bf127a-8bdc-46c5-a433-0ce2805d25c2))
(via (at 145.55 94.925) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 26) (tstamp 117567d5-e4df-4209-a9cd-e858f9edbf49))
(via (at 145.555 99.75) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 26) (tstamp 63de51b7-e2fa-4cb0-8b46-a7627809abd5))
(segment (start 133.49 105.26) (end 133.49 107.62) (width 0.6) (layer "B.Cu") (net 26) (tstamp 2bd35c4c-e8af-47a3-a572-ec57db38ea1a))
(segment (start 139 99.75) (end 133.49 105.26) (width 0.6) (layer "B.Cu") (net 26) (tstamp 2cf1125c-1ca9-4c21-bc17-66b607dfeec7))
(segment (start 145.555 99.75) (end 139 99.75) (width 0.2) (layer "B.Cu") (net 26) (tstamp 5a1542ca-5143-4b06-9cca-ce725f1b0254))
(via (at 152.65 100.25) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 27) (tstamp 728f52e4-dce9-46b8-ab0e-d32c32278fe4))
(via (at 139.075 101) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (free) (net 27) (tstamp d5476750-9df1-47b7-9f49-2864ddc8da6d))
(segment (start 148.095 94.285) (end 146.19 92.38) (width 0.2) (layer "B.Cu") (net 28) (tstamp 07d4f2dd-5bfb-4933-9949-3ca3979d98ce))
(segment (start 162.7 94.285) (end 148.095 94.285) (width 0.2) (layer "B.Cu") (net 28) (tstamp f3e472d7-c9c9-40a0-bdcd-d80582d51845))
(segment locked (start 134.76 94.285) (end 136.03 92.38) (width 0.2) (layer "F.Cu") (net 29) (tstamp c6d77207-9a17-40fb-8575-a413292d5062))
(segment (start 153.8 97.3) (end 152.06 97.3) (width 0.2) (layer "F.Cu") (net 30) (tstamp 0f1de403-629b-4820-ad95-c3966f1a5e2d))
(segment (start 153.85 97.25) (end 153.8 97.3) (width 0.2) (layer "F.Cu") (net 30) (tstamp 700ae4f6-5ed0-4ae7-8743-80afadabc158))
(segment (start 159.85 97.25) (end 153.85 97.25) (width 0.2) (layer "F.Cu") (net 30) (tstamp ba305cc0-9bb7-48dc-abb4-0434ecc2d066))
(segment (start 152.06 97.3) (end 149.68 94.92) (width 0.2) (layer "F.Cu") (net 30) (tstamp de6ffeba-e0ab-47fa-a355-216bc536823b))
(segment (start 149.68 94.92) (end 149.68 94.539) (width 0.2) (layer "F.Cu") (net 30) (tstamp fe4be6fb-7b8c-46f3-9ca6-d2186621ec0b))
(via (at 149.68 94.92) (size 0.5) (drill 0.3) (layers "F.Cu" "B.Cu") (net 30) (tstamp 8c9b70e6-3913-4c36-8f72-d08f03f387a6))
(segment (start 145.936 94.285) (end 137.3 94.285) (width 0.2) (layer "B.Cu") (net 30) (tstamp 7b5df194-e4a9-4c9e-91ef-f0033a4f20f4))
(segment (start 146.571 94.92) (end 145.936 94.285) (width 0.2) (layer "B.Cu") (net 30) (tstamp 9bd366ff-1e8c-45b5-9233-69fdb94de9f7))
(segment (start 149.68 94.92) (end 146.571 94.92) (width 0.2) (layer "B.Cu") (net 30) (tstamp cd98983f-3ac2-416e-ad7f-5b59ad8cd8b3))
(zone (net 27) (net_name "GND") (layer "F.Cu") (tstamp fb2fca9c-8cbb-4779-b6e5-3a34ecad0259) (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.1))
(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.608753)
(xy 135.224514 107.608753)
(xy 135.232424 107.689424)
(xy 135.241499 107.781984)
(xy 135.2415 107.781989)
(xy 135.242039 107.787486)
(xy 135.298726 107.957896)
(xy 135.301591 107.962627)
(xy 135.301593 107.962631)
(xy 135.38889 108.106775)
(xy 135.391759 108.111512)
(xy 135.395607 108.115497)
(xy 135.395608 108.115498)
(xy 135.417152 108.137807)
(xy 135.516514 108.240699)
(xy 135.521139 108.243725)
(xy 135.521142 108.243728)
(xy 135.662163 108.336009)
(xy 135.666789 108.339036)
(xy 135.835116 108.401636)
(xy 135.840602 108.402368)
(xy 135.840606 108.402369)
(xy 136.002408 108.423957)
(xy 136.01313 108.425388)
(xy 136.018636 108.424887)
(xy 136.018638 108.424887)
(xy 136.102555 108.41725)
(xy 136.191981 108.409112)
(xy 136.21499 108.401636)
(xy 136.357517 108.355326)
(xy 136.357519 108.355325)
(xy 136.362782 108.353615)
(xy 136.367538 108.35078)
(xy 136.36754 108.350779)
(xy 136.476626 108.285751)
(xy 136.517044 108.261657)
(xy 136.647099 108.137807)
(xy 136.746483 107.988222)
(xy 136.810257 107.820336)
(xy 136.835251 107.642493)
(xy 136.835565 107.62)
(xy 136.834921 107.614256)
(xy 136.816163 107.447025)
(xy 136.816162 107.447021)
(xy 136.815546 107.441528)
(xy 136.756485 107.271927)
(xy 136.661316 107.119625)
(xy 136.552506 107.010053)
(xy 136.538671 106.996121)
(xy 136.538669 106.99612)
(xy 136.53477 106.992193)
(xy 136.383136 106.895963)
(xy 136.383423 106.895511)
(xy 136.342085 106.855588)
(xy 136.3305 106.809115)
(xy 136.3305 100.37753)
(xy 136.349407 100.319339)
(xy 136.356102 100.311094)
(xy 136.40259 100.259735)
(xy 136.40259 100.259734)
(xy 136.407322 100.254507)
(xy 136.452725 100.160796)
(xy 136.460512 100.144724)
(xy 136.460512 100.144723)
(xy 136.463588 100.138375)
(xy 136.478509 100.049687)
(xy 136.484363 100.014891)
(xy 136.484363 100.014886)
(xy 136.484997 100.01112)
(xy 136.485133 100)
(xy 136.466839 99.872259)
(xy 136.421764 99.773122)
(xy 136.416349 99.761212)
(xy 136.416348 99.761211)
(xy 136.413428 99.754788)
(xy 136.329193 99.657028)
(xy 136.323276 99.653193)
(xy 136.323274 99.653191)
(xy 136.226824 99.590677)
(xy 136.220906 99.586841)
(xy 136.21415 99.584821)
(xy 136.214149 99.58482)
(xy 136.115596 99.555346)
(xy 136.097273 99.549866)
(xy 136.020644 99.549398)
(xy 135.975282 99.549121)
(xy 135.968231 99.549078)
(xy 135.961454 99.551015)
(xy 135.961453 99.551015)
(xy 135.850935 99.582601)
(xy 135.850933 99.582602)
(xy 135.844155 99.584539)
(xy 135.735019 99.653399)
(xy 135.649596 99.750122)
(xy 135.594754 99.866932)
(xy 135.574901 99.99444)
(xy 135.575816 100.001437)
(xy 135.575816 100.001438)
(xy 135.576901 100.009735)
(xy 135.591633 100.122394)
(xy 135.594471 100.128845)
(xy 135.594472 100.128847)
(xy 135.640764 100.234054)
(xy 135.643605 100.24051)
(xy 135.68633 100.291337)
(xy 135.706283 100.315075)
(xy 135.729253 100.371785)
(xy 135.7295 100.378777)
(xy 135.7295 106.809632)
(xy 135.710593 106.867823)
(xy 135.682376 106.893952)
(xy 135.534045 106.985206)
(xy 135.405732 107.110859)
(xy 135.308446 107.261817)
(xy 135.247022 107.430578)
(xy 135.224514 107.608753)
(xy 134.2905 107.608753)
(xy 134.2905 107.102446)
(xy 134.286237 107.070063)
(xy 134.285344 107.063281)
(xy 134.284355 107.055769)
(xy 134.258848 107.001069)
(xy 134.240249 106.961183)
(xy 134.240248 106.961181)
(xy 134.236588 106.953333)
(xy 134.156667 106.873412)
(xy 134.148819 106.869752)
(xy 134.148817 106.869751)
(xy 134.0611 106.828848)
(xy 134.061099 106.828848)
(xy 134.054231 106.825645)
(xy 134.007554 106.8195)
(xy 132.972446 106.8195)
(xy 132.925769 106.825645)