Skip to content
boitarire.svg 328 KiB
Newer Older
8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000
d="M 69000.000000,25400.000000
69200.000000,25400.000000
" /> 
<path style="fill:#840000; fill-opacity:0.0; 
stroke:#840000; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;fill:none"
d="M 69100.000000,25500.000000
69100.000000,25300.000000
" /> 
<path d="M69500 25730
L69500 25000
" />
<path d="M69500 26270
L69500 27000
" />
</g>
<g style="fill:#006464; fill-opacity:0.0; 
stroke:#006464; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<text x="69269.330709" y="23999.921260"
textLength="1036.181102" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="middle" opacity="0">C1</text>
<g class="stroked-text"><desc>C1</desc>
<path d="M69185 23928
L69162 23952
L69090 23976
L69043 23976
L68971 23952
L68924 23904
L68900 23857
L68876 23761
L68876 23690
L68900 23595
L68924 23547
L68971 23499
L69043 23476
L69090 23476
L69162 23499
L69185 23523
" />
<path d="M69662 23976
L69376 23976
" />
<path d="M69519 23976
L69519 23476
L69471 23547
L69424 23595
L69376 23618
" />
</g><text x="69269.330709" y="28249.921260"
textLength="5036.181102" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="middle" opacity="0">220uF / 10V</text>
<g class="stroked-text"><desc>220uF / 10V</desc>
<path d="M66876 27773
L66900 27749
L66947 27726
L67066 27726
L67114 27749
L67138 27773
L67162 27821
L67162 27868
L67138 27940
L66852 28226
L67162 28226
" />
<path d="M67352 27773
L67376 27749
L67424 27726
L67543 27726
L67590 27749
L67614 27773
L67638 27821
L67638 27868
L67614 27940
L67328 28226
L67638 28226
" />
<path d="M67947 27726
L67995 27726
L68043 27749
L68066 27773
L68090 27821
L68114 27916
L68114 28035
L68090 28130
L68066 28178
L68043 28202
L67995 28226
L67947 28226
L67900 28202
L67876 28178
L67852 28130
L67828 28035
L67828 27916
L67852 27821
L67876 27773
L67900 27749
L67947 27726
" />
<path d="M68543 27892
L68543 28226
" />
<path d="M68328 27892
L68328 28154
L68352 28202
L68400 28226
L68471 28226
L68519 28202
L68543 28178
" />
<path d="M68947 27964
L68781 27964
" />
<path d="M68781 28226
L68781 27726
L69019 27726
" />
<path d="M69947 27702
L69519 28345
" />
<path d="M70757 28226
L70471 28226
" />
<path d="M70614 28226
L70614 27726
L70566 27797
L70519 27845
L70471 27868
" />
<path d="M71066 27726
L71114 27726
L71162 27749
L71185 27773
L71209 27821
L71233 27916
L71233 28035
L71209 28130
L71185 28178
L71162 28202
L71114 28226
L71066 28226
L71019 28202
L70995 28178
L70971 28130
L70947 28035
L70947 27916
L70971 27821
L70995 27773
L71019 27749
L71066 27726
" />
<path d="M71376 27726
L71543 28226
L71709 27726
" />
</g></g>
</g>
<g style="fill:#006464; fill-opacity:0.0; 
stroke:#006464; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<g >
</g>
<g style="fill:#840000; fill-opacity:0.0; 
stroke:#840000; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g style="fill:#840000; fill-opacity:0.0; 
stroke:#840000; stroke-width:100.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<rect x="80500.000000" y="45850.000000" width="2000.000000" height="800.000000" rx="0.000000" />
</g>
<g style="fill:#840000; fill-opacity:0.0; 
stroke:#840000; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<path d="M80500 46250
L80000 46250
" />
<path d="M82500 46250
L83000 46250
" />
</g>
<g style="fill:#006464; fill-opacity:0.0; 
stroke:#006464; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<text x="81499.960630" y="47250.000000"
textLength="1036.181102" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="middle" opacity="0">R3</text>
<g class="stroked-text"><desc>R3</desc>
<path d="M81416 47226
L81249 46988
" />
<path d="M81130 47226
L81130 46726
L81321 46726
L81368 46750
L81392 46773
L81416 46821
L81416 46892
L81392 46940
L81368 46964
L81321 46988
L81130 46988
" />
<path d="M81583 46726
L81892 46726
L81726 46916
L81797 46916
L81845 46940
L81868 46964
L81892 47011
L81892 47130
L81868 47178
L81845 47202
L81797 47226
L81654 47226
L81607 47202
L81583 47178
" />
</g><text x="81499.960630" y="45750.000000"
textLength="1417.125984" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="middle" opacity="0">4k7</text>
<g class="stroked-text"><desc>4k7</desc>
<path d="M81154 45392
L81154 45726
" />
<path d="M81035 45202
L80916 45559
L81226 45559
" />
<path d="M81416 45726
L81416 45226
" />
<path d="M81464 45535
L81607 45726
" />
<path d="M81607 45392
L81416 45583
" />
<path d="M81773 45226
L82107 45226
L81892 45726
" />
</g></g>
</g>
<g style="fill:#006464; fill-opacity:0.0; 
stroke:#006464; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<g >
</g>
<g style="fill:#840000; fill-opacity:0.0; 
stroke:#840000; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g style="fill:#FFFFC2; fill-opacity:0.0; 
stroke:#FFFFC2; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g style="fill:#FFFFC2; fill-opacity:0.6; 
stroke:#FFFFC2; stroke-width:0.039370; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<rect x="58750.000000" y="25000.000000" width="6000.000000" height="4000.000000" rx="0.000000" />
</g>
<g style="fill:#840000; fill-opacity:0.6; 
stroke:#840000; stroke-width:0.039370; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g style="fill:#840000; fill-opacity:0.0; 
stroke:#840000; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<rect x="58750.000000" y="25000.000000" width="6000.000000" height="4000.000000" rx="0.000000" />
<rect x="58750.000000" y="25000.000000" width="6000.000000" height="4000.000000" rx="0.000000" />
<path d="M58750 25500
L57750 25500
" />
</g>
<g style="fill:#006464; fill-opacity:0.0; 
stroke:#006464; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<text x="58950.000000" y="25750.000000"
textLength="2179.055118" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="start" opacity="0">USB+</text>
<g class="stroked-text"><desc>USB+</desc>
<path d="M59099 25226
L59099 25630
L59122 25678
L59146 25702
L59194 25726
L59289 25726
L59337 25702
L59360 25678
L59384 25630
L59384 25226
" />
<path d="M59599 25702
L59670 25726
L59789 25726
L59837 25702
L59860 25678
L59884 25630
L59884 25583
L59860 25535
L59837 25511
L59789 25488
L59694 25464
L59646 25440
L59622 25416
L59599 25369
L59599 25321
L59622 25273
L59646 25250
L59694 25226
L59813 25226
L59884 25250
" />
<path d="M60265 25464
L60337 25488
L60360 25511
L60384 25559
L60384 25630
L60360 25678
L60337 25702
L60289 25726
L60099 25726
L60099 25226
L60265 25226
L60313 25250
L60337 25273
L60360 25321
L60360 25369
L60337 25416
L60313 25440
L60265 25464
L60099 25464
" />
<path d="M60599 25535
L60980 25535
" />
<path d="M60789 25726
L60789 25345
" />
</g></g>
<g style="fill:#A90000; fill-opacity:0.0; 
stroke:#A90000; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<text x="58250.000000" y="25400.000000"
textLength="536.181102" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="middle" opacity="0">1</text>
<g class="stroked-text"><desc>1</desc>
<path d="M58392 25376
L58107 25376
" />
<path d="M58250 25376
L58250 24876
L58202 24947
L58154 24995
L58107 25019
" />
</g></g>
<g style="fill:#840000; fill-opacity:0.0; 
stroke:#840000; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<path d="M58750 26500
L57750 26500
" />
</g>
<g style="fill:#006464; fill-opacity:0.0; 
stroke:#006464; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<text x="58950.000000" y="26750.000000"
textLength="1583.818898" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="start" opacity="0">GND</text>
<g class="stroked-text"><desc>GND</desc>
<path d="M59360 26250
L59313 26226
L59241 26226
L59170 26250
L59122 26297
L59099 26345
L59075 26440
L59075 26511
L59099 26607
L59122 26654
L59170 26702
L59241 26726
L59289 26726
L59360 26702
L59384 26678
L59384 26511
L59289 26511
" />
<path d="M59599 26726
L59599 26226
L59884 26726
L59884 26226
" />
<path d="M60122 26726
L60122 26226
L60241 26226
L60313 26250
L60360 26297
L60384 26345
L60408 26440
L60408 26511
L60384 26607
L60360 26654
L60313 26702
L60241 26726
L60122 26726
" />
</g></g>
<g style="fill:#A90000; fill-opacity:0.0; 
stroke:#A90000; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<text x="58250.000000" y="26400.000000"
textLength="536.181102" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="middle" opacity="0">2</text>
<g class="stroked-text"><desc>2</desc>
<path d="M58107 25923
L58130 25900
L58178 25876
L58297 25876
L58345 25900
L58369 25923
L58392 25971
L58392 26019
L58369 26090
L58083 26376
L58392 26376
" />
</g></g>
<g style="fill:#840000; fill-opacity:0.0; 
stroke:#840000; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<path d="M58750 27500
L57750 27500
" />
</g>
<g style="fill:#006464; fill-opacity:0.0; 
stroke:#006464; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<text x="58950.000000" y="27750.000000"
textLength="2369.527559" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="start" opacity="0">BATT+</text>
<g class="stroked-text"><desc>BATT+</desc>
<path d="M59265 27464
L59337 27488
L59360 27511
L59384 27559
L59384 27630
L59360 27678
L59337 27702
L59289 27726
L59099 27726
L59099 27226
L59265 27226
L59313 27250
L59337 27273
L59360 27321
L59360 27369
L59337 27416
L59313 27440
L59265 27464
L59099 27464
" />
<path d="M59575 27583
L59813 27583
" />
<path d="M59527 27726
L59694 27226
L59860 27726
" />
<path d="M59956 27226
L60241 27226
" />
<path d="M60099 27726
L60099 27226
" />
<path d="M60337 27226
L60622 27226
" />
<path d="M60480 27726
L60480 27226
" />
<path d="M60789 27535
L61170 27535
" />
<path d="M60980 27726
L60980 27345
" />
</g></g>
<g style="fill:#A90000; fill-opacity:0.0; 
stroke:#A90000; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<text x="58250.000000" y="27400.000000"
textLength="536.181102" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="middle" opacity="0">3</text>
<g class="stroked-text"><desc>3</desc>
<path d="M58083 26876
L58392 26876
L58226 27066
L58297 27066
L58345 27090
L58369 27114
L58392 27161
L58392 27280
L58369 27328
L58345 27352
L58297 27376
L58154 27376
L58107 27352
L58083 27328
" />
</g></g>
<g style="fill:#840000; fill-opacity:0.0; 
stroke:#840000; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<path d="M58750 28500
L57750 28500
" />
</g>
<g style="fill:#006464; fill-opacity:0.0; 
stroke:#006464; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<text x="58950.000000" y="28750.000000"
textLength="2369.527559" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="start" opacity="0">BATT-</text>
<g class="stroked-text"><desc>BATT-</desc>
<path d="M59265 28464
L59337 28488
L59360 28511
L59384 28559
L59384 28630
L59360 28678
L59337 28702
L59289 28726
L59099 28726
L59099 28226
L59265 28226
L59313 28250
L59337 28273
L59360 28321
L59360 28369
L59337 28416
L59313 28440
L59265 28464
L59099 28464
" />
<path d="M59575 28583
L59813 28583
" />
<path d="M59527 28726
L59694 28226
L59860 28726
" />
<path d="M59956 28226
L60241 28226
" />
<path d="M60099 28726
L60099 28226
" />
<path d="M60337 28226
L60622 28226
" />
<path d="M60480 28726
L60480 28226
" />
<path d="M60789 28535
L61170 28535
" />
</g></g>
<g style="fill:#A90000; fill-opacity:0.0; 
stroke:#A90000; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<text x="58250.000000" y="28400.000000"
textLength="536.181102" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="middle" opacity="0">4</text>
<g class="stroked-text"><desc>4</desc>
<path d="M58345 28042
L58345 28376
" />
<path d="M58226 27852
L58107 28209
L58416 28209
" />
</g></g>
<g style="fill:#840000; fill-opacity:0.0; 
stroke:#840000; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<path d="M64750 25500
L65750 25500
" />
</g>
<g style="fill:#006464; fill-opacity:0.0; 
stroke:#006464; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<text x="64550.000000" y="25750.000000"
textLength="2107.637795" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="end" opacity="0">OUT+</text>
<g class="stroked-text"><desc>OUT+</desc>
<path d="M62686 25226
L62781 25226
L62829 25250
L62877 25297
L62900 25392
L62900 25559
L62877 25654
L62829 25702
L62781 25726
L62686 25726
L62639 25702
L62591 25654
L62567 25559
L62567 25392
L62591 25297
L62639 25250
L62686 25226
" />
<path d="M63115 25226
L63115 25630
L63139 25678
L63162 25702
L63210 25726
L63305 25726
L63353 25702
L63377 25678
L63400 25630
L63400 25226
" />
<path d="M63567 25226
L63853 25226
" />
<path d="M63710 25726
L63710 25226
" />
<path d="M64020 25535
L64400 25535
" />
<path d="M64210 25726
L64210 25345
" />
</g></g>
<g style="fill:#A90000; fill-opacity:0.0; 
stroke:#A90000; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<text x="65250.000000" y="25400.000000"
textLength="536.181102" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="middle" opacity="0">5</text>
<g class="stroked-text"><desc>5</desc>
<path d="M65369 24876
L65130 24876
L65107 25114
L65130 25090
L65178 25066
L65297 25066
L65345 25090
L65369 25114
L65392 25161
L65392 25280
L65369 25328
L65345 25352
L65297 25376
L65178 25376
L65130 25352
L65107 25328
" />
</g></g>
<g style="fill:#840000; fill-opacity:0.0; 
stroke:#840000; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<path d="M64750 26500
L65750 26500
" />
</g>
<g style="fill:#006464; fill-opacity:0.0; 
stroke:#006464; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<text x="64550.000000" y="26750.000000"
textLength="2107.637795" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="end" opacity="0">OUT-</text>
<g class="stroked-text"><desc>OUT-</desc>
<path d="M62686 26226
L62781 26226
L62829 26250
L62877 26297
L62900 26392
L62900 26559
L62877 26654
L62829 26702
L62781 26726
L62686 26726
L62639 26702
L62591 26654
L62567 26559
L62567 26392
L62591 26297
L62639 26250
L62686 26226
" />
<path d="M63115 26226
L63115 26630
L63139 26678
L63162 26702
L63210 26726
L63305 26726
L63353 26702
L63377 26678
L63400 26630
L63400 26226
" />
<path d="M63567 26226
L63853 26226
" />
<path d="M63710 26726
L63710 26226
" />
<path d="M64020 26535
L64400 26535
" />
</g></g>
<g style="fill:#A90000; fill-opacity:0.0; 
stroke:#A90000; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<text x="65250.000000" y="26400.000000"
textLength="536.181102" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="middle" opacity="0">6</text>
<g class="stroked-text"><desc>6</desc>
<path d="M65345 25876
L65250 25876
L65202 25900
L65178 25923
L65130 25995
L65107 26090
L65107 26280
L65130 26328
L65154 26352
L65202 26376
L65297 26376
L65345 26352
L65369 26328
L65392 26280
L65392 26161
L65369 26114
L65345 26090
L65297 26066
L65202 26066
L65154 26090
L65130 26114
L65107 26161
" />
</g></g>
<g style="fill:#006464; fill-opacity:0.0; 
stroke:#006464; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<text x="61750.000000" y="23249.960630"
textLength="1060.000000" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="middle" opacity="0">U2</text>
<g class="stroked-text"><desc>U2</desc>
<path d="M61369 22726
L61369 23130
L61392 23178
L61416 23202
L61464 23226
L61559 23226
L61607 23202
L61630 23178
L61654 23130
L61654 22726
" />
<path d="M61869 22773
L61892 22749
L61940 22726
L62059 22726
L62107 22749
L62130 22773
L62154 22821
L62154 22868
L62130 22940
L61845 23226
L62154 23226
" />
</g><text x="61750.000000" y="24249.960630"
textLength="3202.874016" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="middle" opacity="0">HW-107</text>
<g class="stroked-text"><desc>HW-107</desc>
<path d="M60297 24226
L60297 23726
" />
<path d="M60297 23964
L60583 23964
" />
<path d="M60583 24226
L60583 23726
" />
<path d="M60773 23726
L60892 24226
L60988 23868
L61083 24226
L61202 23726
" />
<path d="M61392 24035
L61773 24035
" />
<path d="M62273 24226
L61988 24226
" />
<path d="M62130 24226
L62130 23726
L62083 23797
L62035 23845
L61988 23868
" />
<path d="M62583 23726
L62630 23726
L62678 23749
L62702 23773
L62726 23821
L62750 23916
L62750 24035
L62726 24130
L62702 24178
L62678 24202
L62630 24226
L62583 24226
L62535 24202
L62511 24178
L62488 24130
L62464 24035
L62464 23916
L62488 23821
L62511 23773
L62535 23749
L62583 23726
" />
<path d="M62916 23726
L63250 23726
L63035 24226
" />
</g></g>
</g>
<g style="fill:#006464; fill-opacity:0.0; 
stroke:#006464; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<g >
</g>
<g style="fill:#840000; fill-opacity:0.0; 
stroke:#840000; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g style="fill:#FFFFC2; fill-opacity:0.0; 
stroke:#FFFFC2; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g style="fill:#FFFFC2; fill-opacity:0.6; 
stroke:#FFFFC2; stroke-width:0.039370; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<rect x="59000.000000" y="10750.000000" width="4000.000000" height="8000.000000" rx="0.000000" />
</g>
<g style="fill:#840000; fill-opacity:0.6; 
stroke:#840000; stroke-width:0.039370; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
</g>
<g style="fill:#840000; fill-opacity:0.0; 
stroke:#840000; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<rect x="59000.000000" y="10750.000000" width="4000.000000" height="8000.000000" rx="0.000000" />
<rect x="59000.000000" y="10750.000000" width="4000.000000" height="8000.000000" rx="0.000000" />
<path d="M59000 11250
L58000 11250
" />
</g>
<g style="fill:#006464; fill-opacity:0.0; 
stroke:#006464; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<text x="59200.000000" y="11500.000000"
textLength="1488.582677" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="start" opacity="0">VCC</text>
<g class="stroked-text"><desc>VCC</desc>
<path d="M59277 10976
L59444 11476
L59610 10976
" />
<path d="M60063 11428
L60039 11452
L59968 11476
L59920 11476
L59849 11452
L59801 11404
L59777 11357
L59753 11261
L59753 11190
L59777 11095
L59801 11047
L59849 11000
L59920 10976
L59968 10976
L60039 11000
L60063 11023
" />
<path d="M60563 11428
L60539 11452
L60468 11476
L60420 11476
L60349 11452
L60301 11404
L60277 11357
L60253 11261
L60253 11190
L60277 11095
L60301 11047
L60349 11000
L60420 10976
L60468 10976
L60539 11000
L60563 11023
" />
</g></g>
<g style="fill:#A90000; fill-opacity:0.0; 
stroke:#A90000; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<text x="58500.000000" y="11150.000000"
textLength="536.181102" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="middle" opacity="0">1</text>
<g class="stroked-text"><desc>1</desc>
<path d="M58642 11126
L58357 11126
" />
<path d="M58500 11126
L58500 10626
L58452 10697
L58404 10745
L58357 10769
" />
</g></g>
<g style="fill:#840000; fill-opacity:0.0; 
stroke:#840000; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<path d="M59000 12250
L58000 12250
" />
</g>
<g style="fill:#006464; fill-opacity:0.0; 
stroke:#006464; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<text x="59200.000000" y="12500.000000"
textLength="1583.818898" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="start" opacity="0">GND</text>
<g class="stroked-text"><desc>GND</desc>
<path d="M59610 12000
L59563 11976
L59491 11976
L59420 12000
L59372 12047
L59349 12095
L59325 12190
L59325 12261
L59349 12357
L59372 12404
L59420 12452
L59491 12476
L59539 12476
L59610 12452
L59634 12428
L59634 12261
L59539 12261
" />
<path d="M59849 12476
L59849 11976
L60134 12476
L60134 11976
" />
<path d="M60372 12476
L60372 11976
L60491 11976
L60563 12000
L60610 12047
L60634 12095
L60658 12190
L60658 12261
L60634 12357
L60610 12404
L60563 12452
L60491 12476
L60372 12476
" />
</g></g>
<g style="fill:#A90000; fill-opacity:0.0; 
stroke:#A90000; stroke-width:60.000000; stroke-opacity:1; 
stroke-linecap:round; stroke-linejoin:round;">
<text x="58500.000000" y="12150.000000"
textLength="536.181102" font-size="666.653543" lengthAdjust="spacingAndGlyphs"
text-anchor="middle" opacity="0">2</text>
<g class="stroked-text"><desc>2</desc>
<path d="M58357 11673
L58380 11650
L58428 11626
L58547 11626
L58595 11650
L58619 11673
L58642 11721
L58642 11769