Skip to content
Snippets Groups Projects
v1_teensy-brd.svg 40.2 KiB
Newer Older
Zach Fredin's avatar
Zach Fredin committed
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" standalone="no"?>
 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" 
 "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> 
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" 
    width="3.79984cm" height="2.37236cm" viewBox="0 0 14960 9340 ">
<title>SVG Picture created as v1_teensy-brd.svg date 2020/05/13 17:59:13 </title>
  <desc>Picture generated by PCBNEW </desc>
<g style="fill:#000000; fill-opacity:1;stroke:#000000; stroke-opacity:1;
stroke-linecap:round; stroke-linejoin:round; "
 transform="translate(0 0) scale(1 1)">
</g>
<g style="fill:#000000; fill-opacity:0.0; 
stroke:#000000; stroke-width:-0.000393701; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<g >
</g>
<g style="fill:#000000; fill-opacity:0.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 12186,5036.81
11436,5036.81
11436,4536.81
12186,4536.81
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 12186,3736.81
11436,3736.81
11436,3236.81
12186,3236.81
Z" /> 
</g>
<g >
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 4140.16,3232.28
4140.16,2482.28
4640.16,2482.28
4640.16,3232.28
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 2840.16,3232.28
2840.16,2482.28
3340.16,2482.28
3340.16,3232.28
Z" /> 
</g>
<g >
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 10826.6,1830.2
10836.1,1831.62
10845.5,1833.96
10854.6,1837.22
10863.3,1841.35
10871.6,1846.31
10879.4,1852.07
10886.5,1858.55
10893,1865.71
10898.8,1873.47
10903.7,1881.75
10907.9,1890.48
10911.1,1899.58
10913.5,1908.95
10914.9,1918.5
10915.4,1928.15
10915.4,2774.61
10914.9,2784.25
10913.5,2793.81
10911.1,2803.18
10907.9,2812.27
10903.7,2821
10898.8,2829.29
10893,2837.05
10886.5,2844.2
10879.4,2850.69
10871.6,2856.44
10863.3,2861.41
10854.6,2865.54
10845.5,2868.79
10836.1,2871.14
10826.6,2872.56
10816.9,2873.03
10452.8,2873.03
10443.1,2872.56
10433.6,2871.14
10424.2,2868.79
10415.1,2865.54
10406.4,2861.41
10398.1,2856.44
10390.3,2850.69
10383.2,2844.2
10376.7,2837.05
10370.9,2829.29
10366,2821
10361.8,2812.27
10358.6,2803.18
10356.2,2793.81
10354.8,2784.25
10354.3,2774.61
10354.3,1928.15
10354.8,1918.5
10356.2,1908.95
10358.6,1899.58
10361.8,1890.48
10366,1881.75
10370.9,1873.47
10376.7,1865.71
10383.2,1858.55
10390.3,1852.07
10398.1,1846.31
10406.4,1841.35
10415.1,1837.22
10424.2,1833.96
10433.6,1831.62
10443.1,1830.2
10452.8,1829.72
10816.9,1829.72
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 11997.8,1830.2
12007.4,1831.62
12016.8,1833.96
12025.9,1837.22
12034.6,1841.35
12042.9,1846.31
12050.6,1852.07
12057.8,1858.55
12064.3,1865.71
12070,1873.47
12075,1881.75
12079.1,1890.48
12082.4,1899.58
12084.7,1908.95
12086.1,1918.5
12086.6,1928.15
12086.6,2774.61
12086.1,2784.25
12084.7,2793.81
12082.4,2803.18
12079.1,2812.27
12075,2821
12070,2829.29
12064.3,2837.05
12057.8,2844.2
12050.6,2850.69
12042.9,2856.44
12034.6,2861.41
12025.9,2865.54
12016.8,2868.79
12007.4,2871.14
11997.8,2872.56
11988.2,2873.03
11624,2873.03
11614.4,2872.56
11604.8,2871.14
11595.4,2868.79
11586.4,2865.54
11577.6,2861.41
11569.3,2856.44
11561.6,2850.69
11554.4,2844.2
11547.9,2837.05
11542.2,2829.29
11537.2,2821
11533.1,2812.27
11529.8,2803.18
11527.5,2793.81
11526.1,2784.25
11525.6,2774.61
11525.6,1928.15
11526.1,1918.5
11527.5,1908.95
11529.8,1899.58
11533.1,1890.48
11537.2,1881.75
11542.2,1873.47
11547.9,1865.71
11554.4,1858.55
11561.6,1852.07
11569.3,1846.31
11577.6,1841.35
11586.4,1837.22
11595.4,1833.96
11604.8,1831.62
11614.4,1830.2
11624,1829.72
11988.2,1829.72
Z" /> 
</g>
<g >
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 2840.16,2248.03
2840.16,1498.03
3340.16,1498.03
3340.16,2248.03
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 4140.16,2248.03
4140.16,1498.03
4640.16,1498.03
4640.16,2248.03
Z" /> 
</g>
<g >
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 12303.1,6302.17
12303.1,7089.57
12106.3,7089.57
12106.3,6302.17
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 11909.4,6302.17
11909.4,7089.57
11712.6,7089.57
11712.6,6302.17
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 11515.7,6302.17
11515.7,7089.57
11318.9,7089.57
11318.9,6302.17
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 11122,6302.17
11122,7089.57
10925.2,7089.57
10925.2,6302.17
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 10728.3,6302.17
10728.3,7089.57
10531.5,7089.57
10531.5,6302.17
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 10334.6,6302.17
10334.6,7089.57
10137.8,7089.57
10137.8,6302.17
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 12992.1,7876.97
12992.1,8664.37
12598.4,8664.37
12598.4,7876.97
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 9842.52,7876.97
9842.52,8664.37
9448.82,8664.37
9448.82,7876.97
Z" /> 
</g>
<g >
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 2362.2,7876.97
2362.2,8664.37
1968.5,8664.37
1968.5,7876.97
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 5511.81,7876.97
5511.81,8664.37
5118.11,8664.37
5118.11,7876.97
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 2854.33,6302.17
2854.33,7089.57
2657.48,7089.57
2657.48,6302.17
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 3248.03,6302.17
3248.03,7089.57
3051.18,7089.57
3051.18,6302.17
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 3641.73,6302.17
3641.73,7089.57
3444.88,7089.57
3444.88,6302.17
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 4035.43,6302.17
4035.43,7089.57
3838.58,7089.57
3838.58,6302.17
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 4429.13,6302.17
4429.13,7089.57
4232.28,7089.57
4232.28,6302.17
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 4822.83,6302.17
4822.83,7089.57
4625.98,7089.57
4625.98,6302.17
Z" /> 
</g>
<g >
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 11201.8,5036.81
10451.8,5036.81
10451.8,4536.81
11201.8,4536.81
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 11201.8,3736.81
10451.8,3736.81
10451.8,3236.81
11201.8,3236.81
Z" /> 
</g>
<g >
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 4640.16,4549.21
4640.16,5299.21
4140.16,5299.21
4140.16,4549.21
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 3340.16,4549.21
3340.16,5299.21
2840.16,5299.21
2840.16,4549.21
Z" /> 
</g>
<g >
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 5333.66,3749.41
6083.66,3749.41
6083.66,4249.41
5333.66,4249.41
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 5333.66,2449.41
6083.66,2449.41
6083.66,2949.41
5333.66,2949.41
Z" /> 
</g>
<g >
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<circle cx="14220.5" cy="1743.11" r="393.701" /> 
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:39.3701; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<circle cx="14220.5" cy="2743.11" r="393.701" /> 
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:39.3701; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<circle cx="14220.5" cy="3743.11" r="393.701" /> 
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:39.3701; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<circle cx="14220.5" cy="4743.11" r="393.701" /> 
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:39.3701; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<circle cx="14220.5" cy="5743.11" r="393.701" /> 
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:39.3701; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<circle cx="8220.47" cy="5743.11" r="393.701" /> 
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:39.3701; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<circle cx="8220.47" cy="4743.11" r="393.701" /> 
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:39.3701; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<circle cx="8220.47" cy="3743.11" r="393.701" /> 
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:39.3701; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<circle cx="8220.47" cy="2743.11" r="393.701" /> 
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:39.3701; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<circle cx="8220.47" cy="1743.11" r="393.701" /> 
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:39.3701; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g >
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:39.3701; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 9166.67,4885.81
9166.67,4415.81
9376.67,4415.81
9376.67,4885.81
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 9540.67,4885.81
9540.67,4415.81
9750.67,4415.81
9750.67,4885.81
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 9914.67,4885.81
9914.67,4415.81
10124.7,4415.81
10124.7,4885.81
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 9914.67,3857.81
9914.67,3387.81
10124.7,3387.81
10124.7,3857.81
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 9166.67,3857.81
9166.67,3387.81
9376.67,3387.81
9376.67,3857.81
Z" /> 
</g>
<g >
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 9626.97,3068.31
8876.97,3068.31
8876.97,2568.31
9626.97,2568.31
Z" /> 
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 9626.97,1768.31
8876.97,1768.31
8876.97,1268.31
9626.97,1268.31
Z" /> 
</g>
<g >
</g>
<g >
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:0; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:137.795; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g style="fill:#000000; fill-opacity:0.0; 
stroke:#000000; stroke-width:137.795; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<path d="M8312 4650
L8220 4743
" />
<path d="M9271 4650
L8312 4650
" />
<path d="M11811 4786
L10826 4786
" />
<path d="M9271 5023
L9271 4650
" />
<path d="M9271 5059
L9271 5023
" />
<path d="M9386 5174
L9271 5059
" />
<path d="M10701 4786
L10313 5174
" />
<path d="M10313 5174
L9386 5174
" />
<path d="M10826 4786
L10701 4786
" />
<path d="M10354 2631
L10354 2640
" />
<path d="M10634 2351
L10354 2631
" />
<path d="M10019 2975
L10019 3622
" />
<path d="M10354 2640
L10019 2975
" />
<path d="M10826 3486
L11811 3486
" />
<path d="M10690 3622
L10826 3486
" />
<path d="M10019 3622
L10690 3622
" />
<path d="M4390 4924
L4390 2857
" />
<path d="M3090 2857
L3090 1873
" />
<path d="M5270 1873
L4777 1873
" />
<path d="M5708 2311
L5270 1873
" />
<path d="M4777 1873
L4390 1873
" />
<path d="M5708 2699
L5708 2311
" />
<path d="M13337 4625
L13826 4136
" />
<path d="M13337 5364
L13337 4625
" />
<path d="M11072 6499
L11072 6105
" />
<path d="M13826 4136
L14220 3743
" />
<path d="M12992 5709
L13337 5364
" />
<path d="M12992 5711
L12992 5709
" />
<path d="M11122 6056
L12647 6056
" />
<path d="M12647 6056
L12992 5711
" />
<path d="M11023 6499
L11072 6499
" />
<path d="M11072 6105
L11122 6056
" />
<path d="M13826 3136
L14220 2743
" />
<path d="M10629 5905
L10824 5711
" />
<path d="M10629 6499
L10629 5905
" />
<path d="M10824 5711
L12544 5711
" />
<path d="M13022 5233
L13022 3940
" />
<path d="M12544 5711
L13022 5233
" />
<path d="M13022 3940
L13826 3136
" />
<path d="M3149 4983
L3090 4924
" />
<path d="M3149 6499
L3149 4983
" />
<path d="M5708 4673
L5708 4387
" />
<path d="M5708 4387
L5708 3999
" />
<path d="M4837 5545
L5708 4673
" />
<path d="M3955 5545
L4837 5545
" />
<path d="M3543 5957
L3955 5545
" />
<path d="M3543 6499
L3543 5957
" />
<path d="M9645 4650
L10019 4650
" />
<path d="M9151 3743
L9271 3622
" />
<path d="M8220 3743
L9151 3743
" />
<path d="M9251 3603
L9271 3622
" />
<path d="M9251 2818
L9251 3603
" />
</g>
<g >
</g>
<g style="fill:#000000; fill-opacity:0.0; 
stroke:#000000; stroke-width:137.795; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:177.165; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<path style="fill:#000000; fill-opacity:1.0; 
stroke:#000000; stroke-width:177.165; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill-rule:evenodd;"
d="M 2573.12,1498.03
2574.41,1796.75
2640.85,1863.19
3080.31,1863.19
3080.31,1855.31
3100,1855.31
3100,1863.19
3539.47,1863.19
3605.91,1796.75
3607.19,1498.03
3603.41,1459.65
3876.9,1459.65
3873.12,1498.03
3873.12,2248.03
3878.25,2300.13
3893.45,2350.22
3901.43,2365.16
3893.45,2380.09
3878.25,2430.19
3873.12,2482.28
3873.12,3232.28
3878.25,3284.38
3893.45,3334.47
3918.13,3380.64
3951.34,3421.1
3991.8,3454.31
4037.97,3478.99
4055.51,3484.31
4055.51,4297.18
4037.97,4302.51
3991.8,4327.18
3951.34,4360.39
3918.13,4400.86
3893.45,4447.02
3878.25,4497.12
3873.12,4549.21
3873.12,5220.62
3827.02,5234.61
3768.89,5265.68
3768.89,5265.68
3768.89,5265.68
3730.7,5297.02
3730.7,5297.03
3717.93,5307.5
3707.46,5320.27
3484.25,5543.47
3484.25,5523.52
3488.51,5521.24
3528.98,5488.03
3562.19,5447.57
3586.86,5401.4
3602.06,5351.31
3607.19,5299.21
3607.19,4549.21
3602.06,4497.12
3586.86,4447.02
3562.19,4400.86
3528.98,4360.39
3488.51,4327.18
3442.35,4302.51
3392.25,4287.31
3340.16,4282.18
2840.16,4282.18
2788.06,4287.31
2737.97,4302.51
2691.8,4327.18
2651.34,4360.39
2618.13,4400.86
2593.45,4447.02
2578.25,4497.12
2573.12,4549.21
2573.12,5299.21
2578.25,5351.31
2593.45,5401.4
2618.13,5447.57
2651.34,5488.03
2691.8,5521.24
2737.97,5545.92
2788.06,5561.12
2814.96,5563.76
2814.96,6053.64
2765.75,6102.85
2765.75,6686.02
2773.62,6686.02
2773.62,6705.71
2765.75,6705.71
2765.75,7288.88
2832.19,7355.31
2854.33,7356.6
2906.43,7351.47
2952.76,7337.42
2999.09,7351.47
3051.18,7356.6
3248.03,7356.6
3300.13,7351.47
3346.46,7337.42
3392.79,7351.47
3444.88,7356.6
3641.73,7356.6
3693.83,7351.47
3740.16,7337.42
3786.49,7351.47
3838.58,7356.6
4035.43,7356.6
4087.53,7351.47
4133.86,7337.42
4180.19,7351.47
4232.28,7356.6
4429.13,7356.6
4481.23,7351.47
4527.56,7337.42
4573.89,7351.47
4625.98,7356.6
4822.83,7356.6
4874.93,7351.47
4925.02,7336.27
4971.19,7311.6
5011.66,7278.39
5044.87,7237.92
5069.54,7191.76
5084.74,7141.66
5089.87,7089.57
5089.87,6302.17
5084.74,6250.07
5069.54,6199.98
5044.87,6153.81
5011.66,6113.34
4971.19,6080.13
4925.02,6055.46
4874.93,6040.26
4822.83,6035.13
4625.98,6035.13
4573.89,6040.26
4527.56,6054.32
4481.23,6040.26
4429.13,6035.13
4232.28,6035.13
4180.19,6040.26
4133.86,6054.32
4087.53,6040.26
4035.43,6035.13
3939.11,6035.13
4094.32,5879.92
4820.57,5879.92
4837.01,5881.54
4853.44,5879.92
4853.44,5879.92
4902.61,5875.08
4965.69,5855.94
5023.83,5824.87
5074.78,5783.05
5085.26,5770.28
5933.67,4921.87
5946.44,4911.4
5956.91,4898.63
5956.91,4898.63
5988.25,4860.44
5988.26,4860.44
6019.33,4802.31
6038.46,4739.22
6043.31,4690.06
6043.31,4690.06
6044.93,4673.62
6043.31,4657.19
6043.31,4516.44
6083.66,4516.44
6135.76,4511.31
6185.85,4496.12
6232.02,4471.44
6272.48,4438.23
6305.69,4397.77
6330.37,4351.6
6345.56,4301.51
6350.7,4249.41
6350.7,3749.41
6345.56,3697.31
6330.37,3647.22
6305.69,3601.05
6272.48,3560.59
6232.02,3527.38
6185.85,3502.7
6135.76,3487.51
6083.66,3482.38
5333.66,3482.38
5281.57,3487.51
5231.47,3502.7
5185.31,3527.38
5144.84,3560.59
5111.63,3601.05
5086.95,3647.22
5071.76,3697.31
5066.63,3749.41
5066.63,4249.41
5071.76,4301.51
5086.95,4351.6
5111.63,4397.77
5144.84,4438.23
5185.31,4471.44
5231.47,4496.12
5281.57,4511.31
5333.66,4516.44
5374.02,4516.44
5374.02,4535.01
4907.19,5001.83
4907.19,4549.21
4902.06,4497.12
4886.86,4447.02
4862.19,4400.86
4828.98,4360.39
4788.51,4327.18
4742.35,4302.51
4724.8,4297.18