forked from robertstarr/lbr_user
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathti-omap.lbr
5691 lines (5691 loc) · 403 KB
/
ti-omap.lbr
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE eagle SYSTEM "eagle.dtd">
<eagle version="6.4">
<drawing>
<settings>
<setting alwaysvectorfont="no"/>
<setting verticaltext="up"/>
</settings>
<grid distance="0.1" unitdist="inch" unit="inch" style="lines" multiple="1" display="no" altdistance="0.0125" altunitdist="inch" altunit="inch"/>
<layers>
<layer number="1" name="Top" color="4" fill="1" visible="yes" active="yes"/>
<layer number="2" name="Route2" color="1" fill="3" visible="no" active="yes"/>
<layer number="3" name="Route3" color="4" fill="3" visible="no" active="yes"/>
<layer number="4" name="Route4" color="1" fill="4" visible="no" active="yes"/>
<layer number="5" name="Route5" color="4" fill="4" visible="no" active="yes"/>
<layer number="6" name="Route6" color="1" fill="8" visible="no" active="yes"/>
<layer number="7" name="Route7" color="4" fill="8" visible="no" active="yes"/>
<layer number="8" name="Route8" color="1" fill="2" visible="no" active="yes"/>
<layer number="9" name="Route9" color="4" fill="2" visible="no" active="yes"/>
<layer number="10" name="Route10" color="1" fill="7" visible="no" active="yes"/>
<layer number="11" name="Route11" color="4" fill="7" visible="no" active="yes"/>
<layer number="12" name="Route12" color="1" fill="5" visible="no" active="yes"/>
<layer number="13" name="Route13" color="4" fill="5" visible="no" active="yes"/>
<layer number="14" name="Route14" color="1" fill="6" visible="no" active="yes"/>
<layer number="15" name="Route15" color="4" fill="6" visible="no" active="yes"/>
<layer number="16" name="Bottom" color="1" fill="1" visible="yes" active="yes"/>
<layer number="17" name="Pads" color="2" fill="1" visible="yes" active="yes"/>
<layer number="18" name="Vias" color="2" fill="1" visible="yes" active="yes"/>
<layer number="19" name="Unrouted" color="6" fill="1" visible="yes" active="yes"/>
<layer number="20" name="Dimension" color="15" fill="1" visible="yes" active="yes"/>
<layer number="21" name="tPlace" color="7" fill="1" visible="yes" active="yes"/>
<layer number="22" name="bPlace" color="7" fill="1" visible="yes" active="yes"/>
<layer number="23" name="tOrigins" color="15" fill="1" visible="yes" active="yes"/>
<layer number="24" name="bOrigins" color="15" fill="1" visible="yes" active="yes"/>
<layer number="25" name="tNames" color="7" fill="1" visible="yes" active="yes"/>
<layer number="26" name="bNames" color="7" fill="1" visible="yes" active="yes"/>
<layer number="27" name="tValues" color="7" fill="1" visible="yes" active="yes"/>
<layer number="28" name="bValues" color="7" fill="1" visible="yes" active="yes"/>
<layer number="29" name="tStop" color="4" fill="3" visible="yes" active="yes"/>
<layer number="30" name="bStop" color="1" fill="6" visible="no" active="yes"/>
<layer number="31" name="tCream" color="7" fill="4" visible="no" active="yes"/>
<layer number="32" name="bCream" color="7" fill="5" visible="no" active="yes"/>
<layer number="33" name="tFinish" color="6" fill="3" visible="no" active="yes"/>
<layer number="34" name="bFinish" color="6" fill="6" visible="no" active="yes"/>
<layer number="35" name="tGlue" color="7" fill="4" visible="no" active="yes"/>
<layer number="36" name="bGlue" color="7" fill="5" visible="no" active="yes"/>
<layer number="37" name="tTest" color="7" fill="1" visible="no" active="yes"/>
<layer number="38" name="bTest" color="7" fill="1" visible="no" active="yes"/>
<layer number="39" name="tKeepout" color="4" fill="11" visible="yes" active="yes"/>
<layer number="40" name="bKeepout" color="1" fill="11" visible="yes" active="yes"/>
<layer number="41" name="tRestrict" color="4" fill="10" visible="yes" active="yes"/>
<layer number="42" name="bRestrict" color="1" fill="10" visible="yes" active="yes"/>
<layer number="43" name="vRestrict" color="2" fill="10" visible="yes" active="yes"/>
<layer number="44" name="Drills" color="7" fill="1" visible="no" active="yes"/>
<layer number="45" name="Holes" color="7" fill="1" visible="no" active="yes"/>
<layer number="46" name="Milling" color="3" fill="1" visible="no" active="yes"/>
<layer number="47" name="Measures" color="7" fill="1" visible="no" active="yes"/>
<layer number="48" name="Document" color="7" fill="1" visible="yes" active="yes"/>
<layer number="49" name="Reference" color="7" fill="1" visible="yes" active="yes"/>
<layer number="51" name="tDocu" color="7" fill="1" visible="yes" active="yes"/>
<layer number="52" name="bDocu" color="7" fill="1" visible="yes" active="yes"/>
<layer number="91" name="Nets" color="2" fill="1" visible="yes" active="yes"/>
<layer number="92" name="Busses" color="1" fill="1" visible="yes" active="yes"/>
<layer number="93" name="Pins" color="2" fill="1" visible="yes" active="yes"/>
<layer number="94" name="Symbols" color="4" fill="1" visible="yes" active="yes"/>
<layer number="95" name="Names" color="7" fill="1" visible="yes" active="yes"/>
<layer number="96" name="Values" color="7" fill="1" visible="yes" active="yes"/>
<layer number="97" name="Info" color="7" fill="1" visible="yes" active="yes"/>
<layer number="98" name="Guide" color="6" fill="1" visible="yes" active="yes"/>
</layers>
<library>
<packages>
<package name="CUS">
<description><b>PBGA-423</b> - CUS (S-PBGA-N423) <p>
body 16x16 mm, pitch 0.65 mm</description>
<wire x1="-8.3984" y1="-8.3984" x2="8.3984" y2="-8.3984" width="0.2032" layer="21"/>
<wire x1="8.3984" y1="-8.3984" x2="8.3984" y2="8.3984" width="0.2032" layer="21"/>
<wire x1="8.3984" y1="8.3984" x2="-8.3984" y2="8.3984" width="0.2032" layer="21"/>
<wire x1="-8.3984" y1="8.3984" x2="-8.3984" y2="-8.3984" width="0.2032" layer="21"/>
<circle x="7.475" y="-7.475" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="-7.475" radius="0.275" width="0" layer="29"/>
<circle x="5.525" y="-7.475" radius="0.275" width="0" layer="29"/>
<circle x="4.875" y="-7.475" radius="0.275" width="0" layer="29"/>
<circle x="3.575" y="-7.475" radius="0.275" width="0" layer="29"/>
<circle x="2.925" y="-7.475" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="-7.475" radius="0.275" width="0" layer="29"/>
<circle x="0.975" y="-7.475" radius="0.275" width="0" layer="29"/>
<circle x="-0.325" y="-7.475" radius="0.275" width="0" layer="29"/>
<circle x="-0.975" y="-7.475" radius="0.275" width="0" layer="29"/>
<circle x="-2.275" y="-7.475" radius="0.275" width="0" layer="29"/>
<circle x="-2.925" y="-7.475" radius="0.275" width="0" layer="29"/>
<circle x="-4.225" y="-7.475" radius="0.275" width="0" layer="29"/>
<circle x="-4.875" y="-7.475" radius="0.275" width="0" layer="29"/>
<circle x="-6.175" y="-7.475" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="-7.475" radius="0.275" width="0" layer="29"/>
<circle x="-7.475" y="-7.475" radius="0.275" width="0" layer="29"/>
<circle x="7.475" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="6.175" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="5.525" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="4.875" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="4.225" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="3.575" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="2.925" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="2.275" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="0.975" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="0.325" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="-0.325" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="-0.975" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="-2.275" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="-2.925" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="-3.575" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="-4.225" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="-4.875" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="-5.525" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="-6.175" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="-7.475" y="-6.825" radius="0.275" width="0" layer="29"/>
<circle x="7.475" y="-6.175" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="-6.175" radius="0.275" width="0" layer="29"/>
<circle x="6.175" y="-6.175" radius="0.275" width="0" layer="29"/>
<circle x="4.875" y="-6.175" radius="0.275" width="0" layer="29"/>
<circle x="4.225" y="-6.175" radius="0.275" width="0" layer="29"/>
<circle x="3.575" y="-6.175" radius="0.275" width="0" layer="29"/>
<circle x="2.275" y="-6.175" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="-6.175" radius="0.275" width="0" layer="29"/>
<circle x="0.325" y="-6.175" radius="0.275" width="0" layer="29"/>
<circle x="-0.325" y="-6.175" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="-6.175" radius="0.275" width="0" layer="29"/>
<circle x="-2.275" y="-6.175" radius="0.275" width="0" layer="29"/>
<circle x="-3.575" y="-6.175" radius="0.275" width="0" layer="29"/>
<circle x="-4.225" y="-6.175" radius="0.275" width="0" layer="29"/>
<circle x="-4.875" y="-6.175" radius="0.275" width="0" layer="29"/>
<circle x="-6.175" y="-6.175" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="-6.175" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="-5.525" radius="0.275" width="0" layer="29"/>
<circle x="4.225" y="-5.525" radius="0.275" width="0" layer="29"/>
<circle x="3.575" y="-5.525" radius="0.275" width="0" layer="29"/>
<circle x="2.275" y="-5.525" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="-5.525" radius="0.275" width="0" layer="29"/>
<circle x="0.325" y="-5.525" radius="0.275" width="0" layer="29"/>
<circle x="-0.325" y="-5.525" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="-5.525" radius="0.275" width="0" layer="29"/>
<circle x="-2.275" y="-5.525" radius="0.275" width="0" layer="29"/>
<circle x="-3.575" y="-5.525" radius="0.275" width="0" layer="29"/>
<circle x="-4.225" y="-5.525" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="-5.525" radius="0.275" width="0" layer="29"/>
<circle x="-7.475" y="-5.525" radius="0.275" width="0" layer="29"/>
<circle x="7.475" y="-4.875" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="-4.875" radius="0.275" width="0" layer="29"/>
<circle x="6.175" y="-4.875" radius="0.275" width="0" layer="29"/>
<circle x="3.575" y="-4.875" radius="0.275" width="0" layer="29"/>
<circle x="2.275" y="-4.875" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="-4.875" radius="0.275" width="0" layer="29"/>
<circle x="0.325" y="-4.875" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="-4.875" radius="0.275" width="0" layer="29"/>
<circle x="-2.275" y="-4.875" radius="0.275" width="0" layer="29"/>
<circle x="-3.575" y="-4.875" radius="0.275" width="0" layer="29"/>
<circle x="-6.175" y="-4.875" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="-4.875" radius="0.275" width="0" layer="29"/>
<circle x="-7.475" y="-4.875" radius="0.275" width="0" layer="29"/>
<circle x="7.475" y="-4.225" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="-4.225" radius="0.275" width="0" layer="29"/>
<circle x="6.175" y="-4.225" radius="0.275" width="0" layer="29"/>
<circle x="5.525" y="-4.225" radius="0.275" width="0" layer="29"/>
<circle x="4.225" y="-4.225" radius="0.275" width="0" layer="29"/>
<circle x="3.575" y="-4.225" radius="0.275" width="0" layer="29"/>
<circle x="2.275" y="-4.225" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="-4.225" radius="0.275" width="0" layer="29"/>
<circle x="0.325" y="-4.225" radius="0.275" width="0" layer="29"/>
<circle x="-0.325" y="-4.225" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="-4.225" radius="0.275" width="0" layer="29"/>
<circle x="-2.275" y="-4.225" radius="0.275" width="0" layer="29"/>
<circle x="-3.575" y="-4.225" radius="0.275" width="0" layer="29"/>
<circle x="-4.225" y="-4.225" radius="0.275" width="0" layer="29"/>
<circle x="-5.525" y="-4.225" radius="0.275" width="0" layer="29"/>
<circle x="-6.175" y="-4.225" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="-4.225" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="-3.575" radius="0.275" width="0" layer="29"/>
<circle x="6.175" y="-3.575" radius="0.275" width="0" layer="29"/>
<circle x="5.525" y="-3.575" radius="0.275" width="0" layer="29"/>
<circle x="4.875" y="-3.575" radius="0.275" width="0" layer="29"/>
<circle x="4.225" y="-3.575" radius="0.275" width="0" layer="29"/>
<circle x="3.575" y="-3.575" radius="0.275" width="0" layer="29"/>
<circle x="2.275" y="-3.575" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="-3.575" radius="0.275" width="0" layer="29"/>
<circle x="0.325" y="-3.575" radius="0.275" width="0" layer="29"/>
<circle x="-0.325" y="-3.575" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="-3.575" radius="0.275" width="0" layer="29"/>
<circle x="-2.275" y="-3.575" radius="0.275" width="0" layer="29"/>
<circle x="-3.575" y="-3.575" radius="0.275" width="0" layer="29"/>
<circle x="-4.225" y="-3.575" radius="0.275" width="0" layer="29"/>
<circle x="-4.875" y="-3.575" radius="0.275" width="0" layer="29"/>
<circle x="-5.525" y="-3.575" radius="0.275" width="0" layer="29"/>
<circle x="-6.175" y="-3.575" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="-3.575" radius="0.275" width="0" layer="29"/>
<circle x="-7.475" y="-3.575" radius="0.275" width="0" layer="29"/>
<circle x="7.475" y="-2.925" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="-2.925" radius="0.275" width="0" layer="29"/>
<circle x="2.925" y="-2.925" radius="0.275" width="0" layer="29"/>
<circle x="2.275" y="-2.925" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="-2.925" radius="0.275" width="0" layer="29"/>
<circle x="0.975" y="-2.925" radius="0.275" width="0" layer="29"/>
<circle x="0.325" y="-2.925" radius="0.275" width="0" layer="29"/>
<circle x="-0.325" y="-2.925" radius="0.275" width="0" layer="29"/>
<circle x="-0.975" y="-2.925" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="-2.925" radius="0.275" width="0" layer="29"/>
<circle x="-2.275" y="-2.925" radius="0.275" width="0" layer="29"/>
<circle x="-2.925" y="-2.925" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="-2.925" radius="0.275" width="0" layer="29"/>
<circle x="-7.475" y="-2.925" radius="0.275" width="0" layer="29"/>
<circle x="7.475" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="6.175" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="5.525" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="4.875" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="4.225" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="3.575" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="2.925" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="2.275" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="0.975" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="0.325" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="-0.325" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="-0.975" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="-2.275" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="-2.925" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="-3.575" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="-4.225" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="-4.875" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="-5.525" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="-6.175" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="-2.275" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="-1.625" radius="0.275" width="0" layer="29"/>
<circle x="6.175" y="-1.625" radius="0.275" width="0" layer="29"/>
<circle x="5.525" y="-1.625" radius="0.275" width="0" layer="29"/>
<circle x="4.875" y="-1.625" radius="0.275" width="0" layer="29"/>
<circle x="4.225" y="-1.625" radius="0.275" width="0" layer="29"/>
<circle x="3.575" y="-1.625" radius="0.275" width="0" layer="29"/>
<circle x="2.925" y="-1.625" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="-1.625" radius="0.275" width="0" layer="29"/>
<circle x="0.975" y="-1.625" radius="0.275" width="0" layer="29"/>
<circle x="-0.975" y="-1.625" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="-1.625" radius="0.275" width="0" layer="29"/>
<circle x="-2.925" y="-1.625" radius="0.275" width="0" layer="29"/>
<circle x="-3.575" y="-1.625" radius="0.275" width="0" layer="29"/>
<circle x="-4.225" y="-1.625" radius="0.275" width="0" layer="29"/>
<circle x="-4.875" y="-1.625" radius="0.275" width="0" layer="29"/>
<circle x="-5.525" y="-1.625" radius="0.275" width="0" layer="29"/>
<circle x="-6.175" y="-1.625" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="-1.625" radius="0.275" width="0" layer="29"/>
<circle x="-7.475" y="-1.625" radius="0.275" width="0" layer="29"/>
<circle x="7.475" y="-0.975" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="-0.975" radius="0.275" width="0" layer="29"/>
<circle x="2.925" y="-0.975" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="-0.975" radius="0.275" width="0" layer="29"/>
<circle x="0.975" y="-0.975" radius="0.275" width="0" layer="29"/>
<circle x="0.325" y="-0.975" radius="0.275" width="0" layer="29"/>
<circle x="-0.325" y="-0.975" radius="0.275" width="0" layer="29"/>
<circle x="-0.975" y="-0.975" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="-0.975" radius="0.275" width="0" layer="29"/>
<circle x="-2.925" y="-0.975" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="-0.975" radius="0.275" width="0" layer="29"/>
<circle x="-7.475" y="-0.975" radius="0.275" width="0" layer="29"/>
<circle x="7.475" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="6.175" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="5.525" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="4.875" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="4.225" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="3.575" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="2.925" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="2.275" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="0.975" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="0.325" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="-0.325" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="-0.975" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="-2.275" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="-2.925" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="-3.575" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="-4.225" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="-4.875" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="-5.525" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="-6.175" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="-0.325" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="6.175" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="5.525" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="4.875" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="4.225" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="3.575" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="2.925" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="2.275" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="0.975" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="0.325" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="-0.325" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="-0.975" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="-2.275" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="-2.925" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="-3.575" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="-4.225" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="-4.875" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="-5.525" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="-6.175" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="-7.475" y="0.325" radius="0.275" width="0" layer="29"/>
<circle x="7.475" y="0.975" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="0.975" radius="0.275" width="0" layer="29"/>
<circle x="2.925" y="0.975" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="0.975" radius="0.275" width="0" layer="29"/>
<circle x="0.975" y="0.975" radius="0.275" width="0" layer="29"/>
<circle x="0.325" y="0.975" radius="0.275" width="0" layer="29"/>
<circle x="-0.325" y="0.975" radius="0.275" width="0" layer="29"/>
<circle x="-0.975" y="0.975" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="0.975" radius="0.275" width="0" layer="29"/>
<circle x="-2.925" y="0.975" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="0.975" radius="0.275" width="0" layer="29"/>
<circle x="-7.475" y="0.975" radius="0.275" width="0" layer="29"/>
<circle x="7.475" y="1.625" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="1.625" radius="0.275" width="0" layer="29"/>
<circle x="6.175" y="1.625" radius="0.275" width="0" layer="29"/>
<circle x="5.525" y="1.625" radius="0.275" width="0" layer="29"/>
<circle x="4.875" y="1.625" radius="0.275" width="0" layer="29"/>
<circle x="4.225" y="1.625" radius="0.275" width="0" layer="29"/>
<circle x="3.575" y="1.625" radius="0.275" width="0" layer="29"/>
<circle x="2.925" y="1.625" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="1.625" radius="0.275" width="0" layer="29"/>
<circle x="0.975" y="1.625" radius="0.275" width="0" layer="29"/>
<circle x="-0.975" y="1.625" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="1.625" radius="0.275" width="0" layer="29"/>
<circle x="-2.925" y="1.625" radius="0.275" width="0" layer="29"/>
<circle x="-3.575" y="1.625" radius="0.275" width="0" layer="29"/>
<circle x="-4.225" y="1.625" radius="0.275" width="0" layer="29"/>
<circle x="-4.875" y="1.625" radius="0.275" width="0" layer="29"/>
<circle x="-5.525" y="1.625" radius="0.275" width="0" layer="29"/>
<circle x="-6.175" y="1.625" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="1.625" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="6.175" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="5.525" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="4.875" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="4.225" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="3.575" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="2.925" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="2.275" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="0.975" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="0.325" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="-0.325" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="-0.975" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="-2.275" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="-2.925" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="-3.575" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="-4.225" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="-5.525" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="-6.175" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="-7.475" y="2.275" radius="0.275" width="0" layer="29"/>
<circle x="7.475" y="2.925" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="2.925" radius="0.275" width="0" layer="29"/>
<circle x="2.925" y="2.925" radius="0.275" width="0" layer="29"/>
<circle x="2.275" y="2.925" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="2.925" radius="0.275" width="0" layer="29"/>
<circle x="0.975" y="2.925" radius="0.275" width="0" layer="29"/>
<circle x="0.325" y="2.925" radius="0.275" width="0" layer="29"/>
<circle x="-0.325" y="2.925" radius="0.275" width="0" layer="29"/>
<circle x="-0.975" y="2.925" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="2.925" radius="0.275" width="0" layer="29"/>
<circle x="-2.275" y="2.925" radius="0.275" width="0" layer="29"/>
<circle x="-2.925" y="2.925" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="2.925" radius="0.275" width="0" layer="29"/>
<circle x="-7.475" y="2.925" radius="0.275" width="0" layer="29"/>
<circle x="7.475" y="3.575" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="3.575" radius="0.275" width="0" layer="29"/>
<circle x="6.175" y="3.575" radius="0.275" width="0" layer="29"/>
<circle x="5.525" y="3.575" radius="0.275" width="0" layer="29"/>
<circle x="4.875" y="3.575" radius="0.275" width="0" layer="29"/>
<circle x="4.225" y="3.575" radius="0.275" width="0" layer="29"/>
<circle x="3.575" y="3.575" radius="0.275" width="0" layer="29"/>
<circle x="2.275" y="3.575" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="3.575" radius="0.275" width="0" layer="29"/>
<circle x="0.325" y="3.575" radius="0.275" width="0" layer="29"/>
<circle x="-0.325" y="3.575" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="3.575" radius="0.275" width="0" layer="29"/>
<circle x="-2.275" y="3.575" radius="0.275" width="0" layer="29"/>
<circle x="-3.575" y="3.575" radius="0.275" width="0" layer="29"/>
<circle x="-4.225" y="3.575" radius="0.275" width="0" layer="29"/>
<circle x="-4.875" y="3.575" radius="0.275" width="0" layer="29"/>
<circle x="-5.525" y="3.575" radius="0.275" width="0" layer="29"/>
<circle x="-6.175" y="3.575" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="3.575" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="4.225" radius="0.275" width="0" layer="29"/>
<circle x="6.175" y="4.225" radius="0.275" width="0" layer="29"/>
<circle x="5.525" y="4.225" radius="0.275" width="0" layer="29"/>
<circle x="4.225" y="4.225" radius="0.275" width="0" layer="29"/>
<circle x="3.575" y="4.225" radius="0.275" width="0" layer="29"/>
<circle x="2.275" y="4.225" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="4.225" radius="0.275" width="0" layer="29"/>
<circle x="0.325" y="4.225" radius="0.275" width="0" layer="29"/>
<circle x="-0.325" y="4.225" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="4.225" radius="0.275" width="0" layer="29"/>
<circle x="-2.275" y="4.225" radius="0.275" width="0" layer="29"/>
<circle x="-3.575" y="4.225" radius="0.275" width="0" layer="29"/>
<circle x="-4.225" y="4.225" radius="0.275" width="0" layer="29"/>
<circle x="-5.525" y="4.225" radius="0.275" width="0" layer="29"/>
<circle x="-6.175" y="4.225" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="4.225" radius="0.275" width="0" layer="29"/>
<circle x="-7.475" y="4.225" radius="0.275" width="0" layer="29"/>
<circle x="7.475" y="4.875" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="4.875" radius="0.275" width="0" layer="29"/>
<circle x="6.175" y="4.875" radius="0.275" width="0" layer="29"/>
<circle x="3.575" y="4.875" radius="0.275" width="0" layer="29"/>
<circle x="2.275" y="4.875" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="4.875" radius="0.275" width="0" layer="29"/>
<circle x="0.325" y="4.875" radius="0.275" width="0" layer="29"/>
<circle x="-0.325" y="4.875" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="4.875" radius="0.275" width="0" layer="29"/>
<circle x="-2.275" y="4.875" radius="0.275" width="0" layer="29"/>
<circle x="-3.575" y="4.875" radius="0.275" width="0" layer="29"/>
<circle x="-6.175" y="4.875" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="4.875" radius="0.275" width="0" layer="29"/>
<circle x="-7.475" y="4.875" radius="0.275" width="0" layer="29"/>
<circle x="7.475" y="5.525" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="5.525" radius="0.275" width="0" layer="29"/>
<circle x="4.225" y="5.525" radius="0.275" width="0" layer="29"/>
<circle x="3.575" y="5.525" radius="0.275" width="0" layer="29"/>
<circle x="2.275" y="5.525" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="5.525" radius="0.275" width="0" layer="29"/>
<circle x="0.325" y="5.525" radius="0.275" width="0" layer="29"/>
<circle x="-0.325" y="5.525" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="5.525" radius="0.275" width="0" layer="29"/>
<circle x="-2.275" y="5.525" radius="0.275" width="0" layer="29"/>
<circle x="-3.575" y="5.525" radius="0.275" width="0" layer="29"/>
<circle x="-4.225" y="5.525" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="5.525" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="6.175" radius="0.275" width="0" layer="29"/>
<circle x="6.175" y="6.175" radius="0.275" width="0" layer="29"/>
<circle x="4.875" y="6.175" radius="0.275" width="0" layer="29"/>
<circle x="4.225" y="6.175" radius="0.275" width="0" layer="29"/>
<circle x="3.575" y="6.175" radius="0.275" width="0" layer="29"/>
<circle x="2.275" y="6.175" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="6.175" radius="0.275" width="0" layer="29"/>
<circle x="0.325" y="6.175" radius="0.275" width="0" layer="29"/>
<circle x="-0.325" y="6.175" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="6.175" radius="0.275" width="0" layer="29"/>
<circle x="-2.275" y="6.175" radius="0.275" width="0" layer="29"/>
<circle x="-3.575" y="6.175" radius="0.275" width="0" layer="29"/>
<circle x="-4.225" y="6.175" radius="0.275" width="0" layer="29"/>
<circle x="-4.875" y="6.175" radius="0.275" width="0" layer="29"/>
<circle x="-6.175" y="6.175" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="6.175" radius="0.275" width="0" layer="29"/>
<circle x="-7.475" y="6.175" radius="0.275" width="0" layer="29"/>
<circle x="7.475" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="6.175" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="5.525" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="4.875" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="4.225" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="3.575" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="2.925" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="2.275" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="1.625" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="0.975" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="0.325" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="-0.325" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="-0.975" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="-2.275" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="-2.925" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="-3.575" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="-4.225" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="-4.875" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="-5.525" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="-6.175" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="-7.475" y="6.825" radius="0.275" width="0" layer="29"/>
<circle x="7.475" y="7.475" radius="0.275" width="0" layer="29"/>
<circle x="6.825" y="7.475" radius="0.275" width="0" layer="29"/>
<circle x="6.175" y="7.475" radius="0.275" width="0" layer="29"/>
<circle x="4.875" y="7.475" radius="0.275" width="0" layer="29"/>
<circle x="4.225" y="7.475" radius="0.275" width="0" layer="29"/>
<circle x="2.925" y="7.475" radius="0.275" width="0" layer="29"/>
<circle x="2.275" y="7.475" radius="0.275" width="0" layer="29"/>
<circle x="0.975" y="7.475" radius="0.275" width="0" layer="29"/>
<circle x="0.325" y="7.475" radius="0.275" width="0" layer="29"/>
<circle x="-0.975" y="7.475" radius="0.275" width="0" layer="29"/>
<circle x="-1.625" y="7.475" radius="0.275" width="0" layer="29"/>
<circle x="-2.925" y="7.475" radius="0.275" width="0" layer="29"/>
<circle x="-3.575" y="7.475" radius="0.275" width="0" layer="29"/>
<circle x="-4.875" y="7.475" radius="0.275" width="0" layer="29"/>
<circle x="-5.525" y="7.475" radius="0.275" width="0" layer="29"/>
<circle x="-6.825" y="7.475" radius="0.275" width="0" layer="29"/>
<circle x="-7.475" y="7.475" radius="0.275" width="0" layer="29"/>
<smd name="AD24" x="7.475" y="-7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AD23" x="6.825" y="-7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AD21" x="5.525" y="-7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AD20" x="4.875" y="-7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AD18" x="3.575" y="-7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AD17" x="2.925" y="-7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AD15" x="1.625" y="-7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AD14" x="0.975" y="-7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AD12" x="-0.325" y="-7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AD11" x="-0.975" y="-7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AD9" x="-2.275" y="-7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AD8" x="-2.925" y="-7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AD6" x="-4.225" y="-7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AD5" x="-4.875" y="-7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AD3" x="-6.175" y="-7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AD2" x="-6.825" y="-7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AD1" x="-7.475" y="-7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC24" x="7.475" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC23" x="6.825" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC22" x="6.175" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC21" x="5.525" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC20" x="4.875" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC19" x="4.225" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC18" x="3.575" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC17" x="2.925" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC16" x="2.275" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC15" x="1.625" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC14" x="0.975" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC13" x="0.325" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC12" x="-0.325" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC11" x="-0.975" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC10" x="-1.625" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC9" x="-2.275" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC8" x="-2.925" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC7" x="-3.575" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC6" x="-4.225" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC5" x="-4.875" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC4" x="-5.525" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC3" x="-6.175" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC2" x="-6.825" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AC1" x="-7.475" y="-6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AB24" x="7.475" y="-6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AB23" x="6.825" y="-6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AB22" x="6.175" y="-6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AB20" x="4.875" y="-6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AB19" x="4.225" y="-6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AB18" x="3.575" y="-6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AB16" x="2.275" y="-6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AB15" x="1.625" y="-6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AB13" x="0.325" y="-6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AB12" x="-0.325" y="-6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AB10" x="-1.625" y="-6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AB9" x="-2.275" y="-6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AB7" x="-3.575" y="-6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AB6" x="-4.225" y="-6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AB5" x="-4.875" y="-6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AB3" x="-6.175" y="-6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AB2" x="-6.825" y="-6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AA23" x="6.825" y="-5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AA19" x="4.225" y="-5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AA18" x="3.575" y="-5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AA16" x="2.275" y="-5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AA15" x="1.625" y="-5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AA13" x="0.325" y="-5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AA12" x="-0.325" y="-5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AA10" x="-1.625" y="-5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AA9" x="-2.275" y="-5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AA7" x="-3.575" y="-5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AA6" x="-4.225" y="-5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AA2" x="-6.825" y="-5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="AA1" x="-7.475" y="-5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="Y24" x="7.475" y="-4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="Y23" x="6.825" y="-4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="Y22" x="6.175" y="-4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="Y18" x="3.575" y="-4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="Y16" x="2.275" y="-4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="Y15" x="1.625" y="-4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="Y13" x="0.325" y="-4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="Y10" x="-1.625" y="-4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="Y9" x="-2.275" y="-4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="Y7" x="-3.575" y="-4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="Y3" x="-6.175" y="-4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="Y2" x="-6.825" y="-4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="Y1" x="-7.475" y="-4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="W24" x="7.475" y="-4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="W23" x="6.825" y="-4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="W22" x="6.175" y="-4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="W21" x="5.525" y="-4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="W19" x="4.225" y="-4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="W18" x="3.575" y="-4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="W16" x="2.275" y="-4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="W15" x="1.625" y="-4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="W13" x="0.325" y="-4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="W12" x="-0.325" y="-4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="W10" x="-1.625" y="-4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="W9" x="-2.275" y="-4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="W7" x="-3.575" y="-4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="W6" x="-4.225" y="-4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="W4" x="-5.525" y="-4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="W3" x="-6.175" y="-4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="W2" x="-6.825" y="-4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="V23" x="6.825" y="-3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="V22" x="6.175" y="-3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="V21" x="5.525" y="-3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="V20" x="4.875" y="-3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="V19" x="4.225" y="-3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="V18" x="3.575" y="-3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="V16" x="2.275" y="-3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="V15" x="1.625" y="-3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="V13" x="0.325" y="-3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="V12" x="-0.325" y="-3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="V10" x="-1.625" y="-3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="V9" x="-2.275" y="-3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="V7" x="-3.575" y="-3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="V6" x="-4.225" y="-3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="V5" x="-4.875" y="-3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="V4" x="-5.525" y="-3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="V3" x="-6.175" y="-3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="V2" x="-6.825" y="-3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="V1" x="-7.475" y="-3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="U24" x="7.475" y="-2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="U23" x="6.825" y="-2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="U17" x="2.925" y="-2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="U16" x="2.275" y="-2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="U15" x="1.625" y="-2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="U14" x="0.975" y="-2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="U13" x="0.325" y="-2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="U12" x="-0.325" y="-2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="U11" x="-0.975" y="-2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="U10" x="-1.625" y="-2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="U9" x="-2.275" y="-2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="U8" x="-2.925" y="-2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="U2" x="-6.825" y="-2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="U1" x="-7.475" y="-2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T24" x="7.475" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T23" x="6.825" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T22" x="6.175" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T21" x="5.525" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T20" x="4.875" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T19" x="4.225" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T18" x="3.575" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T17" x="2.925" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T16" x="2.275" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T15" x="1.625" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T14" x="0.975" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T13" x="0.325" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T12" x="-0.325" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T11" x="-0.975" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T10" x="-1.625" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T9" x="-2.275" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T8" x="-2.925" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T7" x="-3.575" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T6" x="-4.225" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T5" x="-4.875" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T4" x="-5.525" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T3" x="-6.175" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="T2" x="-6.825" y="-2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="R23" x="6.825" y="-1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="R22" x="6.175" y="-1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="R21" x="5.525" y="-1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="R20" x="4.875" y="-1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="R19" x="4.225" y="-1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="R18" x="3.575" y="-1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="R17" x="2.925" y="-1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="R15" x="1.625" y="-1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="R14" x="0.975" y="-1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="R11" x="-0.975" y="-1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="R10" x="-1.625" y="-1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="R8" x="-2.925" y="-1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="R7" x="-3.575" y="-1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="R6" x="-4.225" y="-1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="R5" x="-4.875" y="-1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="R4" x="-5.525" y="-1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="R3" x="-6.175" y="-1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="R2" x="-6.825" y="-1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="R1" x="-7.475" y="-1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="P24" x="7.475" y="-0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="P23" x="6.825" y="-0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="P17" x="2.925" y="-0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="P15" x="1.625" y="-0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="P14" x="0.975" y="-0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="P13" x="0.325" y="-0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="P12" x="-0.325" y="-0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="P11" x="-0.975" y="-0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="P10" x="-1.625" y="-0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="P8" x="-2.925" y="-0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="P2" x="-6.825" y="-0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="P1" x="-7.475" y="-0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N24" x="7.475" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N23" x="6.825" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N22" x="6.175" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N21" x="5.525" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N20" x="4.875" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N19" x="4.225" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N18" x="3.575" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N17" x="2.925" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N16" x="2.275" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N15" x="1.625" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N14" x="0.975" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N13" x="0.325" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N12" x="-0.325" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N11" x="-0.975" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N10" x="-1.625" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N9" x="-2.275" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N8" x="-2.925" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N7" x="-3.575" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N6" x="-4.225" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N5" x="-4.875" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N4" x="-5.525" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N3" x="-6.175" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="N2" x="-6.825" y="-0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M23" x="6.825" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M22" x="6.175" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M21" x="5.525" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M20" x="4.875" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M19" x="4.225" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M18" x="3.575" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M17" x="2.925" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M16" x="2.275" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M15" x="1.625" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M14" x="0.975" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M13" x="0.325" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M12" x="-0.325" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M11" x="-0.975" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M10" x="-1.625" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M9" x="-2.275" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M8" x="-2.925" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M7" x="-3.575" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M6" x="-4.225" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M5" x="-4.875" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M4" x="-5.525" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M3" x="-6.175" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M2" x="-6.825" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="M1" x="-7.475" y="0.325" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="L24" x="7.475" y="0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="L23" x="6.825" y="0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="L17" x="2.925" y="0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="L15" x="1.625" y="0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="L14" x="0.975" y="0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="L13" x="0.325" y="0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="L12" x="-0.325" y="0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="L11" x="-0.975" y="0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="L10" x="-1.625" y="0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="L8" x="-2.925" y="0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="L2" x="-6.825" y="0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="L1" x="-7.475" y="0.975" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="K24" x="7.475" y="1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="K23" x="6.825" y="1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="K22" x="6.175" y="1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="K21" x="5.525" y="1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="K20" x="4.875" y="1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="K19" x="4.225" y="1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="K18" x="3.575" y="1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="K17" x="2.925" y="1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="K15" x="1.625" y="1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="K14" x="0.975" y="1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="K11" x="-0.975" y="1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="K10" x="-1.625" y="1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="K8" x="-2.925" y="1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="K7" x="-3.575" y="1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="K6" x="-4.225" y="1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="K5" x="-4.875" y="1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="K4" x="-5.525" y="1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="K3" x="-6.175" y="1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="K2" x="-6.825" y="1.625" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J23" x="6.825" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J22" x="6.175" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J21" x="5.525" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J20" x="4.875" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J19" x="4.225" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J18" x="3.575" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J17" x="2.925" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J16" x="2.275" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J15" x="1.625" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J14" x="0.975" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J13" x="0.325" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J12" x="-0.325" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J11" x="-0.975" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J10" x="-1.625" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J9" x="-2.275" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J8" x="-2.925" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J7" x="-3.575" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J6" x="-4.225" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J4" x="-5.525" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J3" x="-6.175" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J2" x="-6.825" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="J1" x="-7.475" y="2.275" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="H24" x="7.475" y="2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="H23" x="6.825" y="2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="H17" x="2.925" y="2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="H16" x="2.275" y="2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="H15" x="1.625" y="2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="H14" x="0.975" y="2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="H13" x="0.325" y="2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="H12" x="-0.325" y="2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="H11" x="-0.975" y="2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="H10" x="-1.625" y="2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="H9" x="-2.275" y="2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="H8" x="-2.925" y="2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="H2" x="-6.825" y="2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="H1" x="-7.475" y="2.925" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="G24" x="7.475" y="3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="G23" x="6.825" y="3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="G22" x="6.175" y="3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="G21" x="5.525" y="3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="G20" x="4.875" y="3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="G19" x="4.225" y="3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="G18" x="3.575" y="3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="G16" x="2.275" y="3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="G15" x="1.625" y="3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="G13" x="0.325" y="3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="G12" x="-0.325" y="3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="G10" x="-1.625" y="3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="G9" x="-2.275" y="3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="G7" x="-3.575" y="3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="G6" x="-4.225" y="3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="G5" x="-4.875" y="3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="G4" x="-5.525" y="3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="G3" x="-6.175" y="3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="G2" x="-6.825" y="3.575" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="F23" x="6.825" y="4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="F22" x="6.175" y="4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="F21" x="5.525" y="4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="F19" x="4.225" y="4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="F18" x="3.575" y="4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="F16" x="2.275" y="4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="F15" x="1.625" y="4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="F13" x="0.325" y="4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="F12" x="-0.325" y="4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="F10" x="-1.625" y="4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="F9" x="-2.275" y="4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="F7" x="-3.575" y="4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="F6" x="-4.225" y="4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="F4" x="-5.525" y="4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="F3" x="-6.175" y="4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="F2" x="-6.825" y="4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="F1" x="-7.475" y="4.225" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="E24" x="7.475" y="4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="E23" x="6.825" y="4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="E22" x="6.175" y="4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="E18" x="3.575" y="4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="E16" x="2.275" y="4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="E15" x="1.625" y="4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="E13" x="0.325" y="4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="E12" x="-0.325" y="4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="E10" x="-1.625" y="4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="E9" x="-2.275" y="4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="E7" x="-3.575" y="4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="E3" x="-6.175" y="4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="E2" x="-6.825" y="4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="E1" x="-7.475" y="4.875" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="D24" x="7.475" y="5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="D23" x="6.825" y="5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="D19" x="4.225" y="5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="D18" x="3.575" y="5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="D16" x="2.275" y="5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="D15" x="1.625" y="5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="D13" x="0.325" y="5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="D12" x="-0.325" y="5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="D10" x="-1.625" y="5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="D9" x="-2.275" y="5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="D7" x="-3.575" y="5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="D6" x="-4.225" y="5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="D2" x="-6.825" y="5.525" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="C23" x="6.825" y="6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="C22" x="6.175" y="6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="C20" x="4.875" y="6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="C19" x="4.225" y="6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="C18" x="3.575" y="6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="C16" x="2.275" y="6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="C15" x="1.625" y="6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="C13" x="0.325" y="6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="C12" x="-0.325" y="6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="C10" x="-1.625" y="6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="C9" x="-2.275" y="6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="C7" x="-3.575" y="6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="C6" x="-4.225" y="6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="C5" x="-4.875" y="6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="C3" x="-6.175" y="6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="C2" x="-6.825" y="6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="C1" x="-7.475" y="6.175" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B24" x="7.475" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B23" x="6.825" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B22" x="6.175" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B21" x="5.525" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B20" x="4.875" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B19" x="4.225" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B18" x="3.575" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B17" x="2.925" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B16" x="2.275" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B15" x="1.625" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B14" x="0.975" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B13" x="0.325" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B12" x="-0.325" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B11" x="-0.975" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B10" x="-1.625" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B9" x="-2.275" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B8" x="-2.925" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B7" x="-3.575" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B6" x="-4.225" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B5" x="-4.875" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B4" x="-5.525" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B3" x="-6.175" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B2" x="-6.825" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="B1" x="-7.475" y="6.825" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="A24" x="7.475" y="7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="A23" x="6.825" y="7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="A22" x="6.175" y="7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="A20" x="4.875" y="7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="A19" x="4.225" y="7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="A17" x="2.925" y="7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="A16" x="2.275" y="7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="A14" x="0.975" y="7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="A13" x="0.325" y="7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="A11" x="-0.975" y="7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="A10" x="-1.625" y="7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="A8" x="-2.925" y="7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="A7" x="-3.575" y="7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="A5" x="-4.875" y="7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="A4" x="-5.525" y="7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="A2" x="-6.825" y="7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<smd name="A1" x="-7.475" y="7.475" dx="0.35" dy="0.35" layer="1" roundness="100" stop="no" cream="no"/>
<text x="-8.5" y="8.75" size="1.016" layer="25" ratio="18">>NAME</text>
<text x="-8.5" y="-9.5" size="0.8128" layer="27" ratio="10">>VALUE</text>
<polygon width="0.1524" layer="21">
<vertex x="-8.4" y="8.4"/>
<vertex x="-7.7" y="8.4"/>
<vertex x="-8.4" y="7.7"/>
</polygon>
</package>
<package name="CBC">
<description><b>PBGA-515</b> - CBC (S-PBGA-N515) <p>
body 14x14 mm, pitch 0.5 mm</description>
<wire x1="-6.8984" y1="-6.8984" x2="6.8984" y2="-6.8984" width="0.2032" layer="21"/>
<wire x1="6.8984" y1="-6.8984" x2="6.8984" y2="6.8984" width="0.2032" layer="21"/>
<wire x1="6.8984" y1="6.8984" x2="-6.8984" y2="6.8984" width="0.2032" layer="21"/>
<wire x1="-6.8984" y1="6.8984" x2="-6.8984" y2="-6.8984" width="0.2032" layer="21"/>
<circle x="6.25" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="5.75" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="5.25" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="4.75" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="4.25" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="3.75" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="3.25" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="2.75" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="2.25" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="1.75" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="1.25" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="0.75" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="0.25" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="-0.25" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="-0.75" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="-1.25" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="-1.75" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="-2.25" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="-2.75" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="-3.25" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="-3.75" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="-4.25" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="-4.75" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="-5.25" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="-5.75" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="-6.25" y="-6.25" radius="0.175" width="0" layer="29"/>
<circle x="6.25" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="5.75" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="5.25" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="4.75" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="4.25" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="3.75" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="3.25" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="2.75" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="2.25" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="1.75" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="1.25" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="0.75" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="0.25" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="-0.25" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="-0.75" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="-1.25" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="-1.75" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="-2.25" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="-2.75" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="-3.25" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="-3.75" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="-4.25" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="-4.75" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="-5.25" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="-5.75" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="-6.25" y="-5.75" radius="0.175" width="0" layer="29"/>
<circle x="6.25" y="-5.25" radius="0.175" width="0" layer="29"/>
<circle x="5.75" y="-5.25" radius="0.175" width="0" layer="29"/>
<circle x="5.25" y="-5.25" radius="0.175" width="0" layer="29"/>
<circle x="4.75" y="-5.25" radius="0.175" width="0" layer="29"/>
<circle x="4.25" y="-5.25" radius="0.175" width="0" layer="29"/>
<circle x="3.75" y="-5.25" radius="0.175" width="0" layer="29"/>
<circle x="3.25" y="-5.25" radius="0.175" width="0" layer="29"/>
<circle x="2.75" y="-5.25" radius="0.175" width="0" layer="29"/>
<circle x="2.25" y="-5.25" radius="0.175" width="0" layer="29"/>
<circle x="1.75" y="-5.25" radius="0.175" width="0" layer="29"/>