Sat, 07 Nov 2020 15:49:10 +0100
Add a new HP34970A blog post: new front panel PCB
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/content/hp34970a_5.rst Sat Nov 07 15:49:10 2020 +0100 @@ -0,0 +1,228 @@ +========================================== + HP 34970A Data Acquisition Unit - part 5 +========================================== + +:Author: David Douard +:Category: Electronics +:Tags: HP, 34970A, HP34970A, DMM, repair, test equipment +:series: HP 34970A repair +:series_index: 4 + + +After a loooong pause on this project, I have recently been able to work on it +again. In `the previous post in this series <{filename}/hp34970a_4.rst>`_, I've +started to implement a replacement board prototype based on a an NUCLEO board +and an SSD1322-based OLED display. + +Meanwhile, I have also almost completely described the `communication protocol +<{filename}/hp34970a_protocol.rst>`_ between the main unit and the front panel. + +In this episode, I'll describe the next steps: make the circuit diagram and the +PCB for the replacement board. + + +Circuit diagram +=============== + +The circuit diagram is rather simple: + +- an STM32 MCU (I initially chose the `STM32F303RE + <https://www.st.com/en/microcontrollers-microprocessors/stm32f303re.html>`_, + but finally used an STM32F303RD just because the former was out of stock when + I made my command at mouser.) I wanted an STM32 MCU with USB support and + reasonnable amount of flash and ram just not to have to worry about these + while writing the firmware. + +- a 8MHz crystal so the clock config used on NUCLEO boards can be used as is. + +- a step-down DC-DC converter to go from the +18V coming from the main unit + to +5V to power the OLED display and the some chips on the board; I've chosen + a `TPS560430 <https://www.ti.com/product/TPS560430>`_ from TI, + +- a 5V->3.3V LDO regulator to power the MCU, an `MCP1811AT-033 + <https://www.microchip.com/wwwproducts/en/MCP1811>`_ by Microship, + +- a level shifter for the communication lines bertween the MCU and the main + unit (5V vs. 3.3V logic). For this, instead of going through individual + Mosfet transistors, I've chosen the `LSF0204PWR + <https://www.ti.com/product/LSF0204>`_ from TI, to simplify a bit the + assembly (this chip really is not much more than a bunch of transistors in a + TSOP package). + +Here is the diagram I ended up with: + +.. image:: {static}/images/hp34970a/replacement-front-panel-schematic.svg + :alt: Schematic for a replacement front panel for the HP 34970A + :class: image-process-large-photo + +PCB design +========== + +I've used librecad_ to draw the edge profile of the PCB, after having carefully +measured the broken PCB, and a kicad plugin to generate nice keypad footprints. +(I had to adjust the generated footprint by hand to make it more usable.) + +The end result looks like: + +.. image:: {static}/images/hp34970a/front_panel_replacement_pcb_3d.png + :alt: 3D view of the PCB for a replacement front panel for the HP 34970A + :class: image-process-large-photo + +The 2 buttons on the left are the Reset and the DFU boot mode. The header on +the right is the SWD port. + +After a few days, the PCB arrived (from the usual places): + +.. image:: {static}/images/hp34970a/bare_pcb_front.jpg + :alt: the PCB for a replacement front panel for the HP 34970A + :class: image-process-large-photo + +And it fits just fine in the front panel enclosure: + +.. image:: {static}/images/hp34970a/pcb_test_fit.jpg + :alt: test fit of the PCB for a replacement front panel for the HP 34970A + :class: image-process-large-photo + + +Unfortunately, I made a few mistakes in this design (see below) bit I also made +the big mistake of swaping the marking of R11 and R12, which defined the +feedback divider setting the output voltage of the DC-DC converter. As a +result, I fried a LDO and a STM32F303RD chips! + +But once replaced correctly, is began to work: + + +.. image:: {static}/images/hp34970a/pcb_dfu_connection.jpg + :alt: test USB connection in DFU mode + :class: image-process-large-photo + +After installing the OLED display and adjusting the previous verison of the +code (which was designed for the NUCLEO F446RE board), I could compile it for +my custom board and make it run: + +.. image:: {static}/images/hp34970a/pcb_first_test.jpg + :alt: test of the display circuit + :class: image-process-large-photo + +Firmware design +=============== + +At this point, I tried to make the CDC USB driver work on the board, but I +failed to do so. I realized that the USB stack is `actually missing +<https://forums.mbed.com/t/usbdevice-support-for-stm32f3/10685>`_ for this MCU +in MBed OS 6. (update: there is a `PR +<https://github.com/ARMmbed/mbed-os/pull/13874>`_ waiting to be accepted and +merged to improve support for the STM32F303 family). + +Unfortunately, I could not make the debug pin of the SWD port work either. I +can upload a new firmware juste fine via this SWD port (in addition to the DFU +mode via USB), but I have been ablt tuse the SWO ping to get a console to see +print statements. + +In last resort, I ended up soledring thin enameled wired directly on the MCU's +pin to get access to of the available UARTs as console/debugger. + +At least this worked just fine, and I could then work on the code much more +easily. + +I also had to use my DSLogic logic analyzer to debug a few things and get to a +point that make the front panel usable: + +.. peertube:: cc6f4327-703f-42f6-8157-03cd0a987387 + +In this version of the code are many remaining problems, the biggest one being +the fact the display flickers a lot. In the code of the formware, I have a +"frame"-buffer in which the main loop draw the information to be displayed, and +a thread that copy this buffer to the actual display once every 30ms. And in +the first version display above, there was no DMA involved in tranferring the +buffer into the display unit. + +Activating the DMA did help a bit, but was not enough to get rid of the +glitches. The real problem was there was no lock around that buffer, so the +display refresher thread was making the transfer at any time, including in the +middle of the drawing proceure. Adding a lock around this buffer finally fixed +the problem. + +Another problem I had in the first version of the firmware was the fact a +keypress event could be sent to the main unit during a transmission of a packet +by this later, which mess the transmission protocol quite a bit. This problem +is now (mostly, not 100% sure there is no edge case left) fixed. + +Here is an example of this situation occuring (screenshot of a `PulseView +<https://sigrok.org/wiki/PulseView>`_ session): + +.. image:: {static}/images/hp34970a/packet-collision.png + :alt: transmission collision + :class: image-process-large-photo + +In the example above, one can see the front panel is starting a transmission +(sends a 0x66 on the RX line), but while this byte is being sent, the 0x66 +start of transmission byte is also sent by the main unit. + +Not sure yet how to fix this, either by making sure that this situation does +not occur (which is most unlikely not feasible), or by impriving the transmission +protocol handling state machine in my firmware to be aware that this may happen +and be resilient against it. + +But in the end, I've now reach a point where the firmware begins to be really +usable: + +.. peertube:: 172bf449-eba7-4429-8840-ab9b2d5398f8 + + + +Design errors +============= + +Making this circuit I made a few mistakes and errors. + +Wrong MCU +--------- + +I've not paid enough attention when I chose the MCU. The STM32F303RE I chose is +more then fine on a specifications point of view, however, since I am writing +the formware using MBedOS, I did pay attention that the USB FS stack is not yet +supported for this MCU on MBed OS 6. + +My initial idea was to provide a serial communication protocol with the front +panel to be able to upgrade the firmware easily or get the current display +content, but this is for now not possible. Will have to stick to GPIB for now. + + +No proper USB VBUS handling +--------------------------- + +I decided not to connect the VBUS power line from the USB socket, but it would +have made my life a bit easier to connect it via the usual protection, so the +testing / uploading the firmware could have been a bit easier until the front +panel wasa plugged back to the main unit. + +Even so, it would be nice to be able to upgrade the firmware without having to +plug the whole unit. + +The real problem of not having connected the VBUS signal is USB detection. If I +want to be able to implement a USB connection, I need to be able to detect +wether the USB connector is plugged, and the simplest way of doing that is to +detect the presence of the VBUS signal. + +No diagnostic/status LED +------------------------ + +I should have added a few diagnostic/status LEDs: there are plenty of GPIO left +unused on the MCU, having those visble indocators is alway handy. + +No extra UART +------------- + +I should have routed at least one unused UART from the MCU to a pair of +headers: it way easier not to populate such a header than to hack small wires +directly on the MCU tget a decent console port... + + + + + + + + +.. _librecad: https://github.com/LibreCAD/LibreCAD
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/content/images/hp34970a/protocol_rx.svg Sat Nov 07 15:49:10 2020 +0100 @@ -0,0 +1,348 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:ns0="http://timink.sourceforge.net/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="136.72174mm" + height="28.748888mm" + viewBox="0 0 484.44711 101.86614" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="protocol_rx.svg"> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="2.5761326" + inkscape:cx="242.22356" + inkscape:cy="50.933069" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1362" + inkscape:window-height="729" + inkscape:window-x="0" + inkscape:window-y="18" + inkscape:window-maximized="0" + fit-margin-top="10" + fit-margin-left="10" + fit-margin-right="10" + fit-margin-bottom="10" /> + <defs + id="defs4" /> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:groupmode="layer" + inkscape:label="Layer 1" + transform="translate(-167.33211,-405.91308)"> + <g + transform="translate(-173.65385,43.846154)" + ns0:usrparams="breakTimeWidth:2.0px;edgeTimeWidth:2.0px;originDistX:0.0px;originDistY:20.0px;placementMethod:homogeneous;signalHeight:10.0px;unitTimeWidth:10.0px" + ns0:signalclusterspec="---- XX -- XX -- XX -- XX -- XX -- --[yy]-- -- XX -- XX --\n---- -- XX -- XX -- XX -- XX -- XX --[yy]-- -- -- XX -- --" + ns0:version="0.2.1/1.1" + id="g3831"> + <g + inkscape:label="signalgroup0" + transform="translate(390,408)" + id="g3833"> + <path + id="path4262" + style="fill:#000000;fill-opacity:0.25;stroke:none" + inkscape:label="shadingpath" + d="m 0,0 m 260,-5 1,5 19,0 1,-5 -1,-5 -19,0 z" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#000000" + id="path3998" + inkscape:label="signalpath3" + d="m 0,0 m 0,-5 40,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 39,0 1,5 19,0 1,-5 39,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#000000" + id="path4000" + inkscape:label="signalpath2" + d="m 0,0 m 0,-5 40,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 39,0 1,-5 19,0 1,5 39,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#000000" + id="path3837" + inkscape:label="signalpath1" + d="m 0,0 m 0,-5 40,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 39,0 1,-5 19,0 1,5 39,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#000000" + id="path3839" + inkscape:label="signalpath0" + d="m 0,0 m 0,-5 40,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 39,0 1,5 19,0 1,-5 39,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0" + inkscape:connector-curvature="0" /> + </g> + <g + inkscape:label="signalgroup1" + transform="translate(390,428)" + id="g3841"> + <path + id="path4269" + style="fill:#000000;fill-opacity:0.25;stroke:none" + inkscape:label="shadingpath" + d="m 0,0 m 260,-5 1,5 19,0 1,-5 -1,-5 -19,0 z" + inkscape:connector-curvature="0" /> + <path + id="path4271" + style="fill:none;stroke:#000000" + inkscape:label="signalpath3" + d="m 0,0 m 0,-5 60,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 59,0 1,5 19,0 1,-5 39,0" + inkscape:connector-curvature="0" /> + <path + id="path4273" + style="fill:none;stroke:#000000" + inkscape:label="signalpath2" + d="m 0,0 m 0,-5 60,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 59,0 1,-5 19,0 1,5 39,0" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#000000" + id="path3845" + inkscape:label="signalpath1" + d="m 0,0 m 0,-5 60,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,-5 19,0 1,5 59,0 1,5 19,0 1,-5 39,0" + inkscape:connector-curvature="0" /> + <path + style="fill:none;stroke:#000000" + id="path3847" + inkscape:label="signalpath0" + d="m 0,0 m 0,-5 60,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,-5 19,0 1,5 19,0 1,5 19,0 1,-5 59,0 1,-5 19,0 1,5 39,0" + inkscape:connector-curvature="0" /> + </g> + </g> + <text + xml:space="preserve" + style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="257.43564" + y="449.4136" + id="text3931" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan3933" + x="257.43564" + y="449.4136">0x66</tspan></text> + <text + sodipodi:linespacing="125%" + id="text3947" + y="469.40298" + x="277.62897" + style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve"><tspan + y="469.40298" + x="277.62897" + id="tspan3949" + sodipodi:role="line">0x99</tspan></text> + <text + xml:space="preserve" + style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="317.40372" + y="469.40298" + id="text3951" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan3953" + x="317.40372" + y="469.40298">0x00</tspan></text> + <text + sodipodi:linespacing="125%" + id="text3959" + y="449.4136" + x="298.23026" + style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve"><tspan + y="449.4136" + x="298.23026" + id="tspan3961" + sodipodi:role="line">CMD</tspan></text> + <text + xml:space="preserve" + style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="339.63681" + y="449.4136" + id="text3963" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan3965" + x="339.63681" + y="449.4136">LEN</tspan></text> + <text + sodipodi:linespacing="125%" + id="text3967" + y="469.40298" + x="357.38245" + style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve"><tspan + y="469.40298" + x="357.38245" + id="tspan3969" + sodipodi:role="line">0x00</tspan></text> + <text + sodipodi:linespacing="125%" + id="text3971" + y="449.4136" + x="381.65527" + style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve"><tspan + y="449.4136" + x="381.65527" + id="tspan3973" + sodipodi:role="line">D0</tspan></text> + <text + xml:space="preserve" + style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="422.04196" + y="449.4136" + id="text4335" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan4337" + x="422.04196" + y="449.4136">D1</tspan></text> + <text + sodipodi:linespacing="125%" + id="text4339" + y="447.3056" + x="483.4212" + style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve"><tspan + y="447.3056" + x="483.4212" + id="tspan4341" + sodipodi:role="line">...</tspan></text> + <text + xml:space="preserve" + style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="480.78622" + y="449.4136" + id="text4343" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan4345" + x="480.78622" + y="449.4136" /></text> + <text + sodipodi:linespacing="125%" + id="text4347" + y="449.4136" + x="541.00543" + style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve"><tspan + y="449.4136" + x="541.00543" + id="tspan4349" + sodipodi:role="line">Dn</tspan></text> + <text + xml:space="preserve" + style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="577.25098" + y="449.4136" + id="text4351" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan4353" + x="577.25098" + y="449.4136">0x55</tspan></text> + <text + xml:space="preserve" + style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="397.03174" + y="469.40298" + id="text4355" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan4357" + x="397.03174" + y="469.40298">0x00</tspan></text> + <text + sodipodi:linespacing="125%" + id="text4359" + y="469.40298" + x="437.27719" + style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve"><tspan + y="469.40298" + x="437.27719" + id="tspan4361" + sodipodi:role="line">0x00</tspan></text> + <text + xml:space="preserve" + style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="437.27719" + y="469.40298" + id="text4363" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan4365" + x="437.27719" + y="469.40298">0x00</tspan></text> + <text + xml:space="preserve" + style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="483.4212" + y="467.1734" + id="text4367" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan4369" + x="483.4212" + y="467.1734">...</tspan></text> + <text + sodipodi:linespacing="125%" + id="text4371" + y="469.40298" + x="557.41742" + style="font-style:normal;font-weight:normal;font-size:7.5px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve"><tspan + y="469.40298" + x="557.41742" + id="tspan4373" + sodipodi:role="line">0x00</tspan></text> + <text + xml:space="preserve" + style="font-style:normal;font-weight:normal;font-size:8px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="202.04839" + y="448.63391" + id="text4375" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan4377" + x="202.04839" + y="448.63391">Rx</tspan></text> + <text + xml:space="preserve" + style="font-style:normal;font-weight:normal;font-size:8px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + x="202.78862" + y="468.87061" + id="text4379" + sodipodi:linespacing="125%"><tspan + sodipodi:role="line" + id="tspan4381" + x="202.78862" + y="468.87061">Tx</tspan></text> + </g> +</svg>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/content/images/hp34970a/replacement-front-panel-schematic.svg Sat Nov 07 15:49:10 2020 +0100 @@ -0,0 +1,30064 @@ +<?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:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + version="1.1" + width="29.700220cm" height="21.000720cm" viewBox="0 0 116930 82680"> +<title>SVG Picture created as hp34970.svg date 2020/11/06 00:06:37 </title> + <desc>Picture generated by Eeschema-SVG </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:-10; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:-10; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="69690" y="65360" width="42520" height="12600" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="3940" y="3940" width="109050" height="74800" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="4720" y="4720" width="107490" height="73240" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M23620 4720 +L23620 3940 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M43310 4720 +L43310 3940 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M62990 4720 +L62990 3940 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M82680 4720 +L82680 3940 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M102360 4720 +L102360 3940 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="13780" y="4580" +textLength="550" font-size="680" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">1</text> +<path d="M14190 4560 +L13900 4560 +" /> +<path d="M14050 4560 +L14050 4050 +L14000 4120 +L13950 4170 +L13900 4190 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="33460" y="4580" +textLength="550" font-size="680" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">2</text> +<path d="M33580 4090 +L33610 4070 +L33660 4050 +L33780 4050 +L33830 4070 +L33850 4090 +L33870 4140 +L33870 4190 +L33850 4260 +L33560 4560 +L33870 4560 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="53150" y="4580" +textLength="550" font-size="680" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">3</text> +<path d="M53250 4050 +L53560 4050 +L53390 4240 +L53470 4240 +L53520 4260 +L53540 4290 +L53560 4340 +L53560 4460 +L53540 4510 +L53520 4530 +L53470 4560 +L53320 4560 +L53270 4530 +L53250 4510 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="72830" y="4580" +textLength="550" font-size="680" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">4</text> +<path d="M73200 4220 +L73200 4560 +" /> +<path d="M73070 4020 +L72950 4390 +L73270 4390 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="92520" y="4580" +textLength="550" font-size="680" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">5</text> +<path d="M92910 4050 +L92670 4050 +L92640 4290 +L92670 4260 +L92720 4240 +L92840 4240 +L92890 4260 +L92910 4290 +L92930 4340 +L92930 4460 +L92910 4510 +L92890 4530 +L92840 4560 +L92720 4560 +L92670 4530 +L92640 4510 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="112200" y="4580" +textLength="550" font-size="680" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">6</text> +<path d="M112570 4050 +L112470 4050 +L112420 4070 +L112400 4090 +L112350 4170 +L112320 4260 +L112320 4460 +L112350 4510 +L112370 4530 +L112420 4560 +L112520 4560 +L112570 4530 +L112590 4510 +L112610 4460 +L112610 4340 +L112590 4290 +L112570 4260 +L112520 4240 +L112420 4240 +L112370 4260 +L112350 4290 +L112320 4340 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M23620 77960 +L23620 78740 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M43310 77960 +L43310 78740 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M62990 77960 +L62990 78740 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M82680 77960 +L82680 78740 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M102360 77960 +L102360 78740 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="13780" y="78600" +textLength="550" font-size="680" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">1</text> +<path d="M14190 78580 +L13900 78580 +" /> +<path d="M14050 78580 +L14050 78070 +L14000 78140 +L13950 78190 +L13900 78210 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="33460" y="78600" +textLength="550" font-size="680" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">2</text> +<path d="M33580 78110 +L33610 78090 +L33660 78070 +L33780 78070 +L33830 78090 +L33850 78110 +L33870 78160 +L33870 78210 +L33850 78280 +L33560 78580 +L33870 78580 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="53150" y="78600" +textLength="550" font-size="680" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">3</text> +<path d="M53250 78070 +L53560 78070 +L53390 78260 +L53470 78260 +L53520 78280 +L53540 78310 +L53560 78360 +L53560 78480 +L53540 78530 +L53520 78550 +L53470 78580 +L53320 78580 +L53270 78550 +L53250 78530 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="72830" y="78600" +textLength="550" font-size="680" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">4</text> +<path d="M73200 78240 +L73200 78580 +" /> +<path d="M73070 78040 +L72950 78410 +L73270 78410 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="92520" y="78600" +textLength="550" font-size="680" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">5</text> +<path d="M92910 78070 +L92670 78070 +L92640 78310 +L92670 78280 +L92720 78260 +L92840 78260 +L92890 78280 +L92910 78310 +L92930 78360 +L92930 78480 +L92910 78530 +L92890 78550 +L92840 78580 +L92720 78580 +L92670 78550 +L92640 78530 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="112200" y="78600" +textLength="550" font-size="680" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">6</text> +<path d="M112570 78070 +L112470 78070 +L112420 78090 +L112400 78110 +L112350 78190 +L112320 78280 +L112320 78480 +L112350 78530 +L112370 78550 +L112420 78580 +L112520 78580 +L112570 78550 +L112590 78530 +L112610 78480 +L112610 78360 +L112590 78310 +L112570 78280 +L112520 78260 +L112420 78260 +L112370 78280 +L112350 78310 +L112320 78360 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M3940 23620 +L4720 23620 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M3940 43310 +L4720 43310 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M3940 62990 +L4720 62990 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="4330" y="14030" +textLength="500" font-size="680" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">A</text> +<path d="M4200 13860 +L4450 13860 +" /> +<path d="M4160 14010 +L4330 13500 +L4500 14010 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="4330" y="33710" +textLength="570" font-size="680" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">B</text> +<path d="M4360 33420 +L4430 33440 +L4460 33470 +L4480 33520 +L4480 33590 +L4460 33640 +L4430 33660 +L4390 33690 +L4190 33690 +L4190 33180 +L4360 33180 +L4410 33200 +L4430 33220 +L4460 33270 +L4460 33320 +L4430 33370 +L4410 33390 +L4360 33420 +L4190 33420 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="4330" y="53400" +textLength="570" font-size="680" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">C</text> +<path d="M4480 53330 +L4460 53350 +L4390 53380 +L4340 53380 +L4260 53350 +L4220 53300 +L4190 53250 +L4170 53160 +L4170 53080 +L4190 52990 +L4220 52940 +L4260 52890 +L4340 52870 +L4390 52870 +L4460 52890 +L4480 52910 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="4330" y="73080" +textLength="570" font-size="680" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">D</text> +<path d="M4190 73060 +L4190 72550 +L4310 72550 +L4390 72570 +L4430 72620 +L4460 72670 +L4480 72760 +L4480 72840 +L4460 72930 +L4430 72980 +L4390 73030 +L4310 73060 +L4190 73060 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M112990 23620 +L112210 23620 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M112990 43310 +L112210 43310 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M112990 62990 +L112210 62990 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="112600" y="14030" +textLength="500" font-size="680" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">A</text> +<path d="M112470 13860 +L112720 13860 +" /> +<path d="M112430 14010 +L112600 13500 +L112770 14010 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="112600" y="33710" +textLength="570" font-size="680" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">B</text> +<path d="M112630 33420 +L112700 33440 +L112730 33470 +L112750 33520 +L112750 33590 +L112730 33640 +L112700 33660 +L112660 33690 +L112460 33690 +L112460 33180 +L112630 33180 +L112680 33200 +L112700 33220 +L112730 33270 +L112730 33320 +L112700 33370 +L112680 33390 +L112630 33420 +L112460 33420 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="112600" y="53400" +textLength="570" font-size="680" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">C</text> +<path d="M112750 53330 +L112730 53350 +L112660 53380 +L112610 53380 +L112530 53350 +L112490 53300 +L112460 53250 +L112440 53160 +L112440 53080 +L112460 52990 +L112490 52940 +L112530 52890 +L112610 52870 +L112660 52870 +L112730 52890 +L112750 52910 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="112600" y="73080" +textLength="570" font-size="680" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">D</text> +<path d="M112460 73060 +L112460 72550 +L112580 72550 +L112660 72570 +L112700 72620 +L112730 72670 +L112750 72760 +L112750 72840 +L112730 72930 +L112700 72980 +L112660 73030 +L112580 73060 +L112460 73060 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="78740" y="76320" +textLength="8710" font-size="780" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">Date: 2020-09-24</text> +<path d="M78910 76290 +L78910 75700 +L79050 75700 +L79130 75730 +L79190 75790 +L79210 75840 +L79240 75950 +L79240 76040 +L79210 76150 +L79190 76210 +L79130 76260 +L79050 76290 +L78910 76290 +" /> +<path d="M79750 76290 +L79750 75980 +L79720 75930 +L79660 75900 +L79550 75900 +L79500 75930 +" /> +<path d="M79750 76260 +L79690 76290 +L79550 76290 +L79500 76260 +L79470 76210 +L79470 76150 +L79500 76100 +L79550 76070 +L79690 76070 +L79750 76040 +" /> +<path d="M79950 75900 +L80170 75900 +" /> +<path d="M80030 75700 +L80030 76210 +L80060 76260 +L80110 76290 +L80170 76290 +" /> +<path d="M80590 76260 +L80540 76290 +L80420 76290 +L80370 76260 +L80340 76210 +L80340 75980 +L80370 75930 +L80420 75900 +L80540 75900 +L80590 75930 +L80620 75980 +L80620 76040 +L80340 76100 +" /> +<path d="M80870 76240 +L80900 76260 +L80870 76290 +L80840 76260 +L80870 76240 +L80870 76290 +" /> +<path d="M80870 75930 +L80900 75950 +L80870 75980 +L80840 75950 +L80870 75930 +L80870 75980 +" /> +<path d="M81570 75760 +L81600 75730 +L81660 75700 +L81800 75700 +L81860 75730 +L81880 75760 +L81910 75810 +L81910 75870 +L81880 75950 +L81550 76290 +L81910 76290 +" /> +<path d="M82280 75700 +L82330 75700 +L82390 75730 +L82420 75760 +L82450 75810 +L82470 75930 +L82470 76070 +L82450 76180 +L82420 76240 +L82390 76260 +L82330 76290 +L82280 76290 +L82220 76260 +L82190 76240 +L82160 76180 +L82140 76070 +L82140 75930 +L82160 75810 +L82190 75760 +L82220 75730 +L82280 75700 +" /> +<path d="M82700 75760 +L82730 75730 +L82780 75700 +L82920 75700 +L82980 75730 +L83010 75760 +L83040 75810 +L83040 75870 +L83010 75950 +L82670 76290 +L83040 76290 +" /> +<path d="M83400 75700 +L83460 75700 +L83510 75730 +L83540 75760 +L83570 75810 +L83600 75930 +L83600 76070 +L83570 76180 +L83540 76240 +L83510 76260 +L83460 76290 +L83400 76290 +L83340 76260 +L83320 76240 +L83290 76180 +L83260 76070 +L83260 75930 +L83290 75810 +L83320 75760 +L83340 75730 +L83400 75700 +" /> +<path d="M83850 76070 +L84300 76070 +" /> +<path d="M84690 75700 +L84750 75700 +L84810 75730 +L84830 75760 +L84860 75810 +L84890 75930 +L84890 76070 +L84860 76180 +L84830 76240 +L84810 76260 +L84750 76290 +L84690 76290 +L84640 76260 +L84610 76240 +L84580 76180 +L84550 76070 +L84550 75930 +L84580 75810 +L84610 75760 +L84640 75730 +L84690 75700 +" /> +<path d="M85170 76290 +L85280 76290 +L85340 76260 +L85370 76240 +L85420 76150 +L85450 76040 +L85450 75810 +L85420 75760 +L85400 75730 +L85340 75700 +L85230 75700 +L85170 75730 +L85140 75760 +L85110 75810 +L85110 75950 +L85140 76010 +L85170 76040 +L85230 76070 +L85340 76070 +L85400 76040 +L85420 76010 +L85450 75950 +" /> +<path d="M85700 76070 +L86150 76070 +" /> +<path d="M86410 75760 +L86440 75730 +L86490 75700 +L86630 75700 +L86690 75730 +L86720 75760 +L86740 75810 +L86740 75870 +L86720 75950 +L86380 76290 +L86740 76290 +" /> +<path d="M87250 75900 +L87250 76290 +" /> +<path d="M87110 75670 +L86970 76100 +L87330 76100 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M69690 76580 +L112210 76580 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="70080" y="77420" +textLength="15910" font-size="780" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">KiCad E.D.A. kicad 5.1.8+dfsg1-1</text> +<path d="M70250 77390 +L70250 76800 +" /> +<path d="M70580 77390 +L70330 77050 +" /> +<path d="M70580 76800 +L70250 77140 +" /> +<path d="M70840 77390 +L70840 77000 +" /> +<path d="M70840 76800 +L70810 76830 +L70840 76860 +L70860 76830 +L70840 76800 +L70840 76860 +" /> +<path d="M71450 77340 +L71430 77360 +L71340 77390 +L71290 77390 +L71200 77360 +L71140 77310 +L71120 77250 +L71090 77140 +L71090 77050 +L71120 76940 +L71140 76890 +L71200 76830 +L71290 76800 +L71340 76800 +L71430 76830 +L71450 76860 +" /> +<path d="M71960 77390 +L71960 77080 +L71930 77030 +L71880 77000 +L71760 77000 +L71710 77030 +" /> +<path d="M71960 77360 +L71900 77390 +L71760 77390 +L71710 77360 +L71680 77310 +L71680 77250 +L71710 77200 +L71760 77170 +L71900 77170 +L71960 77140 +" /> +<path d="M72490 77390 +L72490 76800 +" /> +<path d="M72490 77360 +L72440 77390 +L72320 77390 +L72270 77360 +L72240 77340 +L72210 77280 +L72210 77110 +L72240 77050 +L72270 77030 +L72320 77000 +L72440 77000 +L72490 77030 +" /> +<path d="M73220 77080 +L73420 77080 +" /> +<path d="M73500 77390 +L73220 77390 +L73220 76800 +L73500 76800 +" /> +<path d="M73760 77340 +L73790 77360 +L73760 77390 +L73730 77360 +L73760 77340 +L73760 77390 +" /> +<path d="M74040 77390 +L74040 76800 +L74180 76800 +L74260 76830 +L74320 76890 +L74350 76940 +L74380 77050 +L74380 77140 +L74350 77250 +L74320 77310 +L74260 77360 +L74180 77390 +L74040 77390 +" /> +<path d="M74630 77340 +L74660 77360 +L74630 77390 +L74600 77360 +L74630 77340 +L74630 77390 +" /> +<path d="M74880 77220 +L75160 77220 +" /> +<path d="M74830 77390 +L75020 76800 +L75220 77390 +" /> +<path d="M75420 77340 +L75440 77360 +L75420 77390 +L75390 77360 +L75420 77340 +L75420 77390 +" /> +<path d="M76600 77390 +L76600 76800 +" /> +<path d="M76650 77170 +L76820 77390 +" /> +<path d="M76820 77000 +L76600 77220 +" /> +<path d="M77070 77390 +L77070 77000 +" /> +<path d="M77070 76800 +L77040 76830 +L77070 76860 +L77100 76830 +L77070 76800 +L77070 76860 +" /> +<path d="M77610 77360 +L77550 77390 +L77440 77390 +L77380 77360 +L77350 77340 +L77330 77280 +L77330 77110 +L77350 77050 +L77380 77030 +L77440 77000 +L77550 77000 +L77610 77030 +" /> +<path d="M78110 77390 +L78110 77080 +L78080 77030 +L78030 77000 +L77920 77000 +L77860 77030 +" /> +<path d="M78110 77360 +L78060 77390 +L77920 77390 +L77860 77360 +L77830 77310 +L77830 77250 +L77860 77200 +L77920 77170 +L78060 77170 +L78110 77140 +" /> +<path d="M78650 77390 +L78650 76800 +" /> +<path d="M78650 77360 +L78590 77390 +L78480 77390 +L78420 77360 +L78390 77340 +L78370 77280 +L78370 77110 +L78390 77050 +L78420 77030 +L78480 77000 +L78590 77000 +L78650 77030 +" /> +<path d="M79660 76800 +L79380 76800 +L79350 77080 +L79380 77050 +L79430 77030 +L79570 77030 +L79630 77050 +L79660 77080 +L79690 77140 +L79690 77280 +L79660 77340 +L79630 77360 +L79570 77390 +L79430 77390 +L79380 77360 +L79350 77340 +" /> +<path d="M79940 77340 +L79970 77360 +L79940 77390 +L79910 77360 +L79940 77340 +L79940 77390 +" /> +<path d="M80530 77390 +L80190 77390 +" /> +<path d="M80360 77390 +L80360 76800 +L80300 76890 +L80250 76940 +L80190 76970 +" /> +<path d="M80780 77340 +L80810 77360 +L80780 77390 +L80750 77360 +L80780 77340 +L80780 77390 +" /> +<path d="M81150 77050 +L81090 77030 +L81060 77000 +L81030 76940 +L81030 76910 +L81060 76860 +L81090 76830 +L81150 76800 +L81260 76800 +L81320 76830 +L81340 76860 +L81370 76910 +L81370 76940 +L81340 77000 +L81320 77030 +L81260 77050 +L81150 77050 +L81090 77080 +L81060 77110 +L81030 77170 +L81030 77280 +L81060 77340 +L81090 77360 +L81150 77390 +L81260 77390 +L81320 77360 +L81340 77340 +L81370 77280 +L81370 77170 +L81340 77110 +L81320 77080 +L81260 77050 +" /> +<path d="M81620 77170 +L82070 77170 +" /> +<path d="M81850 77390 +L81850 76940 +" /> +<path d="M82610 77390 +L82610 76800 +" /> +<path d="M82610 77360 +L82550 77390 +L82440 77390 +L82380 77360 +L82350 77340 +L82330 77280 +L82330 77110 +L82350 77050 +L82380 77030 +L82440 77000 +L82550 77000 +L82610 77030 +" /> +<path d="M82800 77000 +L83030 77000 +" /> +<path d="M82890 77390 +L82890 76890 +L82920 76830 +L82970 76800 +L83030 76800 +" /> +<path d="M83200 77360 +L83250 77390 +L83370 77390 +L83420 77360 +L83450 77310 +L83450 77280 +L83420 77220 +L83370 77200 +L83280 77200 +L83230 77170 +L83200 77110 +L83200 77080 +L83230 77030 +L83280 77000 +L83370 77000 +L83420 77030 +" /> +<path d="M83960 77000 +L83960 77480 +L83930 77530 +L83900 77560 +L83840 77590 +L83760 77590 +L83700 77560 +" /> +<path d="M83960 77360 +L83900 77390 +L83790 77390 +L83730 77360 +L83700 77340 +L83680 77280 +L83680 77110 +L83700 77050 +L83730 77030 +L83790 77000 +L83900 77000 +L83960 77030 +" /> +<path d="M84550 77390 +L84210 77390 +" /> +<path d="M84380 77390 +L84380 76800 +L84320 76890 +L84270 76940 +L84210 76970 +" /> +<path d="M84800 77170 +L85250 77170 +" /> +<path d="M85840 77390 +L85500 77390 +" /> +<path d="M85670 77390 +L85670 76800 +L85610 76890 +L85560 76940 +L85500 76970 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M69690 75400 +L112210 75400 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:120; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="103540" y="76320" +textLength="2340" font-size="780" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">Rev: </text> +<path d="M104090 76290 +L103890 76010 +" /> +<path d="M103750 76290 +L103750 75700 +L103980 75700 +L104030 75730 +L104060 75760 +L104090 75810 +L104090 75900 +L104060 75950 +L104030 75980 +L103980 76010 +L103750 76010 +" /> +<path d="M104570 76260 +L104510 76290 +L104400 76290 +L104340 76260 +L104320 76210 +L104320 75980 +L104340 75930 +L104400 75900 +L104510 75900 +L104570 75930 +L104600 75980 +L104600 76040 +L104320 76100 +" /> +<path d="M104790 75900 +L104930 76290 +L105070 75900 +" /> +<path d="M105300 76240 +L105330 76260 +L105300 76290 +L105270 76260 +L105300 76240 +L105300 76290 +" /> +<path d="M105300 75930 +L105330 75950 +L105300 75980 +L105270 75950 +L105300 75930 +L105300 75980 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="70080" y="76320" +textLength="3780" font-size="780" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">Size: A4</text> +<path d="M70220 76260 +L70300 76290 +L70440 76290 +L70500 76260 +L70530 76240 +L70550 76180 +L70550 76120 +L70530 76070 +L70500 76040 +L70440 76010 +L70330 75980 +L70270 75950 +L70250 75930 +L70220 75870 +L70220 75810 +L70250 75760 +L70270 75730 +L70330 75700 +L70470 75700 +L70550 75730 +" /> +<path d="M70810 76290 +L70810 75900 +" /> +<path d="M70810 75700 +L70780 75730 +L70810 75760 +L70840 75730 +L70810 75700 +L70810 75760 +" /> +<path d="M71030 75900 +L71340 75900 +L71030 76290 +L71340 76290 +" /> +<path d="M71790 76260 +L71730 76290 +L71620 76290 +L71570 76260 +L71540 76210 +L71540 75980 +L71570 75930 +L71620 75900 +L71730 75900 +L71790 75930 +L71820 75980 +L71820 76040 +L71540 76100 +" /> +<path d="M72070 76240 +L72100 76260 +L72070 76290 +L72040 76260 +L72070 76240 +L72070 76290 +" /> +<path d="M72070 75930 +L72100 75950 +L72070 75980 +L72040 75950 +L72070 75930 +L72070 75980 +" /> +<path d="M72770 76120 +L73060 76120 +" /> +<path d="M72720 76290 +L72910 75700 +L73110 76290 +" /> +<path d="M73560 75900 +L73560 76290 +" /> +<path d="M73420 75670 +L73280 76100 +L73650 76100 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="103540" y="77420" +textLength="3350" font-size="780" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">Id: 1/1</text> +<path d="M103710 77390 +L103710 76800 +" /> +<path d="M104240 77390 +L104240 76800 +" /> +<path d="M104240 77360 +L104180 77390 +L104070 77390 +L104010 77360 +L103990 77340 +L103960 77280 +L103960 77110 +L103990 77050 +L104010 77030 +L104070 77000 +L104180 77000 +L104240 77030 +" /> +<path d="M104520 77340 +L104550 77360 +L104520 77390 +L104490 77360 +L104520 77340 +L104520 77390 +" /> +<path d="M104520 77030 +L104550 77050 +L104520 77080 +L104490 77050 +L104520 77030 +L104520 77080 +" /> +<path d="M105560 77390 +L105220 77390 +" /> +<path d="M105390 77390 +L105390 76800 +L105340 76890 +L105280 76940 +L105220 76970 +" /> +<path d="M106230 76770 +L105730 77530 +" /> +<path d="M106740 77390 +L106400 77390 +" /> +<path d="M106570 77390 +L106570 76800 +L106520 76890 +L106460 76940 +L106400 76970 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M69690 73820 +L112210 73820 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:160; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="70080" y="74920" +textLength="17330" font-size="1050" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">Title: HP34970A Front Panel</text> +<path d="M70360 74090 +L70810 74090 +" /> +<path d="M70480 74880 +L70580 74090 +" /> +<path d="M70970 74880 +L71040 74360 +" /> +<path d="M71070 74090 +L71030 74130 +L71060 74170 +L71110 74130 +L71070 74090 +L71060 74170 +" /> +<path d="M71300 74360 +L71600 74360 +" /> +<path d="M71450 74090 +L71360 74770 +L71390 74840 +L71460 74880 +L71540 74880 +" /> +<path d="M71910 74880 +L71840 74840 +L71820 74770 +L71900 74090 +" /> +<path d="M72520 74840 +L72440 74880 +L72290 74880 +L72220 74840 +L72190 74770 +L72230 74470 +L72280 74390 +L72360 74360 +L72510 74360 +L72580 74390 +L72610 74470 +L72600 74540 +L72210 74620 +" /> +<path d="M72900 74810 +L72930 74840 +L72890 74880 +L72860 74840 +L72900 74810 +L72890 74880 +" /> +<path d="M72950 74390 +L72990 74430 +L72940 74470 +L72910 74430 +L72950 74390 +L72940 74470 +" /> +<path d="M73870 74880 +L73970 74090 +" /> +<path d="M73920 74470 +L74370 74470 +" /> +<path d="M74320 74880 +L74420 74090 +" /> +<path d="M74700 74880 +L74800 74090 +L75100 74090 +L75170 74130 +L75200 74170 +L75230 74240 +L75220 74360 +L75170 74430 +L75130 74470 +L75050 74510 +L74750 74510 +" /> +<path d="M75510 74090 +L76000 74090 +L75700 74390 +L75810 74390 +L75880 74430 +L75920 74470 +L75940 74540 +L75920 74730 +L75870 74810 +L75830 74840 +L75750 74880 +L75530 74880 +L75460 74840 +L75420 74810 +" /> +<path d="M76640 74360 +L76580 74880 +" /> +<path d="M76490 74050 +L76240 74620 +L76720 74620 +" /> +<path d="M77030 74880 +L77180 74880 +L77260 74840 +L77300 74810 +L77390 74690 +L77450 74540 +L77490 74240 +L77460 74170 +L77430 74130 +L77350 74090 +L77200 74090 +L77120 74130 +L77080 74170 +L77040 74240 +L77010 74430 +L77040 74510 +L77070 74540 +L77140 74580 +L77290 74580 +L77370 74540 +L77420 74510 +L77460 74430 +" /> +<path d="M77770 74090 +L78300 74090 +L77860 74880 +" /> +<path d="M78750 74090 +L78820 74090 +L78890 74130 +L78930 74170 +L78950 74240 +L78970 74390 +L78950 74580 +L78890 74730 +L78850 74810 +L78800 74840 +L78720 74880 +L78650 74880 +L78580 74840 +L78540 74810 +L78520 74730 +L78500 74580 +L78520 74390 +L78580 74240 +L78620 74170 +L78670 74130 +L78750 74090 +" /> +<path d="M79240 74660 +L79620 74660 +" /> +<path d="M79140 74880 +L79500 74090 +L79660 74880 +" /> +<path d="M80840 74470 +L80580 74470 +" /> +<path d="M80530 74880 +L80630 74090 +L81000 74090 +" /> +<path d="M81210 74880 +L81270 74360 +" /> +<path d="M81250 74510 +L81300 74430 +L81340 74390 +L81420 74360 +L81500 74360 +" /> +<path d="M81810 74880 +L81740 74840 +L81700 74810 +L81680 74730 +L81700 74510 +L81750 74430 +L81790 74390 +L81870 74360 +L81990 74360 +L82060 74390 +L82090 74430 +L82120 74510 +L82090 74730 +L82040 74810 +L82000 74840 +L81920 74880 +L81810 74880 +" /> +<path d="M82480 74360 +L82410 74880 +" /> +<path d="M82470 74430 +L82510 74390 +L82590 74360 +L82700 74360 +L82770 74390 +L82800 74470 +L82750 74880 +" /> +<path d="M83080 74360 +L83380 74360 +" /> +<path d="M83220 74090 +L83140 74770 +L83170 74840 +L83240 74880 +L83310 74880 +" /> +<path d="M84180 74880 +L84280 74090 +L84580 74090 +L84650 74130 +L84680 74170 +L84710 74240 +L84700 74360 +L84650 74430 +L84610 74470 +L84530 74510 +L84230 74510 +" /> +<path d="M85310 74880 +L85360 74470 +L85330 74390 +L85260 74360 +L85110 74360 +L85030 74390 +" /> +<path d="M85310 74840 +L85230 74880 +L85040 74880 +L84970 74840 +L84940 74770 +L84950 74690 +L85000 74620 +L85080 74580 +L85270 74580 +L85350 74540 +" /> +<path d="M85750 74360 +L85680 74880 +" /> +<path d="M85740 74430 +L85780 74390 +L85860 74360 +L85970 74360 +L86040 74390 +L86070 74470 +L86020 74880 +" /> +<path d="M86700 74840 +L86620 74880 +L86470 74880 +L86400 74840 +L86370 74770 +L86410 74470 +L86460 74390 +L86540 74360 +L86690 74360 +L86760 74390 +L86790 74470 +L86780 74540 +L86390 74620 +" /> +<path d="M87190 74880 +L87120 74840 +L87090 74770 +L87170 74090 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="70080" y="73400" +textLength="8220" font-size="780" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">File: hp34970.sch</text> +<path d="M70440 73060 +L70250 73060 +" /> +<path d="M70250 73370 +L70250 72780 +L70530 72780 +" /> +<path d="M70750 73370 +L70750 72980 +" /> +<path d="M70750 72780 +L70720 72810 +L70750 72840 +L70780 72810 +L70750 72780 +L70750 72840 +" /> +<path d="M71120 73370 +L71060 73340 +L71030 73290 +L71030 72780 +" /> +<path d="M71570 73340 +L71510 73370 +L71400 73370 +L71340 73340 +L71310 73290 +L71310 73060 +L71340 73010 +L71400 72980 +L71510 72980 +L71570 73010 +L71590 73060 +L71590 73120 +L71310 73180 +" /> +<path d="M71850 73320 +L71880 73340 +L71850 73370 +L71820 73340 +L71850 73320 +L71850 73370 +" /> +<path d="M71850 73010 +L71880 73030 +L71850 73060 +L71820 73030 +L71850 73010 +L71850 73060 +" /> +<path d="M72580 73370 +L72580 72780 +" /> +<path d="M72830 73370 +L72830 73060 +L72800 73010 +L72750 72980 +L72660 72980 +L72610 73010 +L72580 73030 +" /> +<path d="M73110 72980 +L73110 73570 +" /> +<path d="M73110 73010 +L73170 72980 +L73280 72980 +L73340 73010 +L73360 73030 +L73390 73090 +L73390 73260 +L73360 73320 +L73340 73340 +L73280 73370 +L73170 73370 +L73110 73340 +" /> +<path d="M73590 72780 +L73950 72780 +L73760 73010 +L73840 73010 +L73900 73030 +L73930 73060 +L73950 73120 +L73950 73260 +L73930 73320 +L73900 73340 +L73840 73370 +L73670 73370 +L73620 73340 +L73590 73320 +" /> +<path d="M74460 72980 +L74460 73370 +" /> +<path d="M74320 72750 +L74180 73180 +L74540 73180 +" /> +<path d="M74800 73370 +L74910 73370 +L74970 73340 +L74990 73320 +L75050 73230 +L75080 73120 +L75080 72890 +L75050 72840 +L75020 72810 +L74970 72780 +L74850 72780 +L74800 72810 +L74770 72840 +L74740 72890 +L74740 73030 +L74770 73090 +L74800 73120 +L74850 73150 +L74970 73150 +L75020 73120 +L75050 73090 +L75080 73030 +" /> +<path d="M75270 72780 +L75670 72780 +L75420 73370 +" /> +<path d="M76010 72780 +L76060 72780 +L76120 72810 +L76150 72840 +L76170 72890 +L76200 73010 +L76200 73150 +L76170 73260 +L76150 73320 +L76120 73340 +L76060 73370 +L76010 73370 +L75950 73340 +L75920 73320 +L75890 73260 +L75860 73150 +L75860 73010 +L75890 72890 +L75920 72840 +L75950 72810 +L76010 72780 +" /> +<path d="M76450 73320 +L76480 73340 +L76450 73370 +L76430 73340 +L76450 73320 +L76450 73370 +" /> +<path d="M76710 73340 +L76760 73370 +L76880 73370 +L76930 73340 +L76960 73290 +L76960 73260 +L76930 73200 +L76880 73180 +L76790 73180 +L76740 73150 +L76710 73090 +L76710 73060 +L76740 73010 +L76790 72980 +L76880 72980 +L76930 73010 +" /> +<path d="M77470 73340 +L77410 73370 +L77300 73370 +L77240 73340 +L77210 73320 +L77190 73260 +L77190 73090 +L77210 73030 +L77240 73010 +L77300 72980 +L77410 72980 +L77470 73010 +" /> +<path d="M77720 73370 +L77720 72780 +" /> +<path d="M77970 73370 +L77970 73060 +L77940 73010 +L77890 72980 +L77800 72980 +L77750 73010 +L77720 73030 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M69690 71460 +L112210 71460 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="70080" y="72340" +textLength="3850" font-size="780" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">Sheet: /</text> +<path d="M70220 72280 +L70300 72310 +L70440 72310 +L70500 72280 +L70530 72260 +L70550 72200 +L70550 72140 +L70530 72090 +L70500 72060 +L70440 72030 +L70330 72000 +L70270 71970 +L70250 71950 +L70220 71890 +L70220 71830 +L70250 71780 +L70270 71750 +L70330 71720 +L70470 71720 +L70550 71750 +" /> +<path d="M70810 72310 +L70810 71720 +" /> +<path d="M71060 72310 +L71060 72000 +L71030 71950 +L70980 71920 +L70890 71920 +L70840 71950 +L70810 71970 +" /> +<path d="M71570 72280 +L71510 72310 +L71400 72310 +L71340 72280 +L71310 72230 +L71310 72000 +L71340 71950 +L71400 71920 +L71510 71920 +L71570 71950 +L71590 72000 +L71590 72060 +L71310 72120 +" /> +<path d="M72070 72280 +L72020 72310 +L71900 72310 +L71850 72280 +L71820 72230 +L71820 72000 +L71850 71950 +L71900 71920 +L72020 71920 +L72070 71950 +L72100 72000 +L72100 72060 +L71820 72120 +" /> +<path d="M72270 71920 +L72490 71920 +" /> +<path d="M72350 71720 +L72350 72230 +L72380 72280 +L72440 72310 +L72490 72310 +" /> +<path d="M72690 72260 +L72720 72280 +L72690 72310 +L72660 72280 +L72690 72260 +L72690 72310 +" /> +<path d="M72690 71950 +L72720 71970 +L72690 72000 +L72660 71970 +L72690 71950 +L72690 72000 +" /> +<path d="M73840 71690 +L73340 72450 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:120; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="70080" y="71160" +textLength="5990" font-size="780" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">David Douard</text> +<path d="M70290 71130 +L70290 70540 +L70430 70540 +L70520 70570 +L70570 70630 +L70600 70680 +L70630 70790 +L70630 70880 +L70600 70990 +L70570 71050 +L70520 71100 +L70430 71130 +L70290 71130 +" /> +<path d="M71140 71130 +L71140 70820 +L71110 70770 +L71050 70740 +L70940 70740 +L70880 70770 +" /> +<path d="M71140 71100 +L71080 71130 +L70940 71130 +L70880 71100 +L70860 71050 +L70860 70990 +L70880 70940 +L70940 70910 +L71080 70910 +L71140 70880 +" /> +<path d="M71360 70740 +L71500 71130 +L71640 70740 +" /> +<path d="M71870 71130 +L71870 70740 +" /> +<path d="M71870 70540 +L71840 70570 +L71870 70600 +L71890 70570 +L71870 70540 +L71870 70600 +" /> +<path d="M72400 71130 +L72400 70540 +" /> +<path d="M72400 71100 +L72340 71130 +L72230 71130 +L72180 71100 +L72150 71080 +L72120 71020 +L72120 70850 +L72150 70790 +L72180 70770 +L72230 70740 +L72340 70740 +L72400 70770 +" /> +<path d="M73130 71130 +L73130 70540 +L73270 70540 +L73360 70570 +L73410 70630 +L73440 70680 +L73470 70790 +L73470 70880 +L73440 70990 +L73410 71050 +L73360 71100 +L73270 71130 +L73130 71130 +" /> +<path d="M73810 71130 +L73750 71100 +L73720 71080 +L73690 71020 +L73690 70850 +L73720 70790 +L73750 70770 +L73810 70740 +L73890 70740 +L73950 70770 +L73970 70790 +L74000 70850 +L74000 71020 +L73970 71080 +L73950 71100 +L73890 71130 +L73810 71130 +" /> +<path d="M74510 70740 +L74510 71130 +" /> +<path d="M74250 70740 +L74250 71050 +L74280 71100 +L74340 71130 +L74420 71130 +L74480 71100 +L74510 71080 +" /> +<path d="M75040 71130 +L75040 70820 +L75010 70770 +L74960 70740 +L74840 70740 +L74790 70770 +" /> +<path d="M75040 71100 +L74990 71130 +L74840 71130 +L74790 71100 +L74760 71050 +L74760 70990 +L74790 70940 +L74840 70910 +L74990 70910 +L75040 70880 +" /> +<path d="M75320 71130 +L75320 70740 +" /> +<path d="M75320 70850 +L75350 70790 +L75380 70770 +L75430 70740 +L75490 70740 +" /> +<path d="M75940 71130 +L75940 70540 +" /> +<path d="M75940 71100 +L75880 71130 +L75770 71130 +L75720 71100 +L75690 71080 +L75660 71020 +L75660 70850 +L75690 70790 +L75720 70770 +L75770 70740 +L75880 70740 +L75940 70770 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M77560 75400 +L77560 76580 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M102760 75400 +L102760 77960 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 18250,73250 +18250,73750 +18750,73750 +18250,74250 +17750,73750 +18250,73750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="18300" y="75250" +textLength="1680" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">GND</text> +<path d="M17910 74750 +L17870 74720 +L17800 74720 +L17720 74750 +L17680 74790 +L17650 74840 +L17630 74940 +L17630 75010 +L17650 75100 +L17680 75150 +L17720 75200 +L17800 75220 +L17840 75220 +L17910 75200 +L17940 75170 +L17940 75010 +L17840 75010 +" /> +<path d="M18150 75220 +L18150 74720 +L18440 75220 +L18440 74720 +" /> +<path d="M18680 75220 +L18680 74720 +L18800 74720 +L18870 74750 +L18910 74790 +L18940 74840 +L18960 74940 +L18960 75010 +L18940 75100 +L18910 75150 +L18870 75200 +L18800 75220 +L18680 75220 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="86850" y="18750" width="800" height="2000" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M87250 18750 +L87250 18250 +" /> +<path d="M87250 20750 +L87250 21250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="88700" y="19560" +textLength="1510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">R12</text> +<path d="M88370 19530 +L88210 19290 +" /> +<path d="M88090 19530 +L88090 19030 +L88280 19030 +L88330 19060 +L88350 19080 +L88370 19130 +L88370 19200 +L88350 19250 +L88330 19270 +L88280 19290 +L88090 19290 +" /> +<path d="M88850 19530 +L88560 19530 +" /> +<path d="M88710 19530 +L88710 19030 +L88660 19100 +L88610 19150 +L88560 19170 +" /> +<path d="M89040 19080 +L89060 19060 +L89110 19030 +L89230 19030 +L89280 19060 +L89300 19080 +L89330 19130 +L89330 19170 +L89300 19250 +L89020 19530 +L89330 19530 +" /> +<text x="89010" y="20470" +textLength="2130" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">22.1k</text> +<path d="M88060 19990 +L88090 19970 +L88140 19940 +L88260 19940 +L88300 19970 +L88330 19990 +L88350 20040 +L88350 20080 +L88330 20160 +L88040 20440 +L88350 20440 +" /> +<path d="M88540 19990 +L88560 19970 +L88610 19940 +L88730 19940 +L88780 19970 +L88800 19990 +L88830 20040 +L88830 20080 +L88800 20160 +L88520 20440 +L88830 20440 +" /> +<path d="M89040 20390 +L89060 20420 +L89040 20440 +L89020 20420 +L89040 20390 +L89040 20440 +" /> +<path d="M89540 20440 +L89260 20440 +" /> +<path d="M89400 20440 +L89400 19940 +L89350 20010 +L89300 20060 +L89260 20080 +" /> +<path d="M89760 20440 +L89760 19940 +" /> +<path d="M89800 20250 +L89950 20440 +" /> +<path d="M89950 20110 +L89760 20300 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="86850" y="13750" width="800" height="2000" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M87250 13750 +L87250 13250 +" /> +<path d="M87250 15750 +L87250 16250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="88700" y="14560" +textLength="1510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">R11</text> +<path d="M88370 14530 +L88210 14290 +" /> +<path d="M88090 14530 +L88090 14030 +L88280 14030 +L88330 14060 +L88350 14080 +L88370 14130 +L88370 14200 +L88350 14250 +L88330 14270 +L88280 14290 +L88090 14290 +" /> +<path d="M88850 14530 +L88560 14530 +" /> +<path d="M88710 14530 +L88710 14030 +L88660 14100 +L88610 14150 +L88560 14170 +" /> +<path d="M89330 14530 +L89040 14530 +" /> +<path d="M89180 14530 +L89180 14030 +L89140 14100 +L89090 14150 +L89040 14170 +" /> +<text x="89010" y="15470" +textLength="2130" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">88.7k</text> +<path d="M88160 15160 +L88110 15130 +L88090 15110 +L88060 15060 +L88060 15040 +L88090 14990 +L88110 14970 +L88160 14940 +L88260 14940 +L88300 14970 +L88330 14990 +L88350 15040 +L88350 15060 +L88330 15110 +L88300 15130 +L88260 15160 +L88160 15160 +L88110 15180 +L88090 15200 +L88060 15250 +L88060 15350 +L88090 15390 +L88110 15420 +L88160 15440 +L88260 15440 +L88300 15420 +L88330 15390 +L88350 15350 +L88350 15250 +L88330 15200 +L88300 15180 +L88260 15160 +" /> +<path d="M88640 15160 +L88590 15130 +L88560 15110 +L88540 15060 +L88540 15040 +L88560 14990 +L88590 14970 +L88640 14940 +L88730 14940 +L88780 14970 +L88800 14990 +L88830 15040 +L88830 15060 +L88800 15110 +L88780 15130 +L88730 15160 +L88640 15160 +L88590 15180 +L88560 15200 +L88540 15250 +L88540 15350 +L88560 15390 +L88590 15420 +L88640 15440 +L88730 15440 +L88780 15420 +L88800 15390 +L88830 15350 +L88830 15250 +L88800 15200 +L88780 15180 +L88730 15160 +" /> +<path d="M89040 15390 +L89060 15420 +L89040 15440 +L89020 15420 +L89040 15390 +L89040 15440 +" /> +<path d="M89230 14940 +L89560 14940 +L89350 15440 +" /> +<path d="M89760 15440 +L89760 14940 +" /> +<path d="M89800 15250 +L89950 15440 +" /> +<path d="M89950 15110 +L89760 15300 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M84500 13249.6 A250 250 0.0 0 0 84000 13249.6" /> +<path d="M84000 13249.6 A250 250 0.0 0 0 83500 13249.6" /> +<path d="M83500 13249.6 A250 250 0.0 0 0 83000 13249.6" /> +<path d="M83000 13249.6 A250 250 0.0 0 0 82500 13249.6" /> +<path d="M82500 13250 +L82000 13250 +" /> +<path d="M84500 13250 +L85000 13250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="83500" y="11570" +textLength="940" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">L1</text> +<path d="M83410 11540 +L83170 11540 +L83170 11040 +" /> +<path d="M83840 11540 +L83550 11540 +" /> +<path d="M83700 11540 +L83700 11040 +L83650 11110 +L83600 11160 +L83550 11180 +" /> +<text x="83490" y="12480" +textLength="2230" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">8.2uH</text> +<path d="M82590 12170 +L82540 12140 +L82520 12120 +L82500 12070 +L82500 12050 +L82520 12000 +L82540 11980 +L82590 11950 +L82690 11950 +L82740 11980 +L82760 12000 +L82780 12050 +L82780 12070 +L82760 12120 +L82740 12140 +L82690 12170 +L82590 12170 +L82540 12190 +L82520 12210 +L82500 12260 +L82500 12360 +L82520 12400 +L82540 12430 +L82590 12450 +L82690 12450 +L82740 12430 +L82760 12400 +L82780 12360 +L82780 12260 +L82760 12210 +L82740 12190 +L82690 12170 +" /> +<path d="M83000 12400 +L83020 12430 +L83000 12450 +L82970 12430 +L83000 12400 +L83000 12450 +" /> +<path d="M83210 12000 +L83240 11980 +L83280 11950 +L83400 11950 +L83450 11980 +L83470 12000 +L83500 12050 +L83500 12090 +L83470 12170 +L83190 12450 +L83500 12450 +" /> +<path d="M83930 12120 +L83930 12450 +" /> +<path d="M83710 12120 +L83710 12380 +L83740 12430 +L83780 12450 +L83850 12450 +L83900 12430 +L83930 12400 +" /> +<path d="M84160 12450 +L84160 11950 +" /> +<path d="M84160 12190 +L84450 12190 +" /> +<path d="M84450 12450 +L84450 11950 +" /> +</g> +<g style="fill:#840084; fill-opacity:0.0; +stroke:#840084; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="83500" y="13970" +textLength="3800" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">150mOhm</text> +<path d="M82010 13940 +L81720 13940 +" /> +<path d="M81860 13940 +L81860 13440 +L81820 13510 +L81770 13560 +L81720 13580 +" /> +<path d="M82460 13440 +L82220 13440 +L82200 13680 +L82220 13660 +L82270 13630 +L82390 13630 +L82440 13660 +L82460 13680 +L82480 13730 +L82480 13850 +L82460 13890 +L82440 13920 +L82390 13940 +L82270 13940 +L82220 13920 +L82200 13890 +" /> +<path d="M82790 13440 +L82840 13440 +L82890 13470 +L82910 13490 +L82940 13540 +L82960 13630 +L82960 13750 +L82940 13850 +L82910 13890 +L82890 13920 +L82840 13940 +L82790 13940 +L82750 13920 +L82720 13890 +L82700 13850 +L82670 13750 +L82670 13630 +L82700 13540 +L82720 13490 +L82750 13470 +L82790 13440 +" /> +<path d="M83170 13940 +L83170 13610 +" /> +<path d="M83170 13660 +L83200 13630 +L83250 13610 +L83320 13610 +L83360 13630 +L83390 13680 +L83390 13940 +" /> +<path d="M83390 13680 +L83410 13630 +L83460 13610 +L83530 13610 +L83580 13630 +L83600 13680 +L83600 13940 +" /> +<path d="M83940 13440 +L84030 13440 +L84080 13470 +L84130 13510 +L84150 13610 +L84150 13770 +L84130 13870 +L84080 13920 +L84030 13940 +L83940 13940 +L83890 13920 +L83840 13870 +L83820 13770 +L83820 13610 +L83840 13510 +L83890 13470 +L83940 13440 +" /> +<path d="M84360 13940 +L84360 13440 +" /> +<path d="M84580 13940 +L84580 13680 +L84550 13630 +L84510 13610 +L84440 13610 +L84390 13630 +L84360 13660 +" /> +<path d="M84820 13940 +L84820 13610 +" /> +<path d="M84820 13660 +L84840 13630 +L84890 13610 +L84960 13610 +L85010 13630 +L85030 13680 +L85030 13940 +" /> +<path d="M85030 13680 +L85050 13630 +L85100 13610 +L85170 13610 +L85220 13630 +L85250 13680 +L85250 13940 +" /> +</g> +</g> +<g style="fill:#840084; fill-opacity:0.0; +stroke:#840084; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="41600" y="38250" width="800" height="2000" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M42000 38250 +L42000 37750 +" /> +<path d="M42000 40250 +L42000 40750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="43450" y="39060" +textLength="1510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">R18</text> +<path d="M43120 39030 +L42960 38790 +" /> +<path d="M42840 39030 +L42840 38530 +L43030 38530 +L43080 38560 +L43100 38580 +L43120 38630 +L43120 38700 +L43100 38750 +L43080 38770 +L43030 38790 +L42840 38790 +" /> +<path d="M43600 39030 +L43310 39030 +" /> +<path d="M43460 39030 +L43460 38530 +L43410 38600 +L43360 38650 +L43310 38670 +" /> +<path d="M43890 38750 +L43840 38720 +L43810 38700 +L43790 38650 +L43790 38630 +L43810 38580 +L43840 38560 +L43890 38530 +L43980 38530 +L44030 38560 +L44050 38580 +L44080 38630 +L44080 38650 +L44050 38700 +L44030 38720 +L43980 38750 +L43890 38750 +L43840 38770 +L43810 38790 +L43790 38840 +L43790 38940 +L43810 38980 +L43840 39010 +L43890 39030 +L43980 39030 +L44030 39010 +L44050 38980 +L44080 38940 +L44080 38840 +L44050 38790 +L44030 38770 +L43980 38750 +" /> +<text x="43410" y="39970" +textLength="1420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">10k</text> +<path d="M43110 39940 +L42820 39940 +" /> +<path d="M42960 39940 +L42960 39440 +L42920 39510 +L42870 39560 +L42820 39580 +" /> +<path d="M43420 39440 +L43460 39440 +L43510 39470 +L43540 39490 +L43560 39540 +L43580 39630 +L43580 39750 +L43560 39850 +L43540 39890 +L43510 39920 +L43460 39940 +L43420 39940 +L43370 39920 +L43350 39890 +L43320 39850 +L43300 39750 +L43300 39630 +L43320 39540 +L43350 39490 +L43370 39470 +L43420 39440 +" /> +<path d="M43800 39940 +L43800 39440 +" /> +<path d="M43850 39750 +L43990 39940 +" /> +<path d="M43990 39610 +L43800 39800 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="32100" y="69850" width="1800" height="200" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:1.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="32100" y="70450" width="1800" height="200" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 32300,69350 +32700,69350 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 32500,69150 +32500,69550 +" /> +<path d="M33000 69850 +L33000 68750 +" /> +<path d="M33000 70650 +L33000 71750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="34700" y="70060" +textLength="1040" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">C6</text> +<path d="M34610 69980 +L34590 70010 +L34520 70030 +L34470 70030 +L34400 70010 +L34350 69960 +L34330 69910 +L34300 69820 +L34300 69750 +L34330 69650 +L34350 69600 +L34400 69560 +L34470 69530 +L34520 69530 +L34590 69560 +L34610 69580 +" /> +<path d="M35040 69530 +L34950 69530 +L34900 69560 +L34870 69580 +L34830 69650 +L34800 69750 +L34800 69940 +L34830 69980 +L34850 70010 +L34900 70030 +L34990 70030 +L35040 70010 +L35060 69980 +L35090 69940 +L35090 69820 +L35060 69770 +L35040 69750 +L34990 69720 +L34900 69720 +L34850 69750 +L34830 69770 +L34800 69820 +" /> +<text x="34670" y="70970" +textLength="990" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">1u</text> +<path d="M34580 70940 +L34300 70940 +" /> +<path d="M34440 70940 +L34440 70440 +L34390 70510 +L34340 70560 +L34300 70580 +" /> +<path d="M35010 70610 +L35010 70940 +" /> +<path d="M34800 70610 +L34800 70870 +L34820 70920 +L34870 70940 +L34940 70940 +L34990 70920 +L35010 70890 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="10350" y="69850" width="1800" height="200" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:1.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="10350" y="70450" width="1800" height="200" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 10550,69350 +10950,69350 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 10750,69150 +10750,69550 +" /> +<path d="M11250 69850 +L11250 68750 +" /> +<path d="M11250 70650 +L11250 71750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="12950" y="70060" +textLength="1040" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">C1</text> +<path d="M12860 69980 +L12840 70010 +L12770 70030 +L12720 70030 +L12650 70010 +L12600 69960 +L12580 69910 +L12550 69820 +L12550 69750 +L12580 69650 +L12600 69600 +L12650 69560 +L12720 69530 +L12770 69530 +L12840 69560 +L12860 69580 +" /> +<path d="M13340 70030 +L13050 70030 +" /> +<path d="M13200 70030 +L13200 69530 +L13150 69600 +L13100 69650 +L13050 69670 +" /> +<text x="13280" y="70970" +textLength="1700" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">4.7u</text> +<path d="M12790 70610 +L12790 70940 +" /> +<path d="M12670 70420 +L12550 70770 +L12860 70770 +" /> +<path d="M13050 70890 +L13070 70920 +L13050 70940 +L13030 70920 +L13050 70890 +L13050 70940 +" /> +<path d="M13240 70440 +L13570 70440 +L13360 70940 +" /> +<path d="M13980 70610 +L13980 70940 +" /> +<path d="M13760 70610 +L13760 70870 +L13790 70920 +L13830 70940 +L13910 70940 +L13950 70920 +L13980 70890 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 35200,70550 +36800,70550 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 35200,69950 +36800,69950 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M36000 69850 +L36000 68750 +" /> +<path d="M36000 70650 +L36000 71750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="37670" y="70060" +textLength="1040" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">C7</text> +<path d="M37580 69980 +L37560 70010 +L37490 70030 +L37440 70030 +L37370 70010 +L37320 69960 +L37300 69910 +L37270 69820 +L37270 69750 +L37300 69650 +L37320 69600 +L37370 69560 +L37440 69530 +L37490 69530 +L37560 69560 +L37580 69580 +" /> +<path d="M37750 69530 +L38080 69530 +L37870 70030 +" /> +<text x="37880" y="70970" +textLength="1460" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">10n</text> +<path d="M37550 70940 +L37270 70940 +" /> +<path d="M37410 70940 +L37410 70440 +L37360 70510 +L37320 70560 +L37270 70580 +" /> +<path d="M37860 70440 +L37910 70440 +L37960 70470 +L37980 70490 +L38010 70540 +L38030 70630 +L38030 70750 +L38010 70850 +L37980 70890 +L37960 70920 +L37910 70940 +L37860 70940 +L37820 70920 +L37790 70890 +L37770 70850 +L37740 70750 +L37740 70630 +L37770 70540 +L37790 70490 +L37820 70470 +L37860 70440 +" /> +<path d="M38240 70610 +L38240 70940 +" /> +<path d="M38240 70660 +L38270 70630 +L38320 70610 +L38390 70610 +L38430 70630 +L38460 70680 +L38460 70940 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 17450,70550 +19050,70550 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 17450,69950 +19050,69950 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M18250 69850 +L18250 68750 +" /> +<path d="M18250 70650 +L18250 71750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="19920" y="70060" +textLength="1040" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">C3</text> +<path d="M19830 69980 +L19810 70010 +L19740 70030 +L19690 70030 +L19620 70010 +L19570 69960 +L19550 69910 +L19520 69820 +L19520 69750 +L19550 69650 +L19570 69600 +L19620 69560 +L19690 69530 +L19740 69530 +L19810 69560 +L19830 69580 +" /> +<path d="M20000 69530 +L20310 69530 +L20140 69720 +L20210 69720 +L20260 69750 +L20280 69770 +L20310 69820 +L20310 69940 +L20280 69980 +L20260 70010 +L20210 70030 +L20070 70030 +L20020 70010 +L20000 69980 +" /> +<text x="20370" y="70970" +textLength="1940" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">100n</text> +<path d="M19810 70940 +L19520 70940 +" /> +<path d="M19660 70940 +L19660 70440 +L19620 70510 +L19570 70560 +L19520 70580 +" /> +<path d="M20120 70440 +L20160 70440 +L20210 70470 +L20230 70490 +L20260 70540 +L20280 70630 +L20280 70750 +L20260 70850 +L20230 70890 +L20210 70920 +L20160 70940 +L20120 70940 +L20070 70920 +L20040 70890 +L20020 70850 +L20000 70750 +L20000 70630 +L20020 70540 +L20040 70490 +L20070 70470 +L20120 70440 +" /> +<path d="M20590 70440 +L20640 70440 +L20690 70470 +L20710 70490 +L20730 70540 +L20760 70630 +L20760 70750 +L20730 70850 +L20710 70890 +L20690 70920 +L20640 70940 +L20590 70940 +L20540 70920 +L20520 70890 +L20500 70850 +L20470 70750 +L20470 70630 +L20500 70540 +L20520 70490 +L20540 70470 +L20590 70440 +" /> +<path d="M20970 70610 +L20970 70940 +" /> +<path d="M20970 70660 +L21000 70630 +L21040 70610 +L21120 70610 +L21160 70630 +L21190 70680 +L21190 70940 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 13700,70550 +15300,70550 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 13700,69950 +15300,69950 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M14500 69850 +L14500 68750 +" /> +<path d="M14500 70650 +L14500 71750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="16170" y="70060" +textLength="1040" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">C2</text> +<path d="M16080 69980 +L16060 70010 +L15990 70030 +L15940 70030 +L15870 70010 +L15820 69960 +L15800 69910 +L15770 69820 +L15770 69750 +L15800 69650 +L15820 69600 +L15870 69560 +L15940 69530 +L15990 69530 +L16060 69560 +L16080 69580 +" /> +<path d="M16270 69580 +L16300 69560 +L16340 69530 +L16460 69530 +L16510 69560 +L16530 69580 +L16560 69630 +L16560 69670 +L16530 69750 +L16250 70030 +L16560 70030 +" /> +<text x="16620" y="70970" +textLength="1940" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">100n</text> +<path d="M16060 70940 +L15770 70940 +" /> +<path d="M15910 70940 +L15910 70440 +L15870 70510 +L15820 70560 +L15770 70580 +" /> +<path d="M16370 70440 +L16410 70440 +L16460 70470 +L16480 70490 +L16510 70540 +L16530 70630 +L16530 70750 +L16510 70850 +L16480 70890 +L16460 70920 +L16410 70940 +L16370 70940 +L16320 70920 +L16290 70890 +L16270 70850 +L16250 70750 +L16250 70630 +L16270 70540 +L16290 70490 +L16320 70470 +L16370 70440 +" /> +<path d="M16840 70440 +L16890 70440 +L16940 70470 +L16960 70490 +L16980 70540 +L17010 70630 +L17010 70750 +L16980 70850 +L16960 70890 +L16940 70920 +L16890 70940 +L16840 70940 +L16790 70920 +L16770 70890 +L16750 70850 +L16720 70750 +L16720 70630 +L16750 70540 +L16770 70490 +L16790 70470 +L16840 70440 +" /> +<path d="M17220 70610 +L17220 70940 +" /> +<path d="M17220 70660 +L17250 70630 +L17290 70610 +L17370 70610 +L17410 70630 +L17440 70680 +L17440 70940 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="37000" cy="39800" r="200" /> +<circle cx="37000" cy="38200" r="200" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 36500,39000 +35800,39000 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 36500,38000 +36500,40000 +" /> +<path d="M37000 40000 +L37000 41000 +" /> +<path d="M37000 38000 +L37000 37000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="35030" y="39970" +textLength="2060" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW21</text> +<path d="M34120 39920 +L34190 39940 +L34310 39940 +L34360 39920 +L34380 39890 +L34410 39850 +L34410 39800 +L34380 39750 +L34360 39730 +L34310 39700 +L34220 39680 +L34170 39660 +L34140 39630 +L34120 39580 +L34120 39540 +L34140 39490 +L34170 39470 +L34220 39440 +L34330 39440 +L34410 39470 +" /> +<path d="M34570 39440 +L34690 39940 +L34790 39580 +L34880 39940 +L35000 39440 +" /> +<path d="M35170 39490 +L35190 39470 +L35240 39440 +L35360 39440 +L35410 39470 +L35430 39490 +L35450 39540 +L35450 39580 +L35430 39660 +L35140 39940 +L35450 39940 +" /> +<path d="M35930 39940 +L35640 39940 +" /> +<path d="M35790 39940 +L35790 39440 +L35740 39510 +L35690 39560 +L35640 39580 +" /> +<text x="34910" y="38470" +textLength="2320" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">RESET</text> +<path d="M34180 38440 +L34010 38200 +" /> +<path d="M33890 38440 +L33890 37940 +L34080 37940 +L34130 37970 +L34160 37990 +L34180 38040 +L34180 38110 +L34160 38160 +L34130 38180 +L34080 38200 +L33890 38200 +" /> +<path d="M34390 38180 +L34560 38180 +" /> +<path d="M34630 38440 +L34390 38440 +L34390 37940 +L34630 37940 +" /> +<path d="M34820 38420 +L34890 38440 +L35010 38440 +L35060 38420 +L35080 38390 +L35110 38350 +L35110 38300 +L35080 38250 +L35060 38230 +L35010 38200 +L34920 38180 +L34870 38160 +L34850 38130 +L34820 38080 +L34820 38040 +L34850 37990 +L34870 37970 +L34920 37940 +L35040 37940 +L35110 37970 +" /> +<path d="M35320 38180 +L35490 38180 +" /> +<path d="M35560 38440 +L35320 38440 +L35320 37940 +L35560 37940 +" /> +<path d="M35700 37940 +L35990 37940 +" /> +<path d="M35850 38440 +L35850 37940 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="42000" cy="32300" r="200" /> +<circle cx="42000" cy="30700" r="200" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 41500,31500 +40800,31500 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 41500,30500 +41500,32500 +" /> +<path d="M42000 32500 +L42000 33500 +" /> +<path d="M42000 30500 +L42000 29500 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="43510" y="31260" +textLength="2060" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW22</text> +<path d="M42600 31210 +L42670 31230 +L42790 31230 +L42840 31210 +L42860 31180 +L42890 31140 +L42890 31090 +L42860 31040 +L42840 31020 +L42790 30990 +L42700 30970 +L42650 30950 +L42620 30920 +L42600 30870 +L42600 30830 +L42620 30780 +L42650 30760 +L42700 30730 +L42810 30730 +L42890 30760 +" /> +<path d="M43050 30730 +L43170 31230 +L43270 30870 +L43360 31230 +L43480 30730 +" /> +<path d="M43650 30780 +L43670 30760 +L43720 30730 +L43840 30730 +L43890 30760 +L43910 30780 +L43930 30830 +L43930 30870 +L43910 30950 +L43620 31230 +L43930 31230 +" /> +<path d="M44120 30780 +L44150 30760 +L44200 30730 +L44310 30730 +L44360 30760 +L44390 30780 +L44410 30830 +L44410 30870 +L44390 30950 +L44100 31230 +L44410 31230 +" /> +<text x="43230" y="32170" +textLength="1510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">DFU</text> +<path d="M42620 32140 +L42620 31640 +L42740 31640 +L42810 31670 +L42860 31710 +L42880 31760 +L42900 31860 +L42900 31930 +L42880 32020 +L42860 32070 +L42810 32120 +L42740 32140 +L42620 32140 +" /> +<path d="M43280 31880 +L43120 31880 +" /> +<path d="M43120 32140 +L43120 31640 +L43360 31640 +" /> +<path d="M43550 31640 +L43550 32050 +L43570 32090 +L43590 32120 +L43640 32140 +L43740 32140 +L43780 32120 +L43810 32090 +L43830 32050 +L43830 31640 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 37950,39300 +39550,39300 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 37950,38700 +39550,38700 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M38750 38600 +L38750 37500 +" /> +<path d="M38750 39400 +L38750 40500 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="39750" y="38520" +textLength="1510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">C17</text> +<path d="M39420 38440 +L39400 38470 +L39330 38490 +L39280 38490 +L39210 38470 +L39160 38420 +L39140 38370 +L39110 38280 +L39110 38210 +L39140 38110 +L39160 38060 +L39210 38020 +L39280 37990 +L39330 37990 +L39400 38020 +L39420 38040 +" /> +<path d="M39900 38490 +L39610 38490 +" /> +<path d="M39760 38490 +L39760 37990 +L39710 38060 +L39660 38110 +L39610 38130 +" /> +<path d="M40070 37990 +L40400 37990 +L40190 38490 +" /> +<text x="39970" y="40270" +textLength="1940" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">100n</text> +<path d="M39410 40240 +L39120 40240 +" /> +<path d="M39260 40240 +L39260 39740 +L39220 39810 +L39170 39860 +L39120 39880 +" /> +<path d="M39720 39740 +L39760 39740 +L39810 39770 +L39830 39790 +L39860 39840 +L39880 39930 +L39880 40050 +L39860 40150 +L39830 40190 +L39810 40220 +L39760 40240 +L39720 40240 +L39670 40220 +L39640 40190 +L39620 40150 +L39600 40050 +L39600 39930 +L39620 39840 +L39640 39790 +L39670 39770 +L39720 39740 +" /> +<path d="M40190 39740 +L40240 39740 +L40290 39770 +L40310 39790 +L40330 39840 +L40360 39930 +L40360 40050 +L40330 40150 +L40310 40190 +L40290 40220 +L40240 40240 +L40190 40240 +L40140 40220 +L40120 40190 +L40100 40150 +L40070 40050 +L40070 39930 +L40100 39840 +L40120 39790 +L40140 39770 +L40190 39740 +" /> +<path d="M40570 39910 +L40570 40240 +" /> +<path d="M40570 39960 +L40600 39930 +L40640 39910 +L40710 39910 +L40760 39930 +L40790 39980 +L40790 40240 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 22500,31250 +22500,31750 +23000,31750 +22500,32250 +22000,31750 +22500,31750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="22550" y="33250" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">GND</text> +<path d="M22160 32750 +L22120 32720 +L22050 32720 +L21970 32750 +L21930 32790 +L21900 32840 +L21880 32940 +L21880 33010 +L21900 33100 +L21930 33150 +L21970 33200 +L22050 33220 +L22090 33220 +L22160 33200 +L22190 33170 +L22190 33010 +L22090 33010 +" /> +<path d="M22400 33220 +L22400 32720 +L22690 33220 +L22690 32720 +" /> +<path d="M22930 33220 +L22930 32720 +L23050 32720 +L23120 32750 +L23160 32790 +L23190 32840 +L23210 32940 +L23210 33010 +L23190 33100 +L23160 33150 +L23120 33200 +L23050 33220 +L22930 33220 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 33000,73250 +33000,73750 +33500,73750 +33000,74250 +32500,73750 +33000,73750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="33050" y="75250" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">GND</text> +<path d="M32660 74750 +L32620 74720 +L32550 74720 +L32470 74750 +L32430 74790 +L32400 74840 +L32380 74940 +L32380 75010 +L32400 75100 +L32430 75150 +L32470 75200 +L32550 75220 +L32590 75220 +L32660 75200 +L32690 75170 +L32690 75010 +L32590 75010 +" /> +<path d="M32900 75220 +L32900 74720 +L33190 75220 +L33190 74720 +" /> +<path d="M33430 75220 +L33430 74720 +L33550 74720 +L33620 74750 +L33660 74790 +L33690 74840 +L33710 74940 +L33710 75010 +L33690 75100 +L33660 75150 +L33620 75200 +L33550 75220 +L33430 75220 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="90100" y="15100" width="1800" height="200" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:1.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="90100" y="15700" width="1800" height="200" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 90300,14600 +90700,14600 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 90500,14400 +90500,14800 +" /> +<path d="M91000 15100 +L91000 14000 +" /> +<path d="M91000 15900 +L91000 17000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="92930" y="15310" +textLength="1510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">C11</text> +<path d="M92600 15230 +L92580 15260 +L92510 15280 +L92460 15280 +L92390 15260 +L92340 15210 +L92320 15160 +L92290 15070 +L92290 15000 +L92320 14900 +L92340 14850 +L92390 14810 +L92460 14780 +L92510 14780 +L92580 14810 +L92600 14830 +" /> +<path d="M93080 15280 +L92790 15280 +" /> +<path d="M92940 15280 +L92940 14780 +L92890 14850 +L92840 14900 +L92790 14920 +" /> +<path d="M93560 15280 +L93270 15280 +" /> +<path d="M93410 15280 +L93410 14780 +L93370 14850 +L93320 14900 +L93270 14920 +" /> +<text x="92910" y="16220" +textLength="1460" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">15u</text> +<path d="M92580 16190 +L92300 16190 +" /> +<path d="M92440 16190 +L92440 15690 +L92390 15760 +L92350 15810 +L92300 15830 +" /> +<path d="M93040 15690 +L92800 15690 +L92770 15930 +L92800 15910 +L92850 15880 +L92960 15880 +L93010 15910 +L93040 15930 +L93060 15980 +L93060 16100 +L93040 16140 +L93010 16170 +L92960 16190 +L92850 16190 +L92800 16170 +L92770 16140 +" /> +<path d="M93490 15860 +L93490 16190 +" /> +<path d="M93270 15860 +L93270 16120 +L93300 16170 +L93350 16190 +L93420 16190 +L93460 16170 +L93490 16140 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#FFFFC2; fill-opacity:0.0; +stroke:#FFFFC2; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#FFFFC2; fill-opacity:0.6; +stroke:#FFFFC2; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="8000" y="46500" width="1000" height="12000" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.6; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="8000" y="46500" width="1000" height="12000" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="8500" y="57950" width="500" height="100" rx="0" /> +<rect x="8500" y="56950" width="500" height="100" rx="0" /> +<rect x="8500" y="55950" width="500" height="100" rx="0" /> +<rect x="8500" y="54950" width="500" height="100" rx="0" /> +<rect x="8500" y="53950" width="500" height="100" rx="0" /> +<rect x="8500" y="52950" width="500" height="100" rx="0" /> +<rect x="8500" y="51950" width="500" height="100" rx="0" /> +<rect x="8500" y="50950" width="500" height="100" rx="0" /> +<rect x="8500" y="49950" width="500" height="100" rx="0" /> +<rect x="8500" y="48950" width="500" height="100" rx="0" /> +<rect x="8500" y="47950" width="500" height="100" rx="0" /> +<rect x="8500" y="46950" width="500" height="100" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="8000" y="46500" width="1000" height="12000" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M9000 47000 +L10500 47000 +" /> +<text x="9750" y="46900" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">1</text> +<path d="M9890 46870 +L9600 46870 +" /> +<path d="M9750 46870 +L9750 46370 +L9700 46440 +L9650 46490 +L9600 46510 +" /> +<path d="M9000 56000 +L10500 56000 +" /> +<text x="9750" y="55900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">10</text> +<path d="M9650 55870 +L9360 55870 +" /> +<path d="M9510 55870 +L9510 55370 +L9460 55440 +L9410 55490 +L9360 55510 +" /> +<path d="M9960 55370 +L10010 55370 +L10050 55400 +L10080 55420 +L10100 55470 +L10130 55560 +L10130 55680 +L10100 55780 +L10080 55820 +L10050 55850 +L10010 55870 +L9960 55870 +L9910 55850 +L9890 55820 +L9860 55780 +L9840 55680 +L9840 55560 +L9860 55470 +L9890 55420 +L9910 55400 +L9960 55370 +" /> +<path d="M9000 57000 +L10500 57000 +" /> +<text x="9750" y="56900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">11</text> +<path d="M9650 56870 +L9360 56870 +" /> +<path d="M9510 56870 +L9510 56370 +L9460 56440 +L9410 56490 +L9360 56510 +" /> +<path d="M10130 56870 +L9840 56870 +" /> +<path d="M9980 56870 +L9980 56370 +L9940 56440 +L9890 56490 +L9840 56510 +" /> +<path d="M9000 58000 +L10500 58000 +" /> +<text x="9750" y="57900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">12</text> +<path d="M9650 57870 +L9360 57870 +" /> +<path d="M9510 57870 +L9510 57370 +L9460 57440 +L9410 57490 +L9360 57510 +" /> +<path d="M9840 57420 +L9860 57400 +L9910 57370 +L10030 57370 +L10080 57400 +L10100 57420 +L10130 57470 +L10130 57510 +L10100 57590 +L9820 57870 +L10130 57870 +" /> +<path d="M9000 48000 +L10500 48000 +" /> +<text x="9750" y="47900" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">2</text> +<path d="M9600 47420 +L9630 47400 +L9670 47370 +L9790 47370 +L9840 47400 +L9860 47420 +L9890 47470 +L9890 47510 +L9860 47590 +L9580 47870 +L9890 47870 +" /> +<path d="M9000 49000 +L10500 49000 +" /> +<text x="9750" y="48900" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">3</text> +<path d="M9580 48370 +L9890 48370 +L9720 48560 +L9790 48560 +L9840 48590 +L9860 48610 +L9890 48660 +L9890 48780 +L9860 48820 +L9840 48850 +L9790 48870 +L9650 48870 +L9600 48850 +L9580 48820 +" /> +<path d="M9000 50000 +L10500 50000 +" /> +<text x="9750" y="49900" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">4</text> +<path d="M9840 49540 +L9840 49870 +" /> +<path d="M9720 49350 +L9600 49700 +L9910 49700 +" /> +<path d="M9000 51000 +L10500 51000 +" /> +<text x="9750" y="50900" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">5</text> +<path d="M9860 50370 +L9630 50370 +L9600 50610 +L9630 50590 +L9670 50560 +L9790 50560 +L9840 50590 +L9860 50610 +L9890 50660 +L9890 50780 +L9860 50820 +L9840 50850 +L9790 50870 +L9670 50870 +L9630 50850 +L9600 50820 +" /> +<path d="M9000 52000 +L10500 52000 +" /> +<text x="9750" y="51900" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">6</text> +<path d="M9840 51370 +L9750 51370 +L9700 51400 +L9670 51420 +L9630 51490 +L9600 51590 +L9600 51780 +L9630 51820 +L9650 51850 +L9700 51870 +L9790 51870 +L9840 51850 +L9860 51820 +L9890 51780 +L9890 51660 +L9860 51610 +L9840 51590 +L9790 51560 +L9700 51560 +L9650 51590 +L9630 51610 +L9600 51660 +" /> +<path d="M9000 53000 +L10500 53000 +" /> +<text x="9750" y="52900" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">7</text> +<path d="M9580 52370 +L9910 52370 +L9700 52870 +" /> +<path d="M9000 54000 +L10500 54000 +" /> +<text x="9750" y="53900" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">8</text> +<path d="M9700 53590 +L9650 53560 +L9630 53540 +L9600 53490 +L9600 53470 +L9630 53420 +L9650 53400 +L9700 53370 +L9790 53370 +L9840 53400 +L9860 53420 +L9890 53470 +L9890 53490 +L9860 53540 +L9840 53560 +L9790 53590 +L9700 53590 +L9650 53610 +L9630 53630 +L9600 53680 +L9600 53780 +L9630 53820 +L9650 53850 +L9700 53870 +L9790 53870 +L9840 53850 +L9860 53820 +L9890 53780 +L9890 53680 +L9860 53630 +L9840 53610 +L9790 53590 +" /> +<path d="M9000 55000 +L10500 55000 +" /> +<text x="9750" y="54900" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">9</text> +<path d="M9650 54870 +L9750 54870 +L9790 54850 +L9820 54820 +L9860 54750 +L9890 54660 +L9890 54470 +L9860 54420 +L9840 54400 +L9790 54370 +L9700 54370 +L9650 54400 +L9630 54420 +L9600 54470 +L9600 54590 +L9630 54630 +L9650 54660 +L9700 54680 +L9790 54680 +L9840 54660 +L9860 54630 +L9890 54590 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="9320" y="45100" +textLength="920" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">J1</text> +<path d="M9150 44570 +L9150 44930 +L9120 45000 +L9080 45050 +L9010 45070 +L8960 45070 +" /> +<path d="M9650 45070 +L9360 45070 +" /> +<path d="M9510 45070 +L9510 44570 +L9460 44640 +L9410 44690 +L9360 44710 +" /> +<text x="9310" y="46010" +textLength="4610" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">Conn_01x12</text> +<path d="M7440 45930 +L7410 45960 +L7340 45980 +L7290 45980 +L7220 45960 +L7170 45910 +L7150 45860 +L7130 45770 +L7130 45700 +L7150 45600 +L7170 45550 +L7220 45510 +L7290 45480 +L7340 45480 +L7410 45510 +L7440 45530 +" /> +<path d="M7720 45980 +L7670 45960 +L7650 45930 +L7630 45890 +L7630 45740 +L7650 45700 +L7670 45670 +L7720 45650 +L7790 45650 +L7840 45670 +L7860 45700 +L7890 45740 +L7890 45890 +L7860 45930 +L7840 45960 +L7790 45980 +L7720 45980 +" /> +<path d="M8100 45650 +L8100 45980 +" /> +<path d="M8100 45700 +L8130 45670 +L8170 45650 +L8250 45650 +L8290 45670 +L8320 45720 +L8320 45980 +" /> +<path d="M8560 45650 +L8560 45980 +" /> +<path d="M8560 45700 +L8580 45670 +L8630 45650 +L8700 45650 +L8750 45670 +L8770 45720 +L8770 45980 +" /> +<path d="M8890 46030 +L9270 46030 +" /> +<path d="M9480 45480 +L9530 45480 +L9580 45510 +L9600 45530 +L9630 45580 +L9650 45670 +L9650 45790 +L9630 45890 +L9600 45930 +L9580 45960 +L9530 45980 +L9480 45980 +L9440 45960 +L9410 45930 +L9390 45890 +L9360 45790 +L9360 45670 +L9390 45580 +L9410 45530 +L9440 45510 +L9480 45480 +" /> +<path d="M10130 45980 +L9840 45980 +" /> +<path d="M9980 45980 +L9980 45480 +L9940 45550 +L9890 45600 +L9840 45620 +" /> +<path d="M10290 45980 +L10560 45650 +" /> +<path d="M10290 45650 +L10560 45980 +" /> +<path d="M11010 45980 +L10720 45980 +" /> +<path d="M10860 45980 +L10860 45480 +L10820 45550 +L10770 45600 +L10720 45620 +" /> +<path d="M11200 45530 +L11220 45510 +L11270 45480 +L11390 45480 +L11440 45510 +L11460 45530 +L11480 45580 +L11480 45620 +L11460 45700 +L11170 45980 +L11480 45980 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#FFFFC2; fill-opacity:0.0; +stroke:#FFFFC2; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#FFFFC2; fill-opacity:0.6; +stroke:#FFFFC2; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="101000" y="38000" width="4000" height="4000" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.6; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="101000" y="38000" width="4000" height="4000" rx="0" /> +<path d="M102852 41100 A1080 1080 0.0 0 0 102852 38940" /> +</g> +<g style="fill:#840000; fill-opacity:1.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="101500" cy="40000" r="100" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="102850" cy="40000" r="750" /> +<rect x="101000" y="38000" width="4000" height="4000" rx="0" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 102750,40700 +102750,39300 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 102850,40700 +102850,39300 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 102950,39300 +102950,40700 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 101000,41000 +101500,41000 +101500,40800 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 101000,39000 +101500,39000 +101500,39200 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 103100,41200 +102800,41100 +103050,40950 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 103100,38850 +102800,38950 +103050,39100 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 101000,40000 +101500,40000 +101500,40400 +101700,40800 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 101300,40000 +101500,40000 +101500,39600 +101700,39200 +" /> +<path d="M101000 39000 +L100000 39000 +" /> +<text x="100500" y="38900" +textLength="490" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">A</text> +<path d="M100380 38730 +L100610 38730 +" /> +<path d="M100330 38870 +L100500 38370 +L100660 38870 +" /> +<path d="M101000 41000 +L100000 41000 +" /> +<text x="100500" y="40900" +textLength="560" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">B</text> +<path d="M100530 40610 +L100600 40630 +L100630 40660 +L100650 40700 +L100650 40780 +L100630 40820 +L100600 40850 +L100550 40870 +L100360 40870 +L100360 40370 +L100530 40370 +L100580 40400 +L100600 40420 +L100630 40470 +L100630 40510 +L100600 40560 +L100580 40590 +L100530 40610 +L100360 40610 +" /> +<path d="M101000 40000 +L100000 40000 +" /> +<text x="100500" y="39900" +textLength="560" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">C</text> +<path d="M100650 39820 +L100630 39850 +L100550 39870 +L100510 39870 +L100440 39850 +L100390 39800 +L100360 39750 +L100340 39660 +L100340 39590 +L100360 39490 +L100390 39440 +L100440 39400 +L100510 39370 +L100550 39370 +L100630 39400 +L100650 39420 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="106330" y="39810" +textLength="2060" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW19</text> +<path d="M105420 39760 +L105490 39780 +L105610 39780 +L105660 39760 +L105680 39730 +L105710 39690 +L105710 39640 +L105680 39590 +L105660 39570 +L105610 39540 +L105520 39520 +L105470 39500 +L105440 39470 +L105420 39420 +L105420 39380 +L105440 39330 +L105470 39310 +L105520 39280 +L105630 39280 +L105710 39310 +" /> +<path d="M105870 39280 +L105990 39780 +L106090 39420 +L106180 39780 +L106300 39280 +" /> +<path d="M106750 39780 +L106470 39780 +" /> +<path d="M106610 39780 +L106610 39280 +L106560 39350 +L106520 39400 +L106470 39420 +" /> +<path d="M106990 39780 +L107090 39780 +L107130 39760 +L107160 39730 +L107210 39660 +L107230 39570 +L107230 39380 +L107210 39330 +L107180 39310 +L107130 39280 +L107040 39280 +L106990 39310 +L106970 39330 +L106940 39380 +L106940 39500 +L106970 39540 +L106990 39570 +L107040 39590 +L107130 39590 +L107180 39570 +L107210 39540 +L107230 39500 +" /> +<text x="108200" y="40720" +textLength="5800" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">Rotary_Encoder</text> +<path d="M105730 40690 +L105560 40450 +" /> +<path d="M105450 40690 +L105450 40190 +L105640 40190 +L105680 40220 +L105710 40240 +L105730 40290 +L105730 40360 +L105710 40410 +L105680 40430 +L105640 40450 +L105450 40450 +" /> +<path d="M106020 40690 +L105970 40670 +L105950 40640 +L105920 40600 +L105920 40450 +L105950 40410 +L105970 40380 +L106020 40360 +L106090 40360 +L106140 40380 +L106160 40410 +L106180 40450 +L106180 40600 +L106160 40640 +L106140 40670 +L106090 40690 +L106020 40690 +" /> +<path d="M106330 40360 +L106520 40360 +" /> +<path d="M106400 40190 +L106400 40620 +L106420 40670 +L106470 40690 +L106520 40690 +" /> +<path d="M106900 40690 +L106900 40430 +L106870 40380 +L106830 40360 +L106730 40360 +L106680 40380 +" /> +<path d="M106900 40670 +L106850 40690 +L106730 40690 +L106680 40670 +L106660 40620 +L106660 40570 +L106680 40520 +L106730 40500 +L106850 40500 +L106900 40480 +" /> +<path d="M107140 40690 +L107140 40360 +" /> +<path d="M107140 40450 +L107160 40410 +L107180 40380 +L107230 40360 +L107280 40360 +" /> +<path d="M107400 40360 +L107520 40690 +" /> +<path d="M107640 40360 +L107520 40690 +L107470 40810 +L107450 40830 +L107400 40860 +" /> +<path d="M107710 40740 +L108090 40740 +" /> +<path d="M108210 40430 +L108370 40430 +" /> +<path d="M108450 40690 +L108210 40690 +L108210 40190 +L108450 40190 +" /> +<path d="M108660 40360 +L108660 40690 +" /> +<path d="M108660 40410 +L108680 40380 +L108730 40360 +L108800 40360 +L108850 40380 +L108870 40430 +L108870 40690 +" /> +<path d="M109330 40670 +L109280 40690 +L109180 40690 +L109140 40670 +L109110 40640 +L109090 40600 +L109090 40450 +L109110 40410 +L109140 40380 +L109180 40360 +L109280 40360 +L109330 40380 +" /> +<path d="M109610 40690 +L109560 40670 +L109540 40640 +L109520 40600 +L109520 40450 +L109540 40410 +L109560 40380 +L109610 40360 +L109680 40360 +L109730 40380 +L109750 40410 +L109780 40450 +L109780 40600 +L109750 40640 +L109730 40670 +L109680 40690 +L109610 40690 +" /> +<path d="M110210 40690 +L110210 40190 +" /> +<path d="M110210 40670 +L110160 40690 +L110060 40690 +L110020 40670 +L109990 40640 +L109970 40600 +L109970 40450 +L109990 40410 +L110020 40380 +L110060 40360 +L110160 40360 +L110210 40380 +" /> +<path d="M110640 40670 +L110590 40690 +L110490 40690 +L110450 40670 +L110420 40620 +L110420 40430 +L110450 40380 +L110490 40360 +L110590 40360 +L110640 40380 +L110660 40430 +L110660 40480 +L110420 40520 +" /> +<path d="M110870 40690 +L110870 40360 +" /> +<path d="M110870 40450 +L110900 40410 +L110920 40380 +L110970 40360 +L111020 40360 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 42000,42000 +42000,42500 +42500,42500 +42000,43000 +41500,42500 +42000,42500 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="42050" y="44000" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">GND</text> +<path d="M41660 43500 +L41620 43470 +L41550 43470 +L41470 43500 +L41430 43540 +L41400 43590 +L41380 43690 +L41380 43760 +L41400 43850 +L41430 43900 +L41470 43950 +L41550 43970 +L41590 43970 +L41660 43950 +L41690 43920 +L41690 43760 +L41590 43760 +" /> +<path d="M41900 43970 +L41900 43470 +L42190 43970 +L42190 43470 +" /> +<path d="M42430 43970 +L42430 43470 +L42550 43470 +L42620 43500 +L42660 43540 +L42690 43590 +L42710 43690 +L42710 43760 +L42690 43850 +L42660 43900 +L42620 43950 +L42550 43970 +L42430 43970 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 50500,69750 +50500,70250 +51000,70250 +50500,70750 +50000,70250 +50500,70250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="50550" y="71750" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">GND</text> +<path d="M50160 71250 +L50120 71220 +L50050 71220 +L49970 71250 +L49930 71290 +L49900 71340 +L49880 71440 +L49880 71510 +L49900 71600 +L49930 71650 +L49970 71700 +L50050 71720 +L50090 71720 +L50160 71700 +L50190 71670 +L50190 71510 +L50090 71510 +" /> +<path d="M50400 71720 +L50400 71220 +L50690 71720 +L50690 71220 +" /> +<path d="M50930 71720 +L50930 71220 +L51050 71220 +L51120 71250 +L51160 71290 +L51190 71340 +L51210 71440 +L51210 71510 +L51190 71600 +L51160 71650 +L51120 71700 +L51050 71720 +L50930 71720 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="36600" y="32500" width="800" height="2000" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M37000 32500 +L37000 32000 +" /> +<path d="M37000 34500 +L37000 35000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="38450" y="33310" +textLength="1510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">R17</text> +<path d="M38120 33280 +L37960 33040 +" /> +<path d="M37840 33280 +L37840 32780 +L38030 32780 +L38080 32810 +L38100 32830 +L38120 32880 +L38120 32950 +L38100 33000 +L38080 33020 +L38030 33040 +L37840 33040 +" /> +<path d="M38600 33280 +L38310 33280 +" /> +<path d="M38460 33280 +L38460 32780 +L38410 32850 +L38360 32900 +L38310 32920 +" /> +<path d="M38770 32780 +L39100 32780 +L38890 33280 +" /> +<text x="38410" y="34220" +textLength="1420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">10k</text> +<path d="M38110 34190 +L37820 34190 +" /> +<path d="M37960 34190 +L37960 33690 +L37920 33760 +L37870 33810 +L37820 33830 +" /> +<path d="M38420 33690 +L38460 33690 +L38510 33720 +L38540 33740 +L38560 33790 +L38580 33880 +L38580 34000 +L38560 34100 +L38540 34140 +L38510 34170 +L38460 34190 +L38420 34190 +L38370 34170 +L38350 34140 +L38320 34100 +L38300 34000 +L38300 33880 +L38320 33790 +L38350 33740 +L38370 33720 +L38420 33690 +" /> +<path d="M38800 34190 +L38800 33690 +" /> +<path d="M38850 34000 +L38990 34190 +" /> +<path d="M38990 33860 +L38800 34050 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 53000,17500 +53000,18000 +53500,18000 +53000,18500 +52500,18000 +53000,18000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="53050" y="19500" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">GND</text> +<path d="M52660 19000 +L52620 18970 +L52550 18970 +L52470 19000 +L52430 19040 +L52400 19090 +L52380 19190 +L52380 19260 +L52400 19350 +L52430 19400 +L52470 19450 +L52550 19470 +L52590 19470 +L52660 19450 +L52690 19420 +L52690 19260 +L52590 19260 +" /> +<path d="M52900 19470 +L52900 18970 +L53190 19470 +L53190 18970 +" /> +<path d="M53430 19470 +L53430 18970 +L53550 18970 +L53620 19000 +L53660 19040 +L53690 19090 +L53710 19190 +L53710 19260 +L53690 19350 +L53660 19400 +L53620 19450 +L53550 19470 +L53430 19470 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 67000,21250 +67000,21750 +67500,21750 +67000,22250 +66500,21750 +67000,21750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="67050" y="23250" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">GND</text> +<path d="M66660 22750 +L66620 22720 +L66550 22720 +L66470 22750 +L66430 22790 +L66400 22840 +L66380 22940 +L66380 23010 +L66400 23100 +L66430 23150 +L66470 23200 +L66550 23220 +L66590 23220 +L66660 23200 +L66690 23170 +L66690 23010 +L66590 23010 +" /> +<path d="M66900 23220 +L66900 22720 +L67190 23220 +L67190 22720 +" /> +<path d="M67430 23220 +L67430 22720 +L67550 22720 +L67620 22750 +L67660 22790 +L67690 22840 +L67710 22940 +L67710 23010 +L67690 23100 +L67660 23150 +L67620 23200 +L67550 23220 +L67430 23220 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="27100" y="69850" width="1800" height="200" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:1.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="27100" y="70450" width="1800" height="200" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 27300,69350 +27700,69350 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 27500,69150 +27500,69550 +" /> +<path d="M28000 69850 +L28000 68750 +" /> +<path d="M28000 70650 +L28000 71750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="29930" y="70060" +textLength="1510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">C16</text> +<path d="M29600 69980 +L29580 70010 +L29510 70030 +L29460 70030 +L29390 70010 +L29340 69960 +L29320 69910 +L29290 69820 +L29290 69750 +L29320 69650 +L29340 69600 +L29390 69560 +L29460 69530 +L29510 69530 +L29580 69560 +L29600 69580 +" /> +<path d="M30080 70030 +L29790 70030 +" /> +<path d="M29940 70030 +L29940 69530 +L29890 69600 +L29840 69650 +L29790 69670 +" /> +<path d="M30510 69530 +L30410 69530 +L30370 69560 +L30340 69580 +L30290 69650 +L30270 69750 +L30270 69940 +L30290 69980 +L30320 70010 +L30370 70030 +L30460 70030 +L30510 70010 +L30530 69980 +L30560 69940 +L30560 69820 +L30530 69770 +L30510 69750 +L30460 69720 +L30370 69720 +L30320 69750 +L30290 69770 +L30270 69820 +" /> +<text x="29910" y="70970" +textLength="1460" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">10u</text> +<path d="M29580 70940 +L29300 70940 +" /> +<path d="M29440 70940 +L29440 70440 +L29390 70510 +L29350 70560 +L29300 70580 +" /> +<path d="M29890 70440 +L29940 70440 +L29990 70470 +L30010 70490 +L30040 70540 +L30060 70630 +L30060 70750 +L30040 70850 +L30010 70890 +L29990 70920 +L29940 70940 +L29890 70940 +L29850 70920 +L29820 70890 +L29800 70850 +L29770 70750 +L29770 70630 +L29800 70540 +L29820 70490 +L29850 70470 +L29890 70440 +" /> +<path d="M30490 70610 +L30490 70940 +" /> +<path d="M30270 70610 +L30270 70870 +L30300 70920 +L30350 70940 +L30420 70940 +L30460 70920 +L30490 70890 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 106250,17250 +106250,17750 +106750,17750 +106250,18250 +105750,17750 +106250,17750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="106300" y="19250" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">GND</text> +<path d="M105910 18750 +L105870 18720 +L105800 18720 +L105720 18750 +L105680 18790 +L105650 18840 +L105630 18940 +L105630 19010 +L105650 19100 +L105680 19150 +L105720 19200 +L105800 19220 +L105840 19220 +L105910 19200 +L105940 19170 +L105940 19010 +L105840 19010 +" /> +<path d="M106150 19220 +L106150 18720 +L106440 19220 +L106440 18720 +" /> +<path d="M106680 19220 +L106680 18720 +L106800 18720 +L106870 18750 +L106910 18790 +L106940 18840 +L106960 18940 +L106960 19010 +L106940 19100 +L106910 19150 +L106870 19200 +L106800 19220 +L106680 19220 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 99750,17250 +99750,17750 +100250,17750 +99750,18250 +99250,17750 +99750,17750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="99800" y="19250" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">GND</text> +<path d="M99410 18750 +L99370 18720 +L99300 18720 +L99220 18750 +L99180 18790 +L99150 18840 +L99130 18940 +L99130 19010 +L99150 19100 +L99180 19150 +L99220 19200 +L99300 19220 +L99340 19220 +L99410 19200 +L99440 19170 +L99440 19010 +L99340 19010 +" /> +<path d="M99650 19220 +L99650 18720 +L99940 19220 +L99940 18720 +" /> +<path d="M100180 19220 +L100180 18720 +L100300 18720 +L100370 18750 +L100410 18790 +L100440 18840 +L100460 18940 +L100460 19010 +L100440 19100 +L100410 19150 +L100370 19200 +L100300 19220 +L100180 19220 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="86540" cy="42790" r="200" /> +<circle cx="87450" cy="43720" r="200" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 86800,42250 +88000,43450 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 87400,42850 +87800,42450 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 86000,42250 +86400,42650 +86400,42650 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 87600,43850 +88000,44250 +88000,44250 +88000,44250 +" /> +<path d="M86000 42250 +L86000 42250 +" /> +<path d="M88000 44250 +L88000 44250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="87000" y="41630" +textLength="2060" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW16</text> +<path d="M86090 41580 +L86160 41600 +L86280 41600 +L86330 41580 +L86350 41550 +L86380 41510 +L86380 41460 +L86350 41410 +L86330 41390 +L86280 41360 +L86190 41340 +L86140 41320 +L86110 41290 +L86090 41240 +L86090 41200 +L86110 41150 +L86140 41130 +L86190 41100 +L86300 41100 +L86380 41130 +" /> +<path d="M86540 41100 +L86660 41600 +L86760 41240 +L86850 41600 +L86970 41100 +" /> +<path d="M87420 41600 +L87140 41600 +" /> +<path d="M87280 41600 +L87280 41100 +L87230 41170 +L87190 41220 +L87140 41240 +" /> +<path d="M87850 41100 +L87760 41100 +L87710 41130 +L87690 41150 +L87640 41220 +L87610 41320 +L87610 41510 +L87640 41550 +L87660 41580 +L87710 41600 +L87800 41600 +L87850 41580 +L87880 41550 +L87900 41510 +L87900 41390 +L87880 41340 +L87850 41320 +L87800 41290 +L87710 41290 +L87660 41320 +L87640 41340 +L87610 41390 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="86540" cy="47290" r="200" /> +<circle cx="87450" cy="48220" r="200" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 86800,46750 +88000,47950 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 87400,47350 +87800,46950 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 86000,46750 +86400,47150 +86400,47150 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 87600,48350 +88000,48750 +88000,48750 +88000,48750 +" /> +<path d="M86000 46750 +L86000 46750 +" /> +<path d="M88000 48750 +L88000 48750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="87000" y="46130" +textLength="2060" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW15</text> +<path d="M86090 46080 +L86160 46100 +L86280 46100 +L86330 46080 +L86350 46050 +L86380 46010 +L86380 45960 +L86350 45910 +L86330 45890 +L86280 45860 +L86190 45840 +L86140 45820 +L86110 45790 +L86090 45740 +L86090 45700 +L86110 45650 +L86140 45630 +L86190 45600 +L86300 45600 +L86380 45630 +" /> +<path d="M86540 45600 +L86660 46100 +L86760 45740 +L86850 46100 +L86970 45600 +" /> +<path d="M87420 46100 +L87140 46100 +" /> +<path d="M87280 46100 +L87280 45600 +L87230 45670 +L87190 45720 +L87140 45740 +" /> +<path d="M87880 45600 +L87640 45600 +L87610 45840 +L87640 45820 +L87690 45790 +L87800 45790 +L87850 45820 +L87880 45840 +L87900 45890 +L87900 46010 +L87880 46050 +L87850 46080 +L87800 46100 +L87690 46100 +L87640 46080 +L87610 46050 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="86540" cy="51290" r="200" /> +<circle cx="87450" cy="52220" r="200" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 86800,50750 +88000,51950 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 87400,51350 +87800,50950 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 86000,50750 +86400,51150 +86400,51150 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 87600,52350 +88000,52750 +88000,52750 +88000,52750 +" /> +<path d="M86000 50750 +L86000 50750 +" /> +<path d="M88000 52750 +L88000 52750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="87000" y="50130" +textLength="2060" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW14</text> +<path d="M86090 50080 +L86160 50100 +L86280 50100 +L86330 50080 +L86350 50050 +L86380 50010 +L86380 49960 +L86350 49910 +L86330 49890 +L86280 49860 +L86190 49840 +L86140 49820 +L86110 49790 +L86090 49740 +L86090 49700 +L86110 49650 +L86140 49630 +L86190 49600 +L86300 49600 +L86380 49630 +" /> +<path d="M86540 49600 +L86660 50100 +L86760 49740 +L86850 50100 +L86970 49600 +" /> +<path d="M87420 50100 +L87140 50100 +" /> +<path d="M87280 50100 +L87280 49600 +L87230 49670 +L87190 49720 +L87140 49740 +" /> +<path d="M87850 49770 +L87850 50100 +" /> +<path d="M87730 49580 +L87610 49930 +L87920 49930 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="86540" cy="55790" r="200" /> +<circle cx="87450" cy="56720" r="200" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 86800,55250 +88000,56450 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 87400,55850 +87800,55450 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 86000,55250 +86400,55650 +86400,55650 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 87600,56850 +88000,57250 +88000,57250 +88000,57250 +" /> +<path d="M86000 55250 +L86000 55250 +" /> +<path d="M88000 57250 +L88000 57250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="87000" y="54630" +textLength="2060" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW13</text> +<path d="M86090 54580 +L86160 54600 +L86280 54600 +L86330 54580 +L86350 54550 +L86380 54510 +L86380 54460 +L86350 54410 +L86330 54390 +L86280 54360 +L86190 54340 +L86140 54320 +L86110 54290 +L86090 54240 +L86090 54200 +L86110 54150 +L86140 54130 +L86190 54100 +L86300 54100 +L86380 54130 +" /> +<path d="M86540 54100 +L86660 54600 +L86760 54240 +L86850 54600 +L86970 54100 +" /> +<path d="M87420 54600 +L87140 54600 +" /> +<path d="M87280 54600 +L87280 54100 +L87230 54170 +L87190 54220 +L87140 54240 +" /> +<path d="M87590 54100 +L87900 54100 +L87730 54290 +L87800 54290 +L87850 54320 +L87880 54340 +L87900 54390 +L87900 54510 +L87880 54550 +L87850 54580 +L87800 54600 +L87660 54600 +L87610 54580 +L87590 54550 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="66600" y="18500" width="800" height="2000" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M67000 18500 +L67000 18000 +" /> +<path d="M67000 20500 +L67000 21000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="68500" y="19020" +textLength="1510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">R16</text> +<path d="M68170 18990 +L68010 18750 +" /> +<path d="M67890 18990 +L67890 18490 +L68080 18490 +L68130 18520 +L68150 18540 +L68170 18590 +L68170 18660 +L68150 18710 +L68130 18730 +L68080 18750 +L67890 18750 +" /> +<path d="M68650 18990 +L68360 18990 +" /> +<path d="M68510 18990 +L68510 18490 +L68460 18560 +L68410 18610 +L68360 18630 +" /> +<path d="M69080 18490 +L68980 18490 +L68940 18520 +L68910 18540 +L68860 18610 +L68840 18710 +L68840 18900 +L68860 18940 +L68890 18970 +L68940 18990 +L69030 18990 +L69080 18970 +L69100 18940 +L69130 18900 +L69130 18780 +L69100 18730 +L69080 18710 +L69030 18680 +L68940 18680 +L68890 18710 +L68860 18730 +L68840 18780 +" /> +<text x="68690" y="19770" +textLength="1890" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">294k</text> +<path d="M67860 19290 +L67890 19270 +L67940 19240 +L68050 19240 +L68100 19270 +L68130 19290 +L68150 19340 +L68150 19380 +L68130 19460 +L67840 19740 +L68150 19740 +" /> +<path d="M68390 19740 +L68480 19740 +L68530 19720 +L68550 19690 +L68600 19620 +L68630 19530 +L68630 19340 +L68600 19290 +L68580 19270 +L68530 19240 +L68440 19240 +L68390 19270 +L68360 19290 +L68340 19340 +L68340 19460 +L68360 19500 +L68390 19530 +L68440 19550 +L68530 19550 +L68580 19530 +L68600 19500 +L68630 19460 +" /> +<path d="M69050 19410 +L69050 19740 +" /> +<path d="M68940 19220 +L68820 19570 +L69130 19570 +" /> +<path d="M69320 19740 +L69320 19240 +" /> +<path d="M69360 19550 +L69510 19740 +" /> +<path d="M69510 19410 +L69320 19600 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 57250,12250 +63250,12250 +63250,16250 +57250,16250 +Z" /> +<path d="M57250 13250 +L55250 13250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57550" y="13500" +textLength="1060" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">CB</text> +<path d="M57980 13420 +L57960 13450 +L57880 13470 +L57840 13470 +L57770 13450 +L57720 13400 +L57690 13350 +L57670 13260 +L57670 13190 +L57690 13090 +L57720 13040 +L57770 13000 +L57840 12970 +L57880 12970 +L57960 13000 +L57980 13020 +" /> +<path d="M58360 13210 +L58430 13230 +L58460 13260 +L58480 13300 +L58480 13380 +L58460 13420 +L58430 13450 +L58380 13470 +L58190 13470 +L58190 12970 +L58360 12970 +L58410 13000 +L58430 13020 +L58460 13070 +L58460 13110 +L58430 13160 +L58410 13190 +L58360 13210 +L58190 13210 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56250" y="13150" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">1</text> +<path d="M56390 13120 +L56100 13120 +" /> +<path d="M56250 13120 +L56250 12620 +L56200 12690 +L56150 12740 +L56100 12760 +" /> +<path d="M57250 14250 +L55250 14250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57550" y="14500" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">GND</text> +<path d="M57960 14000 +L57910 13970 +L57840 13970 +L57770 14000 +L57720 14040 +L57690 14090 +L57670 14190 +L57670 14260 +L57690 14350 +L57720 14400 +L57770 14450 +L57840 14470 +L57880 14470 +L57960 14450 +L57980 14420 +L57980 14260 +L57880 14260 +" /> +<path d="M58190 14470 +L58190 13970 +L58480 14470 +L58480 13970 +" /> +<path d="M58720 14470 +L58720 13970 +L58840 13970 +L58910 14000 +L58960 14040 +L58980 14090 +L59000 14190 +L59000 14260 +L58980 14350 +L58960 14400 +L58910 14450 +L58840 14470 +L58720 14470 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56250" y="14150" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">2</text> +<path d="M56100 13670 +L56130 13650 +L56170 13620 +L56290 13620 +L56340 13650 +L56360 13670 +L56390 13720 +L56390 13760 +L56360 13840 +L56080 14120 +L56390 14120 +" /> +<path d="M57250 15250 +L55250 15250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57550" y="15500" +textLength="990" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">FB</text> +<path d="M57860 15210 +L57690 15210 +" /> +<path d="M57690 15470 +L57690 14970 +L57930 14970 +" /> +<path d="M58290 15210 +L58360 15230 +L58380 15260 +L58410 15300 +L58410 15380 +L58380 15420 +L58360 15450 +L58310 15470 +L58120 15470 +L58120 14970 +L58290 14970 +L58340 15000 +L58360 15020 +L58380 15070 +L58380 15110 +L58360 15160 +L58340 15190 +L58290 15210 +L58120 15210 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56250" y="15150" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">3</text> +<path d="M56080 14620 +L56390 14620 +L56220 14810 +L56290 14810 +L56340 14840 +L56360 14860 +L56390 14910 +L56390 15030 +L56360 15070 +L56340 15100 +L56290 15120 +L56150 15120 +L56100 15100 +L56080 15070 +" /> +<path d="M63250 15250 +L65250 15250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="62950" y="15500" +textLength="1040" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">EN</text> +<path d="M62060 15210 +L62220 15210 +" /> +<path d="M62300 15470 +L62060 15470 +L62060 14970 +L62300 14970 +" /> +<path d="M62510 15470 +L62510 14970 +L62800 15470 +L62800 14970 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="64250" y="15150" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">4</text> +<path d="M64340 14790 +L64340 15120 +" /> +<path d="M64220 14600 +L64100 14950 +L64410 14950 +" /> +<path d="M63250 14250 +L65250 14250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="62950" y="14500" +textLength="1250" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">VIN</text> +<path d="M61770 13970 +L61940 14470 +L62110 13970 +" /> +<path d="M62270 14470 +L62270 13970 +" /> +<path d="M62510 14470 +L62510 13970 +L62800 14470 +L62800 13970 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="64250" y="14150" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">5</text> +<path d="M64360 13620 +L64130 13620 +L64100 13860 +L64130 13840 +L64170 13810 +L64290 13810 +L64340 13840 +L64360 13860 +L64390 13910 +L64390 14030 +L64360 14070 +L64340 14100 +L64290 14120 +L64170 14120 +L64130 14100 +L64100 14070 +" /> +<path d="M63250 13250 +L65250 13250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="62950" y="13500" +textLength="1110" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">SW</text> +<path d="M61960 13450 +L62030 13470 +L62150 13470 +L62200 13450 +L62220 13420 +L62250 13380 +L62250 13330 +L62220 13280 +L62200 13260 +L62150 13230 +L62060 13210 +L62010 13190 +L61990 13160 +L61960 13110 +L61960 13070 +L61990 13020 +L62010 13000 +L62060 12970 +L62180 12970 +L62250 13000 +" /> +<path d="M62420 12970 +L62530 13470 +L62630 13110 +L62720 13470 +L62840 12970 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="64250" y="13150" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">6</text> +<path d="M64340 12620 +L64250 12620 +L64200 12650 +L64170 12670 +L64130 12740 +L64100 12840 +L64100 13030 +L64130 13070 +L64150 13100 +L64200 13120 +L64290 13120 +L64340 13100 +L64360 13070 +L64390 13030 +L64390 12910 +L64360 12860 +L64340 12840 +L64290 12810 +L64200 12810 +L64150 12840 +L64130 12860 +L64100 12910 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="60250" y="10870" +textLength="1270" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">IC1</text> +<path d="M59760 10840 +L59760 10340 +" /> +<path d="M60280 10790 +L60260 10820 +L60190 10840 +L60140 10840 +L60070 10820 +L60020 10770 +L60000 10720 +L59970 10630 +L59970 10560 +L60000 10460 +L60020 10410 +L60070 10370 +L60140 10340 +L60190 10340 +L60260 10370 +L60280 10390 +" /> +<path d="M60760 10840 +L60470 10840 +" /> +<path d="M60610 10840 +L60610 10340 +L60570 10410 +L60520 10460 +L60470 10480 +" /> +<text x="60250" y="11780" +textLength="6560" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">TPS560430YFDBV</text> +<path d="M57040 11250 +L57330 11250 +" /> +<path d="M57190 11750 +L57190 11250 +" /> +<path d="M57500 11750 +L57500 11250 +L57690 11250 +L57730 11280 +L57760 11300 +L57780 11350 +L57780 11420 +L57760 11470 +L57730 11490 +L57690 11510 +L57500 11510 +" /> +<path d="M57970 11730 +L58040 11750 +L58160 11750 +L58210 11730 +L58230 11700 +L58260 11660 +L58260 11610 +L58230 11560 +L58210 11540 +L58160 11510 +L58070 11490 +L58020 11470 +L58000 11440 +L57970 11390 +L57970 11350 +L58000 11300 +L58020 11280 +L58070 11250 +L58190 11250 +L58260 11280 +" /> +<path d="M58710 11250 +L58470 11250 +L58450 11490 +L58470 11470 +L58520 11440 +L58640 11440 +L58690 11470 +L58710 11490 +L58730 11540 +L58730 11660 +L58710 11700 +L58690 11730 +L58640 11750 +L58520 11750 +L58470 11730 +L58450 11700 +" /> +<path d="M59160 11250 +L59070 11250 +L59020 11280 +L59000 11300 +L58950 11370 +L58920 11470 +L58920 11660 +L58950 11700 +L58970 11730 +L59020 11750 +L59110 11750 +L59160 11730 +L59190 11700 +L59210 11660 +L59210 11540 +L59190 11490 +L59160 11470 +L59110 11440 +L59020 11440 +L58970 11470 +L58950 11490 +L58920 11540 +" /> +<path d="M59520 11250 +L59570 11250 +L59610 11280 +L59640 11300 +L59660 11350 +L59690 11440 +L59690 11560 +L59660 11660 +L59640 11700 +L59610 11730 +L59570 11750 +L59520 11750 +L59470 11730 +L59450 11700 +L59420 11660 +L59400 11560 +L59400 11440 +L59420 11350 +L59450 11300 +L59470 11280 +L59520 11250 +" /> +<path d="M60110 11420 +L60110 11750 +" /> +<path d="M60000 11230 +L59880 11580 +L60190 11580 +" /> +<path d="M60330 11250 +L60640 11250 +L60470 11440 +L60540 11440 +L60590 11470 +L60610 11490 +L60640 11540 +L60640 11660 +L60610 11700 +L60590 11730 +L60540 11750 +L60400 11750 +L60350 11730 +L60330 11700 +" /> +<path d="M60950 11250 +L61000 11250 +L61040 11280 +L61070 11300 +L61090 11350 +L61110 11440 +L61110 11560 +L61090 11660 +L61070 11700 +L61040 11730 +L61000 11750 +L60950 11750 +L60900 11730 +L60880 11700 +L60850 11660 +L60830 11560 +L60830 11440 +L60850 11350 +L60880 11300 +L60900 11280 +L60950 11250 +" /> +<path d="M61420 11510 +L61420 11750 +" /> +<path d="M61260 11250 +L61420 11510 +L61590 11250 +" /> +<path d="M61920 11490 +L61760 11490 +" /> +<path d="M61760 11750 +L61760 11250 +L62000 11250 +" /> +<path d="M62190 11750 +L62190 11250 +L62300 11250 +L62380 11280 +L62420 11320 +L62450 11370 +L62470 11470 +L62470 11540 +L62450 11630 +L62420 11680 +L62380 11730 +L62300 11750 +L62190 11750 +" /> +<path d="M62850 11490 +L62920 11510 +L62950 11540 +L62970 11580 +L62970 11660 +L62950 11700 +L62920 11730 +L62880 11750 +L62690 11750 +L62690 11250 +L62850 11250 +L62900 11280 +L62920 11300 +L62950 11350 +L62950 11390 +L62920 11440 +L62900 11470 +L62850 11490 +L62690 11490 +" /> +<path d="M63110 11250 +L63280 11750 +L63450 11250 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="69850" y="16850" width="1800" height="200" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:1.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="69850" y="17450" width="1800" height="200" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 70050,16350 +70450,16350 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 70250,16150 +70250,16550 +" /> +<path d="M70750 16850 +L70750 15750 +" /> +<path d="M70750 17650 +L70750 18750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="71750" y="16770" +textLength="1510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">C10</text> +<path d="M71420 16690 +L71400 16720 +L71330 16740 +L71280 16740 +L71210 16720 +L71160 16670 +L71140 16620 +L71110 16530 +L71110 16460 +L71140 16360 +L71160 16310 +L71210 16270 +L71280 16240 +L71330 16240 +L71400 16270 +L71420 16290 +" /> +<path d="M71900 16740 +L71610 16740 +" /> +<path d="M71760 16740 +L71760 16240 +L71710 16310 +L71660 16360 +L71610 16380 +" /> +<path d="M72210 16240 +L72260 16240 +L72300 16270 +L72330 16290 +L72350 16340 +L72380 16430 +L72380 16550 +L72350 16650 +L72330 16690 +L72300 16720 +L72260 16740 +L72210 16740 +L72160 16720 +L72140 16690 +L72110 16650 +L72090 16550 +L72090 16430 +L72110 16340 +L72140 16290 +L72160 16270 +L72210 16240 +" /> +<text x="72600" y="17520" +textLength="1700" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">4.7u</text> +<path d="M72110 17160 +L72110 17490 +" /> +<path d="M71990 16970 +L71870 17320 +L72180 17320 +" /> +<path d="M72370 17440 +L72390 17470 +L72370 17490 +L72350 17470 +L72370 17440 +L72370 17490 +" /> +<path d="M72560 16990 +L72890 16990 +L72680 17490 +" /> +<path d="M73300 17160 +L73300 17490 +" /> +<path d="M73080 17160 +L73080 17420 +L73110 17470 +L73150 17490 +L73230 17490 +L73270 17470 +L73300 17440 +" /> +</g> +<g style="fill:#840084; fill-opacity:0.0; +stroke:#840084; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="72250" y="18520" +textLength="2850" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">3mOhm</text> +<path d="M70920 17990 +L71230 17990 +L71070 18180 +L71140 18180 +L71190 18210 +L71210 18230 +L71230 18280 +L71230 18400 +L71210 18440 +L71190 18470 +L71140 18490 +L71000 18490 +L70950 18470 +L70920 18440 +" /> +<path d="M71450 18490 +L71450 18160 +" /> +<path d="M71450 18210 +L71470 18180 +L71520 18160 +L71590 18160 +L71640 18180 +L71660 18230 +L71660 18490 +" /> +<path d="M71660 18230 +L71690 18180 +L71730 18160 +L71800 18160 +L71850 18180 +L71880 18230 +L71880 18490 +" /> +<path d="M72210 17990 +L72300 17990 +L72350 18020 +L72400 18060 +L72420 18160 +L72420 18320 +L72400 18420 +L72350 18470 +L72300 18490 +L72210 18490 +L72160 18470 +L72110 18420 +L72090 18320 +L72090 18160 +L72110 18060 +L72160 18020 +L72210 17990 +" /> +<path d="M72640 18490 +L72640 17990 +" /> +<path d="M72850 18490 +L72850 18230 +L72830 18180 +L72780 18160 +L72710 18160 +L72660 18180 +L72640 18210 +" /> +<path d="M73090 18490 +L73090 18160 +" /> +<path d="M73090 18210 +L73110 18180 +L73160 18160 +L73230 18160 +L73280 18180 +L73300 18230 +L73300 18490 +" /> +<path d="M73300 18230 +L73330 18180 +L73380 18160 +L73450 18160 +L73500 18180 +L73520 18230 +L73520 18490 +" /> +</g> +</g> +<g style="fill:#840084; fill-opacity:0.0; +stroke:#840084; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 59950,7950 +59950,9550 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 60550,7950 +60550,9550 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M60650 8750 +L61750 8750 +" /> +<path d="M59850 8750 +L58750 8750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="60250" y="6500" +textLength="1040" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">C9</text> +<path d="M60160 6420 +L60140 6450 +L60070 6470 +L60020 6470 +L59950 6450 +L59900 6400 +L59880 6350 +L59850 6260 +L59850 6190 +L59880 6090 +L59900 6040 +L59950 6000 +L60020 5970 +L60070 5970 +L60140 6000 +L60160 6020 +" /> +<path d="M60400 6470 +L60500 6470 +L60540 6450 +L60570 6420 +L60610 6350 +L60640 6260 +L60640 6070 +L60610 6020 +L60590 6000 +L60540 5970 +L60450 5970 +L60400 6000 +L60380 6020 +L60350 6070 +L60350 6190 +L60380 6230 +L60400 6260 +L60450 6280 +L60540 6280 +L60590 6260 +L60610 6230 +L60640 6190 +" /> +<text x="60250" y="7410" +textLength="1940" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">100n</text> +<path d="M59690 7380 +L59400 7380 +" /> +<path d="M59540 7380 +L59540 6880 +L59500 6950 +L59450 7000 +L59400 7020 +" /> +<path d="M60000 6880 +L60040 6880 +L60090 6910 +L60110 6930 +L60140 6980 +L60160 7070 +L60160 7190 +L60140 7290 +L60110 7330 +L60090 7360 +L60040 7380 +L60000 7380 +L59950 7360 +L59920 7330 +L59900 7290 +L59880 7190 +L59880 7070 +L59900 6980 +L59920 6930 +L59950 6910 +L60000 6880 +" /> +<path d="M60470 6880 +L60520 6880 +L60570 6910 +L60590 6930 +L60610 6980 +L60640 7070 +L60640 7190 +L60610 7290 +L60590 7330 +L60570 7360 +L60520 7380 +L60470 7380 +L60420 7360 +L60400 7330 +L60380 7290 +L60350 7190 +L60350 7070 +L60380 6980 +L60400 6930 +L60420 6910 +L60470 6880 +" /> +<path d="M60850 7050 +L60850 7380 +" /> +<path d="M60850 7100 +L60880 7070 +L60920 7050 +L61000 7050 +L61040 7070 +L61070 7120 +L61070 7380 +" /> +</g> +<g style="fill:#840084; fill-opacity:0.0; +stroke:#840084; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="62500" y="8270" +textLength="3320" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">64mOhm</text> +<path d="M61200 7740 +L61100 7740 +L61050 7770 +L61030 7790 +L60980 7860 +L60960 7960 +L60960 8150 +L60980 8190 +L61010 8220 +L61050 8240 +L61150 8240 +L61200 8220 +L61220 8190 +L61250 8150 +L61250 8030 +L61220 7980 +L61200 7960 +L61150 7930 +L61050 7930 +L61010 7960 +L60980 7980 +L60960 8030 +" /> +<path d="M61670 7910 +L61670 8240 +" /> +<path d="M61550 7720 +L61440 8070 +L61750 8070 +" /> +<path d="M61940 8240 +L61940 7910 +" /> +<path d="M61940 7960 +L61960 7930 +L62010 7910 +L62080 7910 +L62130 7930 +L62150 7980 +L62150 8240 +" /> +<path d="M62150 7980 +L62170 7930 +L62220 7910 +L62290 7910 +L62340 7930 +L62360 7980 +L62360 8240 +" /> +<path d="M62700 7740 +L62790 7740 +L62840 7770 +L62890 7810 +L62910 7910 +L62910 8070 +L62890 8170 +L62840 8220 +L62790 8240 +L62700 8240 +L62650 8220 +L62600 8170 +L62580 8070 +L62580 7910 +L62600 7810 +L62650 7770 +L62700 7740 +" /> +<path d="M63130 8240 +L63130 7740 +" /> +<path d="M63340 8240 +L63340 7980 +L63320 7930 +L63270 7910 +L63200 7910 +L63150 7930 +L63130 7960 +" /> +<path d="M63580 8240 +L63580 7910 +" /> +<path d="M63580 7960 +L63600 7930 +L63650 7910 +L63720 7910 +L63770 7930 +L63790 7980 +L63790 8240 +" /> +<path d="M63790 7980 +L63820 7930 +L63860 7910 +L63940 7910 +L63980 7930 +L64010 7980 +L64010 8240 +" /> +</g> +</g> +<g style="fill:#840084; fill-opacity:0.0; +stroke:#840084; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#FFFFC2; fill-opacity:0.0; +stroke:#FFFFC2; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#FFFFC2; fill-opacity:0.6; +stroke:#FFFFC2; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="100750" y="23750" width="2000" height="8000" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.6; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="100750" y="23750" width="2000" height="8000" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="100750" y="31200" width="500" height="100" rx="0" /> +<rect x="100750" y="30200" width="500" height="100" rx="0" /> +<rect x="100750" y="29200" width="500" height="100" rx="0" /> +<rect x="100750" y="28200" width="500" height="100" rx="0" /> +<rect x="100750" y="27200" width="500" height="100" rx="0" /> +<rect x="100750" y="26200" width="500" height="100" rx="0" /> +<rect x="100750" y="25200" width="500" height="100" rx="0" /> +<rect x="100750" y="24200" width="500" height="100" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="100750" y="23750" width="2000" height="8000" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="102250" y="31200" width="500" height="100" rx="0" /> +<rect x="102250" y="30200" width="500" height="100" rx="0" /> +<rect x="102250" y="29200" width="500" height="100" rx="0" /> +<rect x="102250" y="28200" width="500" height="100" rx="0" /> +<rect x="102250" y="27200" width="500" height="100" rx="0" /> +<rect x="102250" y="26200" width="500" height="100" rx="0" /> +<rect x="102250" y="25200" width="500" height="100" rx="0" /> +<rect x="102250" y="24200" width="500" height="100" rx="0" /> +<path d="M100750 24250 +L99250 24250 +" /> +<text x="100000" y="24150" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">1</text> +<path d="M100140 24120 +L99850 24120 +" /> +<path d="M100000 24120 +L100000 23620 +L99950 23690 +L99900 23740 +L99850 23760 +" /> +<path d="M102750 28250 +L104250 28250 +" /> +<text x="103500" y="28150" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">10</text> +<path d="M103400 28120 +L103110 28120 +" /> +<path d="M103260 28120 +L103260 27620 +L103210 27690 +L103160 27740 +L103110 27760 +" /> +<path d="M103710 27620 +L103760 27620 +L103800 27650 +L103830 27670 +L103850 27720 +L103880 27810 +L103880 27930 +L103850 28030 +L103830 28070 +L103800 28100 +L103760 28120 +L103710 28120 +L103660 28100 +L103640 28070 +L103610 28030 +L103590 27930 +L103590 27810 +L103610 27720 +L103640 27670 +L103660 27650 +L103710 27620 +" /> +<path d="M100750 29250 +L99250 29250 +" /> +<text x="100000" y="29150" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">11</text> +<path d="M99900 29120 +L99610 29120 +" /> +<path d="M99760 29120 +L99760 28620 +L99710 28690 +L99660 28740 +L99610 28760 +" /> +<path d="M100380 29120 +L100090 29120 +" /> +<path d="M100230 29120 +L100230 28620 +L100190 28690 +L100140 28740 +L100090 28760 +" /> +<path d="M102750 29250 +L104250 29250 +" /> +<text x="103500" y="29150" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">12</text> +<path d="M103400 29120 +L103110 29120 +" /> +<path d="M103260 29120 +L103260 28620 +L103210 28690 +L103160 28740 +L103110 28760 +" /> +<path d="M103590 28670 +L103610 28650 +L103660 28620 +L103780 28620 +L103830 28650 +L103850 28670 +L103880 28720 +L103880 28760 +L103850 28840 +L103570 29120 +L103880 29120 +" /> +<path d="M100750 30250 +L99250 30250 +" /> +<text x="100000" y="30150" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">13</text> +<path d="M99900 30120 +L99610 30120 +" /> +<path d="M99760 30120 +L99760 29620 +L99710 29690 +L99660 29740 +L99610 29760 +" /> +<path d="M100070 29620 +L100380 29620 +L100210 29810 +L100280 29810 +L100330 29840 +L100350 29860 +L100380 29910 +L100380 30030 +L100350 30070 +L100330 30100 +L100280 30120 +L100140 30120 +L100090 30100 +L100070 30070 +" /> +<path d="M102750 30250 +L104250 30250 +" /> +<text x="103500" y="30150" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">14</text> +<path d="M103400 30120 +L103110 30120 +" /> +<path d="M103260 30120 +L103260 29620 +L103210 29690 +L103160 29740 +L103110 29760 +" /> +<path d="M103830 29790 +L103830 30120 +" /> +<path d="M103710 29600 +L103590 29950 +L103900 29950 +" /> +<path d="M100750 31250 +L99250 31250 +" /> +<text x="100000" y="31150" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">15</text> +<path d="M99900 31120 +L99610 31120 +" /> +<path d="M99760 31120 +L99760 30620 +L99710 30690 +L99660 30740 +L99610 30760 +" /> +<path d="M100350 30620 +L100110 30620 +L100090 30860 +L100110 30840 +L100160 30810 +L100280 30810 +L100330 30840 +L100350 30860 +L100380 30910 +L100380 31030 +L100350 31070 +L100330 31100 +L100280 31120 +L100160 31120 +L100110 31100 +L100090 31070 +" /> +<path d="M102750 31250 +L104250 31250 +" /> +<text x="103500" y="31150" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">16</text> +<path d="M103400 31120 +L103110 31120 +" /> +<path d="M103260 31120 +L103260 30620 +L103210 30690 +L103160 30740 +L103110 30760 +" /> +<path d="M103830 30620 +L103730 30620 +L103690 30650 +L103660 30670 +L103610 30740 +L103590 30840 +L103590 31030 +L103610 31070 +L103640 31100 +L103690 31120 +L103780 31120 +L103830 31100 +L103850 31070 +L103880 31030 +L103880 30910 +L103850 30860 +L103830 30840 +L103780 30810 +L103690 30810 +L103640 30840 +L103610 30860 +L103590 30910 +" /> +<path d="M102750 24250 +L104250 24250 +" /> +<text x="103500" y="24150" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">2</text> +<path d="M103350 23670 +L103380 23650 +L103420 23620 +L103540 23620 +L103590 23650 +L103610 23670 +L103640 23720 +L103640 23760 +L103610 23840 +L103330 24120 +L103640 24120 +" /> +<path d="M100750 25250 +L99250 25250 +" /> +<text x="100000" y="25150" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">3</text> +<path d="M99830 24620 +L100140 24620 +L99970 24810 +L100040 24810 +L100090 24840 +L100110 24860 +L100140 24910 +L100140 25030 +L100110 25070 +L100090 25100 +L100040 25120 +L99900 25120 +L99850 25100 +L99830 25070 +" /> +<path d="M102750 25250 +L104250 25250 +" /> +<text x="103500" y="25150" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">4</text> +<path d="M103590 24790 +L103590 25120 +" /> +<path d="M103470 24600 +L103350 24950 +L103660 24950 +" /> +<path d="M100750 26250 +L99250 26250 +" /> +<text x="100000" y="26150" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">5</text> +<path d="M100110 25620 +L99880 25620 +L99850 25860 +L99880 25840 +L99920 25810 +L100040 25810 +L100090 25840 +L100110 25860 +L100140 25910 +L100140 26030 +L100110 26070 +L100090 26100 +L100040 26120 +L99920 26120 +L99880 26100 +L99850 26070 +" /> +<path d="M102750 26250 +L104250 26250 +" /> +<text x="103500" y="26150" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">6</text> +<path d="M103590 25620 +L103500 25620 +L103450 25650 +L103420 25670 +L103380 25740 +L103350 25840 +L103350 26030 +L103380 26070 +L103400 26100 +L103450 26120 +L103540 26120 +L103590 26100 +L103610 26070 +L103640 26030 +L103640 25910 +L103610 25860 +L103590 25840 +L103540 25810 +L103450 25810 +L103400 25840 +L103380 25860 +L103350 25910 +" /> +<path d="M100750 27250 +L99250 27250 +" /> +<text x="100000" y="27150" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">7</text> +<path d="M99830 26620 +L100160 26620 +L99950 27120 +" /> +<path d="M102750 27250 +L104250 27250 +" /> +<text x="103500" y="27150" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">8</text> +<path d="M103450 26840 +L103400 26810 +L103380 26790 +L103350 26740 +L103350 26720 +L103380 26670 +L103400 26650 +L103450 26620 +L103540 26620 +L103590 26650 +L103610 26670 +L103640 26720 +L103640 26740 +L103610 26790 +L103590 26810 +L103540 26840 +L103450 26840 +L103400 26860 +L103380 26880 +L103350 26930 +L103350 27030 +L103380 27070 +L103400 27100 +L103450 27120 +L103540 27120 +L103590 27100 +L103610 27070 +L103640 27030 +L103640 26930 +L103610 26880 +L103590 26860 +L103540 26840 +" /> +<path d="M100750 28250 +L99250 28250 +" /> +<text x="100000" y="28150" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">9</text> +<path d="M99900 28120 +L100000 28120 +L100040 28100 +L100070 28070 +L100110 28000 +L100140 27910 +L100140 27720 +L100110 27670 +L100090 27650 +L100040 27620 +L99950 27620 +L99900 27650 +L99880 27670 +L99850 27720 +L99850 27840 +L99880 27880 +L99900 27910 +L99950 27930 +L100040 27930 +L100090 27910 +L100110 27880 +L100140 27840 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="101750" y="22350" +textLength="920" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">J3</text> +<path d="M101580 21820 +L101580 22180 +L101550 22250 +L101510 22300 +L101440 22320 +L101390 22320 +" /> +<path d="M101770 21820 +L102080 21820 +L101910 22010 +L101980 22010 +L102030 22040 +L102050 22060 +L102080 22110 +L102080 22230 +L102050 22270 +L102030 22300 +L101980 22320 +L101840 22320 +L101790 22300 +L101770 22270 +" /> +<text x="101750" y="23260" +textLength="8510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">Conn_02x08_Odd_Even</text> +<path d="M97920 23180 +L97900 23210 +L97830 23230 +L97780 23230 +L97710 23210 +L97660 23160 +L97640 23110 +L97610 23020 +L97610 22950 +L97640 22850 +L97660 22800 +L97710 22760 +L97780 22730 +L97830 22730 +L97900 22760 +L97920 22780 +" /> +<path d="M98210 23230 +L98160 23210 +L98140 23180 +L98110 23140 +L98110 22990 +L98140 22950 +L98160 22920 +L98210 22900 +L98280 22900 +L98330 22920 +L98350 22950 +L98380 22990 +L98380 23140 +L98350 23180 +L98330 23210 +L98280 23230 +L98210 23230 +" /> +<path d="M98590 22900 +L98590 23230 +" /> +<path d="M98590 22950 +L98610 22920 +L98660 22900 +L98730 22900 +L98780 22920 +L98800 22970 +L98800 23230 +" /> +<path d="M99040 22900 +L99040 23230 +" /> +<path d="M99040 22950 +L99070 22920 +L99110 22900 +L99190 22900 +L99230 22920 +L99260 22970 +L99260 23230 +" /> +<path d="M99380 23280 +L99760 23280 +" /> +<path d="M99970 22730 +L100020 22730 +L100070 22760 +L100090 22780 +L100110 22830 +L100140 22920 +L100140 23040 +L100110 23140 +L100090 23180 +L100070 23210 +L100020 23230 +L99970 23230 +L99920 23210 +L99900 23180 +L99880 23140 +L99850 23040 +L99850 22920 +L99880 22830 +L99900 22780 +L99920 22760 +L99970 22730 +" /> +<path d="M100330 22780 +L100350 22760 +L100400 22730 +L100520 22730 +L100570 22760 +L100590 22780 +L100610 22830 +L100610 22870 +L100590 22950 +L100300 23230 +L100610 23230 +" /> +<path d="M100780 23230 +L101040 22900 +" /> +<path d="M100780 22900 +L101040 23230 +" /> +<path d="M101330 22730 +L101380 22730 +L101420 22760 +L101450 22780 +L101470 22830 +L101500 22920 +L101500 23040 +L101470 23140 +L101450 23180 +L101420 23210 +L101380 23230 +L101330 23230 +L101280 23210 +L101260 23180 +L101230 23140 +L101210 23040 +L101210 22920 +L101230 22830 +L101260 22780 +L101280 22760 +L101330 22730 +" /> +<path d="M101780 22950 +L101730 22920 +L101710 22900 +L101690 22850 +L101690 22830 +L101710 22780 +L101730 22760 +L101780 22730 +L101880 22730 +L101920 22760 +L101950 22780 +L101970 22830 +L101970 22850 +L101950 22900 +L101920 22920 +L101880 22950 +L101780 22950 +L101730 22970 +L101710 22990 +L101690 23040 +L101690 23140 +L101710 23180 +L101730 23210 +L101780 23230 +L101880 23230 +L101920 23210 +L101950 23180 +L101970 23140 +L101970 23040 +L101950 22990 +L101920 22970 +L101880 22950 +" /> +<path d="M102070 23280 +L102450 23280 +" /> +<path d="M102660 22730 +L102760 22730 +L102800 22760 +L102850 22800 +L102880 22900 +L102880 23060 +L102850 23160 +L102800 23210 +L102760 23230 +L102660 23230 +L102610 23210 +L102570 23160 +L102540 23060 +L102540 22900 +L102570 22800 +L102610 22760 +L102660 22730 +" /> +<path d="M103300 23230 +L103300 22730 +" /> +<path d="M103300 23210 +L103260 23230 +L103160 23230 +L103110 23210 +L103090 23180 +L103070 23140 +L103070 22990 +L103090 22950 +L103110 22920 +L103160 22900 +L103260 22900 +L103300 22920 +" /> +<path d="M103760 23230 +L103760 22730 +" /> +<path d="M103760 23210 +L103710 23230 +L103610 23230 +L103570 23210 +L103540 23180 +L103520 23140 +L103520 22990 +L103540 22950 +L103570 22920 +L103610 22900 +L103710 22900 +L103760 22920 +" /> +<path d="M103880 23280 +L104260 23280 +" /> +<path d="M104380 22970 +L104540 22970 +" /> +<path d="M104610 23230 +L104380 23230 +L104380 22730 +L104610 22730 +" /> +<path d="M104780 22900 +L104900 23230 +L105020 22900 +" /> +<path d="M105400 23210 +L105350 23230 +L105260 23230 +L105210 23210 +L105190 23160 +L105190 22970 +L105210 22920 +L105260 22900 +L105350 22900 +L105400 22920 +L105420 22970 +L105420 23020 +L105190 23060 +" /> +<path d="M105640 22900 +L105640 23230 +" /> +<path d="M105640 22950 +L105660 22920 +L105710 22900 +L105780 22900 +L105830 22920 +L105850 22970 +L105850 23230 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="28850" y="8000" width="800" height="2000" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M29250 8000 +L29250 7500 +" /> +<path d="M29250 10000 +L29250 10500 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="28270" y="8020" +textLength="1040" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">R5</text> +<path d="M28180 7990 +L28020 7750 +" /> +<path d="M27900 7990 +L27900 7490 +L28090 7490 +L28130 7520 +L28160 7540 +L28180 7590 +L28180 7660 +L28160 7710 +L28130 7730 +L28090 7750 +L27900 7750 +" /> +<path d="M28630 7490 +L28400 7490 +L28370 7730 +L28400 7710 +L28440 7680 +L28560 7680 +L28610 7710 +L28630 7730 +L28660 7780 +L28660 7900 +L28630 7940 +L28610 7970 +L28560 7990 +L28440 7990 +L28400 7970 +L28370 7940 +" /> +<text x="28220" y="9270" +textLength="940" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">1k</text> +<path d="M28160 9240 +L27870 9240 +" /> +<path d="M28010 9240 +L28010 8740 +L27970 8810 +L27920 8860 +L27870 8880 +" /> +<path d="M28370 9240 +L28370 8740 +" /> +<path d="M28420 9050 +L28560 9240 +" /> +<path d="M28560 8910 +L28370 9100 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 23950,70550 +25550,70550 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 23950,69950 +25550,69950 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M24750 69850 +L24750 68750 +" /> +<path d="M24750 70650 +L24750 71750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="26420" y="70060" +textLength="1040" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">C5</text> +<path d="M26330 69980 +L26310 70010 +L26240 70030 +L26190 70030 +L26120 70010 +L26070 69960 +L26050 69910 +L26020 69820 +L26020 69750 +L26050 69650 +L26070 69600 +L26120 69560 +L26190 69530 +L26240 69530 +L26310 69560 +L26330 69580 +" /> +<path d="M26780 69530 +L26550 69530 +L26520 69770 +L26550 69750 +L26590 69720 +L26710 69720 +L26760 69750 +L26780 69770 +L26810 69820 +L26810 69940 +L26780 69980 +L26760 70010 +L26710 70030 +L26590 70030 +L26550 70010 +L26520 69980 +" /> +<text x="26870" y="70970" +textLength="1940" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">100n</text> +<path d="M26310 70940 +L26020 70940 +" /> +<path d="M26160 70940 +L26160 70440 +L26120 70510 +L26070 70560 +L26020 70580 +" /> +<path d="M26620 70440 +L26660 70440 +L26710 70470 +L26730 70490 +L26760 70540 +L26780 70630 +L26780 70750 +L26760 70850 +L26730 70890 +L26710 70920 +L26660 70940 +L26620 70940 +L26570 70920 +L26540 70890 +L26520 70850 +L26500 70750 +L26500 70630 +L26520 70540 +L26540 70490 +L26570 70470 +L26620 70440 +" /> +<path d="M27090 70440 +L27140 70440 +L27190 70470 +L27210 70490 +L27230 70540 +L27260 70630 +L27260 70750 +L27230 70850 +L27210 70890 +L27190 70920 +L27140 70940 +L27090 70940 +L27040 70920 +L27020 70890 +L27000 70850 +L26970 70750 +L26970 70630 +L27000 70540 +L27020 70490 +L27040 70470 +L27090 70440 +" /> +<path d="M27470 70610 +L27470 70940 +" /> +<path d="M27470 70660 +L27500 70630 +L27540 70610 +L27610 70610 +L27660 70630 +L27690 70680 +L27690 70940 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="10100" y="18000" width="800" height="2000" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M10500 18000 +L10500 17500 +" /> +<path d="M10500 20000 +L10500 20500 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="11520" y="18520" +textLength="1040" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">R2</text> +<path d="M11430 18490 +L11270 18250 +" /> +<path d="M11150 18490 +L11150 17990 +L11340 17990 +L11380 18020 +L11410 18040 +L11430 18090 +L11430 18160 +L11410 18210 +L11380 18230 +L11340 18250 +L11150 18250 +" /> +<path d="M11620 18040 +L11650 18020 +L11690 17990 +L11810 17990 +L11860 18020 +L11880 18040 +L11910 18090 +L11910 18130 +L11880 18210 +L11600 18490 +L11910 18490 +" /> +<text x="11710" y="19270" +textLength="1420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">1k5</text> +<path d="M11410 19240 +L11120 19240 +" /> +<path d="M11260 19240 +L11260 18740 +L11220 18810 +L11170 18860 +L11120 18880 +" /> +<path d="M11620 19240 +L11620 18740 +" /> +<path d="M11670 19050 +L11810 19240 +" /> +<path d="M11810 18910 +L11620 19100 +" /> +<path d="M12260 18740 +L12030 18740 +L12000 18980 +L12030 18960 +L12070 18930 +L12190 18930 +L12240 18960 +L12260 18980 +L12290 19030 +L12290 19150 +L12260 19190 +L12240 19220 +L12190 19240 +L12070 19240 +L12030 19220 +L12000 19190 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="9100" y="18000" width="800" height="2000" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M9500 18000 +L9500 17500 +" /> +<path d="M9500 20000 +L9500 20500 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="8520" y="18520" +textLength="1040" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">R4</text> +<path d="M8430 18490 +L8270 18250 +" /> +<path d="M8150 18490 +L8150 17990 +L8340 17990 +L8380 18020 +L8410 18040 +L8430 18090 +L8430 18160 +L8410 18210 +L8380 18230 +L8340 18250 +L8150 18250 +" /> +<path d="M8860 18160 +L8860 18490 +" /> +<path d="M8740 17970 +L8620 18320 +L8930 18320 +" /> +<text x="8210" y="19270" +textLength="1420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">1k5</text> +<path d="M7910 19240 +L7620 19240 +" /> +<path d="M7760 19240 +L7760 18740 +L7720 18810 +L7670 18860 +L7620 18880 +" /> +<path d="M8120 19240 +L8120 18740 +" /> +<path d="M8170 19050 +L8310 19240 +" /> +<path d="M8310 18910 +L8120 19100 +" /> +<path d="M8760 18740 +L8530 18740 +L8500 18980 +L8530 18960 +L8570 18930 +L8690 18930 +L8740 18960 +L8760 18980 +L8790 19030 +L8790 19150 +L8760 19190 +L8740 19220 +L8690 19240 +L8570 19240 +L8530 19220 +L8500 19190 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="10100" y="7250" width="800" height="2000" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M10500 7250 +L10500 6750 +" /> +<path d="M10500 9250 +L10500 9750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="11520" y="7020" +textLength="1040" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">R3</text> +<path d="M11430 6990 +L11270 6750 +" /> +<path d="M11150 6990 +L11150 6490 +L11340 6490 +L11380 6520 +L11410 6540 +L11430 6590 +L11430 6660 +L11410 6710 +L11380 6730 +L11340 6750 +L11150 6750 +" /> +<path d="M11600 6490 +L11910 6490 +L11740 6680 +L11810 6680 +L11860 6710 +L11880 6730 +L11910 6780 +L11910 6900 +L11880 6940 +L11860 6970 +L11810 6990 +L11670 6990 +L11620 6970 +L11600 6940 +" /> +<text x="11470" y="8270" +textLength="940" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">1k</text> +<path d="M11410 8240 +L11120 8240 +" /> +<path d="M11260 8240 +L11260 7740 +L11220 7810 +L11170 7860 +L11120 7880 +" /> +<path d="M11620 8240 +L11620 7740 +" /> +<path d="M11670 8050 +L11810 8240 +" /> +<path d="M11810 7910 +L11620 8100 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="29100" y="17250" width="800" height="2000" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M29500 17250 +L29500 16750 +" /> +<path d="M29500 19250 +L29500 19750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="30520" y="17770" +textLength="1040" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">R6</text> +<path d="M30430 17740 +L30270 17500 +" /> +<path d="M30150 17740 +L30150 17240 +L30340 17240 +L30380 17270 +L30410 17290 +L30430 17340 +L30430 17410 +L30410 17460 +L30380 17480 +L30340 17500 +L30150 17500 +" /> +<path d="M30860 17240 +L30770 17240 +L30720 17270 +L30690 17290 +L30650 17360 +L30620 17460 +L30620 17650 +L30650 17690 +L30670 17720 +L30720 17740 +L30810 17740 +L30860 17720 +L30880 17690 +L30910 17650 +L30910 17530 +L30880 17480 +L30860 17460 +L30810 17430 +L30720 17430 +L30670 17460 +L30650 17480 +L30620 17530 +" /> +<text x="30710" y="18520" +textLength="1420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">1k5</text> +<path d="M30410 18490 +L30120 18490 +" /> +<path d="M30260 18490 +L30260 17990 +L30220 18060 +L30170 18110 +L30120 18130 +" /> +<path d="M30620 18490 +L30620 17990 +" /> +<path d="M30670 18300 +L30810 18490 +" /> +<path d="M30810 18160 +L30620 18350 +" /> +<path d="M31260 17990 +L31030 17990 +L31000 18230 +L31030 18210 +L31070 18180 +L31190 18180 +L31240 18210 +L31260 18230 +L31290 18280 +L31290 18400 +L31260 18440 +L31240 18470 +L31190 18490 +L31070 18490 +L31030 18470 +L31000 18440 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="9100" y="7250" width="800" height="2000" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M9500 7250 +L9500 6750 +" /> +<path d="M9500 9250 +L9500 9750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="8520" y="7270" +textLength="1040" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">R1</text> +<path d="M8430 7240 +L8270 7000 +" /> +<path d="M8150 7240 +L8150 6740 +L8340 6740 +L8380 6770 +L8410 6790 +L8430 6840 +L8430 6910 +L8410 6960 +L8380 6980 +L8340 7000 +L8150 7000 +" /> +<path d="M8910 7240 +L8620 7240 +" /> +<path d="M8770 7240 +L8770 6740 +L8720 6810 +L8670 6860 +L8620 6880 +" /> +<text x="8470" y="8520" +textLength="940" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">1k</text> +<path d="M8410 8490 +L8120 8490 +" /> +<path d="M8260 8490 +L8260 7990 +L8220 8060 +L8170 8110 +L8120 8130 +" /> +<path d="M8620 8490 +L8620 7990 +" /> +<path d="M8670 8300 +L8810 8490 +" /> +<path d="M8810 8160 +L8620 8350 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="66600" y="14750" width="800" height="2000" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M67000 14750 +L67000 14250 +" /> +<path d="M67000 16750 +L67000 17250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="68250" y="15520" +textLength="1510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">R14</text> +<path d="M67920 15490 +L67760 15250 +" /> +<path d="M67640 15490 +L67640 14990 +L67830 14990 +L67880 15020 +L67900 15040 +L67920 15090 +L67920 15160 +L67900 15210 +L67880 15230 +L67830 15250 +L67640 15250 +" /> +<path d="M68400 15490 +L68110 15490 +" /> +<path d="M68260 15490 +L68260 14990 +L68210 15060 +L68160 15110 +L68110 15130 +" /> +<path d="M68830 15160 +L68830 15490 +" /> +<path d="M68710 14970 +L68590 15320 +L68900 15320 +" /> +<text x="68440" y="16270" +textLength="1890" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">750k</text> +<path d="M67590 15740 +L67920 15740 +L67710 16240 +" /> +<path d="M68350 15740 +L68110 15740 +L68090 15980 +L68110 15960 +L68160 15930 +L68280 15930 +L68330 15960 +L68350 15980 +L68380 16030 +L68380 16150 +L68350 16190 +L68330 16220 +L68280 16240 +L68160 16240 +L68110 16220 +L68090 16190 +" /> +<path d="M68690 15740 +L68730 15740 +L68780 15770 +L68800 15790 +L68830 15840 +L68850 15930 +L68850 16050 +L68830 16150 +L68800 16190 +L68780 16220 +L68730 16240 +L68690 16240 +L68640 16220 +L68610 16190 +L68590 16150 +L68570 16050 +L68570 15930 +L68590 15840 +L68610 15790 +L68640 15770 +L68690 15740 +" /> +<path d="M69070 16240 +L69070 15740 +" /> +<path d="M69110 16050 +L69260 16240 +" /> +<path d="M69260 15910 +L69070 16100 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="19250" y="30850" width="2000" height="800" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M21250 31250 +L21750 31250 +" /> +<path d="M19250 31250 +L18750 31250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="20250" y="29450" +textLength="1510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">R15</text> +<path d="M19920 29420 +L19760 29180 +" /> +<path d="M19640 29420 +L19640 28920 +L19830 28920 +L19880 28950 +L19900 28970 +L19920 29020 +L19920 29090 +L19900 29140 +L19880 29160 +L19830 29180 +L19640 29180 +" /> +<path d="M20400 29420 +L20110 29420 +" /> +<path d="M20260 29420 +L20260 28920 +L20210 28990 +L20160 29040 +L20110 29060 +" /> +<path d="M20850 28920 +L20610 28920 +L20590 29160 +L20610 29140 +L20660 29110 +L20780 29110 +L20830 29140 +L20850 29160 +L20880 29210 +L20880 29330 +L20850 29370 +L20830 29400 +L20780 29420 +L20660 29420 +L20610 29400 +L20590 29370 +" /> +<text x="20250" y="30360" +textLength="1890" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">100k</text> +<path d="M19710 30330 +L19420 30330 +" /> +<path d="M19570 30330 +L19570 29830 +L19520 29900 +L19470 29950 +L19420 29970 +" /> +<path d="M20020 29830 +L20070 29830 +L20110 29860 +L20140 29880 +L20160 29930 +L20190 30020 +L20190 30140 +L20160 30240 +L20140 30280 +L20110 30310 +L20070 30330 +L20020 30330 +L19970 30310 +L19950 30280 +L19920 30240 +L19900 30140 +L19900 30020 +L19920 29930 +L19950 29880 +L19970 29860 +L20020 29830 +" /> +<path d="M20500 29830 +L20540 29830 +L20590 29860 +L20610 29880 +L20640 29930 +L20660 30020 +L20660 30140 +L20640 30240 +L20610 30280 +L20590 30310 +L20540 30330 +L20500 30330 +L20450 30310 +L20420 30280 +L20400 30240 +L20380 30140 +L20380 30020 +L20400 29930 +L20420 29880 +L20450 29860 +L20500 29830 +" /> +<path d="M20880 30330 +L20880 29830 +" /> +<path d="M20920 30140 +L21070 30330 +" /> +<path d="M21070 30000 +L20880 30190 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="60500" y="47600" width="2000" height="800" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M62500 48000 +L63000 48000 +" /> +<path d="M60500 48000 +L60000 48000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="61250" y="49020" +textLength="1510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">R10</text> +<path d="M60920 48990 +L60760 48750 +" /> +<path d="M60640 48990 +L60640 48490 +L60830 48490 +L60880 48520 +L60900 48540 +L60920 48590 +L60920 48660 +L60900 48710 +L60880 48730 +L60830 48750 +L60640 48750 +" /> +<path d="M61400 48990 +L61110 48990 +" /> +<path d="M61260 48990 +L61260 48490 +L61210 48560 +L61160 48610 +L61110 48630 +" /> +<path d="M61710 48490 +L61760 48490 +L61800 48520 +L61830 48540 +L61850 48590 +L61880 48680 +L61880 48800 +L61850 48900 +L61830 48940 +L61800 48970 +L61760 48990 +L61710 48990 +L61660 48970 +L61640 48940 +L61610 48900 +L61590 48800 +L61590 48680 +L61610 48590 +L61640 48540 +L61660 48520 +L61710 48490 +" /> +<text x="61500" y="48270" +textLength="1660" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">1.5k</text> +<path d="M61080 48240 +L60790 48240 +" /> +<path d="M60940 48240 +L60940 47740 +L60890 47810 +L60840 47860 +L60790 47880 +" /> +<path d="M61290 48190 +L61320 48220 +L61290 48240 +L61270 48220 +L61290 48190 +L61290 48240 +" /> +<path d="M61770 47740 +L61530 47740 +L61510 47980 +L61530 47960 +L61580 47930 +L61700 47930 +L61750 47960 +L61770 47980 +L61790 48030 +L61790 48150 +L61770 48190 +L61750 48220 +L61700 48240 +L61580 48240 +L61530 48220 +L61510 48190 +" /> +<path d="M62010 48240 +L62010 47740 +" /> +<path d="M62050 48050 +L62200 48240 +" /> +<path d="M62200 47910 +L62010 48100 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="79040" cy="42790" r="200" /> +<circle cx="79950" cy="43720" r="200" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 79300,42250 +80500,43450 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 79900,42850 +80300,42450 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 78500,42250 +78900,42650 +78900,42650 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 80100,43850 +80500,44250 +80500,44250 +80500,44250 +" /> +<path d="M78500 42250 +L78500 42250 +" /> +<path d="M80500 44250 +L80500 44250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="79500" y="41630" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW8</text> +<path d="M78830 41580 +L78900 41600 +L79020 41600 +L79070 41580 +L79090 41550 +L79110 41510 +L79110 41460 +L79090 41410 +L79070 41390 +L79020 41360 +L78920 41340 +L78880 41320 +L78850 41290 +L78830 41240 +L78830 41200 +L78850 41150 +L78880 41130 +L78920 41100 +L79040 41100 +L79110 41130 +" /> +<path d="M79280 41100 +L79400 41600 +L79500 41240 +L79590 41600 +L79710 41100 +" /> +<path d="M79970 41320 +L79920 41290 +L79900 41270 +L79880 41220 +L79880 41200 +L79900 41150 +L79920 41130 +L79970 41100 +L80070 41100 +L80110 41130 +L80140 41150 +L80160 41200 +L80160 41220 +L80140 41270 +L80110 41290 +L80070 41320 +L79970 41320 +L79920 41340 +L79900 41360 +L79880 41410 +L79880 41510 +L79900 41550 +L79920 41580 +L79970 41600 +L80070 41600 +L80110 41580 +L80140 41550 +L80160 41510 +L80160 41410 +L80140 41360 +L80110 41340 +L80070 41320 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 73700,17550 +75300,17550 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 73700,16950 +75300,16950 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M74500 16850 +L74500 15750 +" /> +<path d="M74500 17650 +L74500 18750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="75500" y="16770" +textLength="1510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">C13</text> +<path d="M75170 16690 +L75150 16720 +L75080 16740 +L75030 16740 +L74960 16720 +L74910 16670 +L74890 16620 +L74860 16530 +L74860 16460 +L74890 16360 +L74910 16310 +L74960 16270 +L75030 16240 +L75080 16240 +L75150 16270 +L75170 16290 +" /> +<path d="M75650 16740 +L75360 16740 +" /> +<path d="M75510 16740 +L75510 16240 +L75460 16310 +L75410 16360 +L75360 16380 +" /> +<path d="M75820 16240 +L76130 16240 +L75960 16430 +L76030 16430 +L76080 16460 +L76100 16480 +L76130 16530 +L76130 16650 +L76100 16690 +L76080 16720 +L76030 16740 +L75890 16740 +L75840 16720 +L75820 16690 +" /> +<text x="76470" y="17520" +textLength="1940" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">100n</text> +<path d="M75910 17490 +L75620 17490 +" /> +<path d="M75760 17490 +L75760 16990 +L75720 17060 +L75670 17110 +L75620 17130 +" /> +<path d="M76220 16990 +L76260 16990 +L76310 17020 +L76330 17040 +L76360 17090 +L76380 17180 +L76380 17300 +L76360 17400 +L76330 17440 +L76310 17470 +L76260 17490 +L76220 17490 +L76170 17470 +L76140 17440 +L76120 17400 +L76100 17300 +L76100 17180 +L76120 17090 +L76140 17040 +L76170 17020 +L76220 16990 +" /> +<path d="M76690 16990 +L76740 16990 +L76790 17020 +L76810 17040 +L76830 17090 +L76860 17180 +L76860 17300 +L76830 17400 +L76810 17440 +L76790 17470 +L76740 17490 +L76690 17490 +L76640 17470 +L76620 17440 +L76600 17400 +L76570 17300 +L76570 17180 +L76600 17090 +L76620 17040 +L76640 17020 +L76690 16990 +" /> +<path d="M77070 17160 +L77070 17490 +" /> +<path d="M77070 17210 +L77100 17180 +L77140 17160 +L77220 17160 +L77260 17180 +L77290 17230 +L77290 17490 +" /> +</g> +<g style="fill:#840084; fill-opacity:0.0; +stroke:#840084; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="76250" y="18520" +textLength="3320" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">30mOhm</text> +<path d="M74690 17990 +L75000 17990 +L74830 18180 +L74900 18180 +L74950 18210 +L74970 18230 +L75000 18280 +L75000 18400 +L74970 18440 +L74950 18470 +L74900 18490 +L74760 18490 +L74710 18470 +L74690 18440 +" /> +<path d="M75300 17990 +L75350 17990 +L75400 18020 +L75420 18040 +L75450 18090 +L75470 18180 +L75470 18300 +L75450 18400 +L75420 18440 +L75400 18470 +L75350 18490 +L75300 18490 +L75260 18470 +L75230 18440 +L75210 18400 +L75190 18300 +L75190 18180 +L75210 18090 +L75230 18040 +L75260 18020 +L75300 17990 +" /> +<path d="M75690 18490 +L75690 18160 +" /> +<path d="M75690 18210 +L75710 18180 +L75760 18160 +L75830 18160 +L75880 18180 +L75900 18230 +L75900 18490 +" /> +<path d="M75900 18230 +L75920 18180 +L75970 18160 +L76040 18160 +L76090 18180 +L76110 18230 +L76110 18490 +" /> +<path d="M76450 17990 +L76540 17990 +L76590 18020 +L76640 18060 +L76660 18160 +L76660 18320 +L76640 18420 +L76590 18470 +L76540 18490 +L76450 18490 +L76400 18470 +L76350 18420 +L76330 18320 +L76330 18160 +L76350 18060 +L76400 18020 +L76450 17990 +" /> +<path d="M76880 18490 +L76880 17990 +" /> +<path d="M77090 18490 +L77090 18230 +L77070 18180 +L77020 18160 +L76950 18160 +L76900 18180 +L76880 18210 +" /> +<path d="M77330 18490 +L77330 18160 +" /> +<path d="M77330 18210 +L77350 18180 +L77400 18160 +L77470 18160 +L77520 18180 +L77540 18230 +L77540 18490 +" /> +<path d="M77540 18230 +L77570 18180 +L77610 18160 +L77690 18160 +L77730 18180 +L77760 18230 +L77760 18490 +" /> +</g> +</g> +<g style="fill:#840084; fill-opacity:0.0; +stroke:#840084; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M15250 27750 A500 500 0.0 0 0 14750 27250" /> +<path d="M14750 35250 A500 500 0.0 0 0 15250 34750" /> +<path d="M13850.7 27050.9 A500 500 0.0 0 0 14250 27250" /> +<path d="M14250 35250 A500 500 0.0 0 0 13850.7 35449.1" /> +<path d="M13849 27048.6 A750 750 0.0 0 0 13250 26750" /> +<path d="M13250 35750 A750 750 0.0 0 0 13849 35451.4" /> +<path d="M11250 26750 A500 500 0.0 0 0 10750 27250" /> +<path d="M10750 35250 A500 500 0.0 0 0 11250 35750" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 15250,34750 +15250,27750 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 14750,27250 +14250,27250 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 14750,35250 +14250,35250 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 13250,26750 +11250,26750 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 13250,35750 +11250,35750 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 10750,27250 +10750,35250 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M15250 34250 +L17250 34250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="14850" y="34450" +textLength="1600" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">VBUS</text> +<path d="M13310 34030 +L13440 34430 +L13580 34030 +" /> +<path d="M13840 34220 +L13900 34240 +L13920 34250 +L13940 34290 +L13940 34350 +L13920 34390 +L13900 34410 +L13860 34430 +L13710 34430 +L13710 34030 +L13840 34030 +L13880 34050 +L13900 34060 +L13920 34100 +L13920 34140 +L13900 34180 +L13880 34200 +L13840 34220 +L13710 34220 +" /> +<path d="M14110 34030 +L14110 34350 +L14130 34390 +L14150 34410 +L14190 34430 +L14260 34430 +L14300 34410 +L14320 34390 +L14340 34350 +L14340 34030 +" /> +<path d="M14510 34410 +L14570 34430 +L14660 34430 +L14700 34410 +L14720 34390 +L14740 34350 +L14740 34310 +L14720 34270 +L14700 34250 +L14660 34240 +L14590 34220 +L14550 34200 +L14530 34180 +L14510 34140 +L14510 34100 +L14530 34060 +L14550 34050 +L14590 34030 +L14680 34030 +L14740 34050 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="16250" y="34150" +textLength="440" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">1</text> +<path d="M16360 34130 +L16130 34130 +" /> +<path d="M16250 34130 +L16250 33730 +L16210 33780 +L16170 33820 +L16130 33840 +" /> +<path d="M15250 33250 +L17250 33250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="14850" y="33450" +textLength="960" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">D-</text> +<path d="M14020 33430 +L14020 33030 +L14110 33030 +L14170 33050 +L14210 33080 +L14220 33120 +L14240 33200 +L14240 33250 +L14220 33330 +L14210 33370 +L14170 33410 +L14110 33430 +L14020 33430 +" /> +<path d="M14420 33270 +L14720 33270 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="16250" y="33150" +textLength="440" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">2</text> +<path d="M16130 32760 +L16150 32750 +L16190 32730 +L16280 32730 +L16320 32750 +L16340 32760 +L16360 32800 +L16360 32840 +L16340 32900 +L16110 33130 +L16360 33130 +" /> +<path d="M15250 32250 +L17250 32250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="14850" y="32450" +textLength="960" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">D+</text> +<path d="M14020 32430 +L14020 32030 +L14110 32030 +L14170 32050 +L14210 32080 +L14220 32120 +L14240 32200 +L14240 32250 +L14220 32330 +L14210 32370 +L14170 32410 +L14110 32430 +L14020 32430 +" /> +<path d="M14420 32270 +L14720 32270 +" /> +<path d="M14570 32430 +L14570 32120 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="16250" y="32150" +textLength="440" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">3</text> +<path d="M16110 31730 +L16360 31730 +L16230 31880 +L16280 31880 +L16320 31900 +L16340 31920 +L16360 31950 +L16360 32050 +L16340 32090 +L16320 32110 +L16280 32130 +L16170 32130 +L16130 32110 +L16110 32090 +" /> +<path d="M15250 31250 +L17250 31250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="14850" y="31450" +textLength="650" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">ID</text> +<path d="M14320 31430 +L14320 31030 +" /> +<path d="M14510 31430 +L14510 31030 +L14610 31030 +L14660 31050 +L14700 31080 +L14720 31120 +L14740 31200 +L14740 31250 +L14720 31330 +L14700 31370 +L14660 31410 +L14610 31430 +L14510 31430 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="16250" y="31150" +textLength="440" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">4</text> +<path d="M16320 30860 +L16320 31130 +" /> +<path d="M16230 30710 +L16130 30990 +L16380 30990 +" /> +<path d="M15250 30250 +L17250 30250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="14850" y="30450" +textLength="1280" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">GND</text> +<path d="M13900 30050 +L13860 30030 +L13810 30030 +L13750 30050 +L13710 30080 +L13690 30120 +L13670 30200 +L13670 30250 +L13690 30330 +L13710 30370 +L13750 30410 +L13810 30430 +L13840 30430 +L13900 30410 +L13920 30390 +L13920 30250 +L13840 30250 +" /> +<path d="M14090 30430 +L14090 30030 +L14320 30430 +L14320 30030 +" /> +<path d="M14510 30430 +L14510 30030 +L14610 30030 +L14660 30050 +L14700 30080 +L14720 30120 +L14740 30200 +L14740 30250 +L14720 30330 +L14700 30370 +L14660 30410 +L14610 30430 +L14510 30430 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="16250" y="30150" +textLength="440" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">5</text> +<path d="M16340 29730 +L16150 29730 +L16130 29920 +L16150 29900 +L16190 29880 +L16280 29880 +L16320 29900 +L16340 29920 +L16360 29950 +L16360 30050 +L16340 30090 +L16320 30110 +L16280 30130 +L16190 30130 +L16150 30110 +L16130 30090 +" /> +<path d="M15250 27500 +L17250 27500 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="14850" y="27700" +textLength="2140" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">SHIELD</text> +<path d="M12820 27660 +L12870 27680 +L12970 27680 +L13010 27660 +L13020 27640 +L13040 27600 +L13040 27560 +L13020 27520 +L13010 27500 +L12970 27490 +L12890 27470 +L12850 27450 +L12830 27430 +L12820 27390 +L12820 27350 +L12830 27310 +L12850 27300 +L12890 27280 +L12990 27280 +L13040 27300 +" /> +<path d="M13220 27680 +L13220 27280 +" /> +<path d="M13220 27470 +L13440 27470 +" /> +<path d="M13440 27680 +L13440 27280 +" /> +<path d="M13630 27680 +L13630 27280 +" /> +<path d="M13820 27470 +L13960 27470 +" /> +<path d="M14020 27680 +L13820 27680 +L13820 27280 +L14020 27280 +" /> +<path d="M14380 27680 +L14190 27680 +L14190 27280 +" /> +<path d="M14510 27680 +L14510 27280 +L14610 27280 +L14660 27300 +L14700 27330 +L14720 27370 +L14740 27450 +L14740 27500 +L14720 27580 +L14700 27620 +L14660 27660 +L14610 27680 +L14510 27680 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="16250" y="27400" +textLength="820" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">S1</text> +<path d="M15940 27360 +L16000 27380 +L16090 27380 +L16130 27360 +L16150 27340 +L16170 27300 +L16170 27260 +L16150 27220 +L16130 27200 +L16090 27190 +L16020 27170 +L15980 27150 +L15960 27130 +L15940 27090 +L15940 27050 +L15960 27010 +L15980 27000 +L16020 26980 +L16110 26980 +L16170 27000 +" /> +<path d="M16550 27380 +L16320 27380 +" /> +<path d="M16440 27380 +L16440 26980 +L16400 27030 +L16360 27070 +L16320 27090 +" /> +<path d="M15250 28250 +L17250 28250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="14850" y="28450" +textLength="2140" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">SHIELD</text> +<path d="M12820 28410 +L12870 28430 +L12970 28430 +L13010 28410 +L13020 28390 +L13040 28350 +L13040 28310 +L13020 28270 +L13010 28250 +L12970 28240 +L12890 28220 +L12850 28200 +L12830 28180 +L12820 28140 +L12820 28100 +L12830 28060 +L12850 28050 +L12890 28030 +L12990 28030 +L13040 28050 +" /> +<path d="M13220 28430 +L13220 28030 +" /> +<path d="M13220 28220 +L13440 28220 +" /> +<path d="M13440 28430 +L13440 28030 +" /> +<path d="M13630 28430 +L13630 28030 +" /> +<path d="M13820 28220 +L13960 28220 +" /> +<path d="M14020 28430 +L13820 28430 +L13820 28030 +L14020 28030 +" /> +<path d="M14380 28430 +L14190 28430 +L14190 28030 +" /> +<path d="M14510 28430 +L14510 28030 +L14610 28030 +L14660 28050 +L14700 28080 +L14720 28120 +L14740 28200 +L14740 28250 +L14720 28330 +L14700 28370 +L14660 28410 +L14610 28430 +L14510 28430 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="16250" y="28150" +textLength="820" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">S2</text> +<path d="M15940 28110 +L16000 28130 +L16090 28130 +L16130 28110 +L16150 28090 +L16170 28050 +L16170 28010 +L16150 27970 +L16130 27950 +L16090 27940 +L16020 27920 +L15980 27900 +L15960 27880 +L15940 27840 +L15940 27800 +L15960 27760 +L15980 27750 +L16020 27730 +L16110 27730 +L16170 27750 +" /> +<path d="M16320 27760 +L16340 27750 +L16380 27730 +L16470 27730 +L16510 27750 +L16530 27760 +L16550 27800 +L16550 27840 +L16530 27900 +L16300 28130 +L16550 28130 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="12250" y="36720" +textLength="920" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">J2</text> +<path d="M12080 36190 +L12080 36550 +L12050 36620 +L12010 36670 +L11940 36690 +L11890 36690 +" /> +<path d="M12290 36240 +L12320 36220 +L12360 36190 +L12480 36190 +L12530 36220 +L12550 36240 +L12580 36290 +L12580 36330 +L12550 36410 +L12270 36690 +L12580 36690 +" /> +<text x="12250" y="31470" +textLength="2440" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">USB_B</text> +<path d="M11170 30940 +L11170 31350 +L11200 31390 +L11220 31420 +L11270 31440 +L11360 31440 +L11410 31420 +L11440 31390 +L11460 31350 +L11460 30940 +" /> +<path d="M11670 31420 +L11750 31440 +L11860 31440 +L11910 31420 +L11940 31390 +L11960 31350 +L11960 31300 +L11940 31250 +L11910 31230 +L11860 31200 +L11770 31180 +L11720 31160 +L11700 31130 +L11670 31080 +L11670 31040 +L11700 30990 +L11720 30970 +L11770 30940 +L11890 30940 +L11960 30970 +" /> +<path d="M12340 31180 +L12410 31200 +L12440 31230 +L12460 31270 +L12460 31350 +L12440 31390 +L12410 31420 +L12360 31440 +L12170 31440 +L12170 30940 +L12340 30940 +L12390 30970 +L12410 30990 +L12440 31040 +L12440 31080 +L12410 31130 +L12390 31160 +L12340 31180 +L12170 31180 +" /> +<path d="M12550 31490 +L12940 31490 +" /> +<path d="M13220 31180 +L13290 31200 +L13320 31230 +L13340 31270 +L13340 31350 +L13320 31390 +L13290 31420 +L13250 31440 +L13050 31440 +L13050 30940 +L13220 30940 +L13270 30970 +L13290 30990 +L13320 31040 +L13320 31080 +L13290 31130 +L13270 31160 +L13220 31180 +L13050 31180 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 28000,18750 +28000,19250 +28500,19250 +28000,19750 +27500,19250 +28000,19250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="28050" y="20750" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">GND</text> +<path d="M27660 20250 +L27620 20220 +L27550 20220 +L27470 20250 +L27430 20290 +L27400 20340 +L27380 20440 +L27380 20510 +L27400 20600 +L27430 20650 +L27470 20700 +L27550 20720 +L27590 20720 +L27660 20700 +L27690 20670 +L27690 20510 +L27590 20510 +" /> +<path d="M27900 20720 +L27900 20220 +L28190 20720 +L28190 20220 +" /> +<path d="M28430 20720 +L28430 20220 +L28550 20220 +L28620 20250 +L28660 20290 +L28690 20340 +L28710 20440 +L28710 20510 +L28690 20600 +L28660 20650 +L28620 20700 +L28550 20720 +L28430 20720 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="40400" y="47200" width="1200" height="600" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:150; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:150; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 40700,47000 +41300,47000 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:150; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 40700,48000 +41300,48000 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 40500,47000 +40250,47000 +40250,48000 +40500,48000 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 41500,47000 +41750,47000 +41750,48000 +41500,48000 +" /> +<path d="M41000 47000 +L41000 46500 +" /> +<g transform="rotate(-90 40910 46750)"> +<text x="40910" y="46750" +textLength="350" font-size="400" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">1</text> +</g> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:50; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M40890 46660 +L40890 46830 +" /> +<path d="M40890 46750 +L40590 46750 +L40630 46770 +L40660 46800 +L40680 46830 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M40250 47500 +L40000 47500 +" /> +<text x="40120" y="47410" +textLength="340" font-size="400" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">2</text> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:50; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M40030 47120 +L40040 47110 +L40070 47090 +L40140 47090 +L40170 47110 +L40190 47120 +L40200 47150 +L40200 47180 +L40190 47220 +L40020 47390 +L40200 47390 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M41000 48000 +L41000 48500 +" /> +<g transform="rotate(-90 40910 48250)"> +<text x="40910" y="48250" +textLength="340" font-size="400" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">3</text> +</g> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:50; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M40590 48350 +L40590 48160 +L40710 48260 +L40710 48220 +L40720 48190 +L40730 48170 +L40760 48160 +L40830 48160 +L40860 48170 +L40880 48190 +L40890 48220 +L40890 48300 +L40880 48330 +L40860 48350 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M41750 47500 +L42000 47500 +" /> +<text x="41870" y="47410" +textLength="340" font-size="400" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">4</text> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:50; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M41920 47190 +L41920 47390 +" /> +<path d="M41850 47080 +L41780 47290 +L41970 47290 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="42360" y="47310" +textLength="950" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">Y1</text> +<path d="M42120 47040 +L42120 47280 +" /> +<path d="M41950 46780 +L42120 47040 +L42280 46780 +" /> +<path d="M42710 47280 +L42430 47280 +" /> +<path d="M42570 47280 +L42570 46780 +L42520 46850 +L42470 46900 +L42430 46920 +" /> +<text x="42900" y="48220" +textLength="2040" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">8MHz</text> +<path d="M42100 47910 +L42050 47880 +L42030 47860 +L42000 47810 +L42000 47790 +L42030 47740 +L42050 47720 +L42100 47690 +L42190 47690 +L42240 47720 +L42260 47740 +L42290 47790 +L42290 47810 +L42260 47860 +L42240 47880 +L42190 47910 +L42100 47910 +L42050 47930 +L42030 47950 +L42000 48000 +L42000 48100 +L42030 48140 +L42050 48170 +L42100 48190 +L42190 48190 +L42240 48170 +L42260 48140 +L42290 48100 +L42290 48000 +L42260 47950 +L42240 47930 +L42190 47910 +" /> +<path d="M42500 48190 +L42500 47690 +L42670 48050 +L42840 47690 +L42840 48190 +" /> +<path d="M43070 48190 +L43070 47690 +" /> +<path d="M43070 47930 +L43360 47930 +" /> +<path d="M43360 48190 +L43360 47690 +" /> +<path d="M43550 47860 +L43810 47860 +L43550 48190 +L43810 48190 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 37950,45200 +37950,46800 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 38550,45200 +38550,46800 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M38650 46000 +L39750 46000 +" /> +<path d="M37850 46000 +L36750 46000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="38250" y="43750" +textLength="1510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">C14</text> +<path d="M37920 43670 +L37900 43700 +L37830 43720 +L37780 43720 +L37710 43700 +L37660 43650 +L37640 43600 +L37610 43510 +L37610 43440 +L37640 43340 +L37660 43290 +L37710 43250 +L37780 43220 +L37830 43220 +L37900 43250 +L37920 43270 +" /> +<path d="M38400 43720 +L38110 43720 +" /> +<path d="M38260 43720 +L38260 43220 +L38210 43290 +L38160 43340 +L38110 43360 +" /> +<path d="M38830 43390 +L38830 43720 +" /> +<path d="M38710 43200 +L38590 43550 +L38900 43550 +" /> +<text x="38250" y="44660" +textLength="1460" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">18p</text> +<path d="M37920 44630 +L37640 44630 +" /> +<path d="M37780 44630 +L37780 44130 +L37730 44200 +L37690 44250 +L37640 44270 +" /> +<path d="M38210 44350 +L38160 44320 +L38140 44300 +L38110 44250 +L38110 44230 +L38140 44180 +L38160 44160 +L38210 44130 +L38300 44130 +L38350 44160 +L38380 44180 +L38400 44230 +L38400 44250 +L38380 44300 +L38350 44320 +L38300 44350 +L38210 44350 +L38160 44370 +L38140 44390 +L38110 44440 +L38110 44540 +L38140 44580 +L38160 44610 +L38210 44630 +L38300 44630 +L38350 44610 +L38380 44580 +L38400 44540 +L38400 44440 +L38380 44390 +L38350 44370 +L38300 44350 +" /> +<path d="M38610 44300 +L38610 44800 +" /> +<path d="M38610 44320 +L38660 44300 +L38760 44300 +L38800 44320 +L38830 44350 +L38850 44390 +L38850 44540 +L38830 44580 +L38800 44610 +L38760 44630 +L38660 44630 +L38610 44610 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 20700,70550 +22300,70550 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 20700,69950 +22300,69950 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M21500 69850 +L21500 68750 +" /> +<path d="M21500 70650 +L21500 71750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="23170" y="70060" +textLength="1040" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">C4</text> +<path d="M23080 69980 +L23060 70010 +L22990 70030 +L22940 70030 +L22870 70010 +L22820 69960 +L22800 69910 +L22770 69820 +L22770 69750 +L22800 69650 +L22820 69600 +L22870 69560 +L22940 69530 +L22990 69530 +L23060 69560 +L23080 69580 +" /> +<path d="M23510 69700 +L23510 70030 +" /> +<path d="M23390 69510 +L23270 69860 +L23580 69860 +" /> +<text x="23620" y="70970" +textLength="1940" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">100n</text> +<path d="M23060 70940 +L22770 70940 +" /> +<path d="M22910 70940 +L22910 70440 +L22870 70510 +L22820 70560 +L22770 70580 +" /> +<path d="M23370 70440 +L23410 70440 +L23460 70470 +L23480 70490 +L23510 70540 +L23530 70630 +L23530 70750 +L23510 70850 +L23480 70890 +L23460 70920 +L23410 70940 +L23370 70940 +L23320 70920 +L23290 70890 +L23270 70850 +L23250 70750 +L23250 70630 +L23270 70540 +L23290 70490 +L23320 70470 +L23370 70440 +" /> +<path d="M23840 70440 +L23890 70440 +L23940 70470 +L23960 70490 +L23980 70540 +L24010 70630 +L24010 70750 +L23980 70850 +L23960 70890 +L23940 70920 +L23890 70940 +L23840 70940 +L23790 70920 +L23770 70890 +L23750 70850 +L23720 70750 +L23720 70630 +L23750 70540 +L23770 70490 +L23790 70470 +L23840 70440 +" /> +<path d="M24220 70610 +L24220 70940 +" /> +<path d="M24220 70660 +L24250 70630 +L24290 70610 +L24360 70610 +L24410 70630 +L24440 70680 +L24440 70940 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 37950,48450 +37950,50050 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:200; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 38550,48450 +38550,50050 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M38650 49250 +L39750 49250 +" /> +<path d="M37850 49250 +L36750 49250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="38250" y="47000" +textLength="1510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">C15</text> +<path d="M37920 46920 +L37900 46950 +L37830 46970 +L37780 46970 +L37710 46950 +L37660 46900 +L37640 46850 +L37610 46760 +L37610 46690 +L37640 46590 +L37660 46540 +L37710 46500 +L37780 46470 +L37830 46470 +L37900 46500 +L37920 46520 +" /> +<path d="M38400 46970 +L38110 46970 +" /> +<path d="M38260 46970 +L38260 46470 +L38210 46540 +L38160 46590 +L38110 46610 +" /> +<path d="M38850 46470 +L38610 46470 +L38590 46710 +L38610 46690 +L38660 46660 +L38780 46660 +L38830 46690 +L38850 46710 +L38880 46760 +L38880 46880 +L38850 46920 +L38830 46950 +L38780 46970 +L38660 46970 +L38610 46950 +L38590 46920 +" /> +<text x="38250" y="47910" +textLength="1460" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">18p</text> +<path d="M37920 47880 +L37640 47880 +" /> +<path d="M37780 47880 +L37780 47380 +L37730 47450 +L37690 47500 +L37640 47520 +" /> +<path d="M38210 47600 +L38160 47570 +L38140 47550 +L38110 47500 +L38110 47480 +L38140 47430 +L38160 47410 +L38210 47380 +L38300 47380 +L38350 47410 +L38380 47430 +L38400 47480 +L38400 47500 +L38380 47550 +L38350 47570 +L38300 47600 +L38210 47600 +L38160 47620 +L38140 47640 +L38110 47690 +L38110 47790 +L38140 47830 +L38160 47860 +L38210 47880 +L38300 47880 +L38350 47860 +L38380 47830 +L38400 47790 +L38400 47690 +L38380 47640 +L38350 47620 +L38300 47600 +" /> +<path d="M38610 47550 +L38610 48050 +" /> +<path d="M38610 47570 +L38660 47550 +L38760 47550 +L38800 47570 +L38830 47600 +L38850 47640 +L38850 47790 +L38830 47830 +L38800 47860 +L38760 47880 +L38660 47880 +L38610 47860 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#FFFFC2; fill-opacity:0.0; +stroke:#FFFFC2; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#FFFFC2; fill-opacity:0.6; +stroke:#FFFFC2; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="44500" y="34000" width="12000" height="34000" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.6; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="44500" y="34000" width="12000" height="34000" rx="0" /> +<rect x="44500" y="34000" width="12000" height="34000" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M48500 34000 +L48500 33000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 48500 34200)"> +<text x="48500" y="34450" +textLength="1800" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">VBAT</text> +</g> +<path d="M48220 35920 +L48720 35750 +L48220 35580 +" /> +<path d="M48460 35250 +L48480 35180 +L48510 35150 +L48550 35130 +L48630 35130 +L48670 35150 +L48700 35180 +L48720 35230 +L48720 35420 +L48220 35420 +L48220 35250 +L48250 35200 +L48270 35180 +L48320 35150 +L48360 35150 +L48410 35180 +L48440 35200 +L48460 35250 +L48460 35420 +" /> +<path d="M48580 34940 +L48580 34700 +" /> +<path d="M48720 34990 +L48220 34820 +L48720 34650 +" /> +<path d="M48220 34560 +L48220 34270 +" /> +<path d="M48720 34420 +L48220 34420 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 48400 33500)"> +<text x="48400" y="33500" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">1</text> +</g> +<path d="M48370 33350 +L48370 33640 +" /> +<path d="M48370 33500 +L47870 33500 +L47940 33540 +L47990 33590 +L48010 33640 +" /> +<path d="M44500 54000 +L43500 54000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44700" y="54250" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">PC2</text> +<path d="M44840 54220 +L44840 53720 +L45030 53720 +L45080 53750 +L45110 53770 +L45130 53820 +L45130 53890 +L45110 53940 +L45080 53960 +L45030 53980 +L44840 53980 +" /> +<path d="M45630 54170 +L45610 54200 +L45530 54220 +L45490 54220 +L45420 54200 +L45370 54150 +L45340 54100 +L45320 54010 +L45320 53940 +L45340 53840 +L45370 53790 +L45420 53750 +L45490 53720 +L45530 53720 +L45610 53750 +L45630 53770 +" /> +<path d="M45820 53770 +L45840 53750 +L45890 53720 +L46010 53720 +L46060 53750 +L46080 53770 +L46110 53820 +L46110 53860 +L46080 53940 +L45800 54220 +L46110 54220 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44000" y="53900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">10</text> +<path d="M43900 53870 +L43610 53870 +" /> +<path d="M43760 53870 +L43760 53370 +L43710 53440 +L43660 53490 +L43610 53510 +" /> +<path d="M44210 53370 +L44260 53370 +L44300 53400 +L44330 53420 +L44350 53470 +L44380 53560 +L44380 53680 +L44350 53780 +L44330 53820 +L44300 53850 +L44260 53870 +L44210 53870 +L44160 53850 +L44140 53820 +L44110 53780 +L44090 53680 +L44090 53560 +L44110 53470 +L44140 53420 +L44160 53400 +L44210 53370 +" /> +<path d="M44500 55000 +L43500 55000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44700" y="55250" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">PC3</text> +<path d="M44840 55220 +L44840 54720 +L45030 54720 +L45080 54750 +L45110 54770 +L45130 54820 +L45130 54890 +L45110 54940 +L45080 54960 +L45030 54980 +L44840 54980 +" /> +<path d="M45630 55170 +L45610 55200 +L45530 55220 +L45490 55220 +L45420 55200 +L45370 55150 +L45340 55100 +L45320 55010 +L45320 54940 +L45340 54840 +L45370 54790 +L45420 54750 +L45490 54720 +L45530 54720 +L45610 54750 +L45630 54770 +" /> +<path d="M45800 54720 +L46110 54720 +L45940 54910 +L46010 54910 +L46060 54940 +L46080 54960 +L46110 55010 +L46110 55130 +L46080 55170 +L46060 55200 +L46010 55220 +L45870 55220 +L45820 55200 +L45800 55170 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44000" y="54900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">11</text> +<path d="M43900 54870 +L43610 54870 +" /> +<path d="M43760 54870 +L43760 54370 +L43710 54440 +L43660 54490 +L43610 54510 +" /> +<path d="M44380 54870 +L44090 54870 +" /> +<path d="M44230 54870 +L44230 54370 +L44190 54440 +L44140 54490 +L44090 54510 +" /> +<path d="M52500 68000 +L52500 69000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 52500 67800)"> +<text x="52500" y="68050" +textLength="1870" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">VSSA</text> +</g> +<path d="M52220 67720 +L52720 67550 +L52220 67380 +" /> +<path d="M52700 67240 +L52720 67170 +L52720 67050 +L52700 67000 +L52670 66980 +L52630 66960 +L52580 66960 +L52530 66980 +L52510 67000 +L52480 67050 +L52460 67150 +L52440 67190 +L52410 67220 +L52360 67240 +L52320 67240 +L52270 67220 +L52250 67190 +L52220 67150 +L52220 67030 +L52250 66960 +" /> +<path d="M52700 66770 +L52720 66690 +L52720 66570 +L52700 66530 +L52670 66500 +L52630 66480 +L52580 66480 +L52530 66500 +L52510 66530 +L52480 66570 +L52460 66670 +L52440 66720 +L52410 66740 +L52360 66770 +L52320 66770 +L52270 66740 +L52250 66720 +L52220 66670 +L52220 66550 +L52250 66480 +" /> +<path d="M52580 66290 +L52580 66050 +" /> +<path d="M52720 66340 +L52220 66170 +L52720 66000 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 52400 68500)"> +<text x="52400" y="68500" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">12</text> +</g> +<path d="M52370 68590 +L52370 68880 +" /> +<path d="M52370 68730 +L51870 68730 +L51940 68780 +L51990 68830 +L52010 68880 +" /> +<path d="M51920 68400 +L51900 68380 +L51870 68330 +L51870 68210 +L51900 68160 +L51920 68140 +L51970 68110 +L52010 68110 +L52090 68140 +L52370 68420 +L52370 68110 +" /> +<path d="M53500 34000 +L53500 33000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 53500 34200)"> +<text x="53500" y="34450" +textLength="1920" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">VDDA</text> +</g> +<path d="M53220 36030 +L53720 35870 +L53220 35700 +" /> +<path d="M53720 35530 +L53220 35530 +L53220 35420 +L53250 35340 +L53290 35300 +L53340 35270 +L53440 35250 +L53510 35250 +L53600 35270 +L53650 35300 +L53700 35340 +L53720 35420 +L53720 35530 +" /> +<path d="M53720 35030 +L53220 35030 +L53220 34920 +L53250 34840 +L53290 34800 +L53340 34770 +L53440 34750 +L53510 34750 +L53600 34770 +L53650 34800 +L53700 34840 +L53720 34920 +L53720 35030 +" /> +<path d="M53580 34560 +L53580 34320 +" /> +<path d="M53720 34610 +L53220 34440 +L53720 34270 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 53400 33500)"> +<text x="53400" y="33500" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">13</text> +</g> +<path d="M53370 33590 +L53370 33880 +" /> +<path d="M53370 33730 +L52870 33730 +L52940 33780 +L52990 33830 +L53010 33880 +" /> +<path d="M52870 33420 +L52870 33110 +L53060 33280 +L53060 33210 +L53090 33160 +L53110 33140 +L53160 33110 +L53280 33110 +L53320 33140 +L53350 33160 +L53370 33210 +L53370 33350 +L53350 33400 +L53320 33420 +" /> +<path d="M56500 35000 +L57500 35000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="35250" +textLength="1460" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PA0</text> +<path d="M54980 35220 +L54980 34720 +L55170 34720 +L55220 34750 +L55240 34770 +L55270 34820 +L55270 34890 +L55240 34940 +L55220 34960 +L55170 34980 +L54980 34980 +" /> +<path d="M55460 35080 +L55690 35080 +" /> +<path d="M55410 35220 +L55570 34720 +L55740 35220 +" /> +<path d="M56000 34720 +L56050 34720 +L56100 34750 +L56120 34770 +L56150 34820 +L56170 34910 +L56170 35030 +L56150 35130 +L56120 35170 +L56100 35200 +L56050 35220 +L56000 35220 +L55960 35200 +L55930 35170 +L55910 35130 +L55880 35030 +L55880 34910 +L55910 34820 +L55930 34770 +L55960 34750 +L56000 34720 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="34900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">14</text> +<path d="M56900 34870 +L56610 34870 +" /> +<path d="M56760 34870 +L56760 34370 +L56710 34440 +L56660 34490 +L56610 34510 +" /> +<path d="M57330 34540 +L57330 34870 +" /> +<path d="M57210 34350 +L57090 34700 +L57400 34700 +" /> +<path d="M56500 36000 +L57500 36000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="36250" +textLength="1460" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PA1</text> +<path d="M54980 36220 +L54980 35720 +L55170 35720 +L55220 35750 +L55240 35770 +L55270 35820 +L55270 35890 +L55240 35940 +L55220 35960 +L55170 35980 +L54980 35980 +" /> +<path d="M55460 36080 +L55690 36080 +" /> +<path d="M55410 36220 +L55570 35720 +L55740 36220 +" /> +<path d="M56170 36220 +L55880 36220 +" /> +<path d="M56030 36220 +L56030 35720 +L55980 35790 +L55930 35840 +L55880 35860 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="35900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">15</text> +<path d="M56900 35870 +L56610 35870 +" /> +<path d="M56760 35870 +L56760 35370 +L56710 35440 +L56660 35490 +L56610 35510 +" /> +<path d="M57350 35370 +L57110 35370 +L57090 35610 +L57110 35590 +L57160 35560 +L57280 35560 +L57330 35590 +L57350 35610 +L57380 35660 +L57380 35780 +L57350 35820 +L57330 35850 +L57280 35870 +L57160 35870 +L57110 35850 +L57090 35820 +" /> +<path d="M56500 37000 +L57500 37000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="37250" +textLength="1460" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PA2</text> +<path d="M54980 37220 +L54980 36720 +L55170 36720 +L55220 36750 +L55240 36770 +L55270 36820 +L55270 36890 +L55240 36940 +L55220 36960 +L55170 36980 +L54980 36980 +" /> +<path d="M55460 37080 +L55690 37080 +" /> +<path d="M55410 37220 +L55570 36720 +L55740 37220 +" /> +<path d="M55880 36770 +L55910 36750 +L55960 36720 +L56070 36720 +L56120 36750 +L56150 36770 +L56170 36820 +L56170 36860 +L56150 36940 +L55860 37220 +L56170 37220 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="36900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">16</text> +<path d="M56900 36870 +L56610 36870 +" /> +<path d="M56760 36870 +L56760 36370 +L56710 36440 +L56660 36490 +L56610 36510 +" /> +<path d="M57330 36370 +L57230 36370 +L57190 36400 +L57160 36420 +L57110 36490 +L57090 36590 +L57090 36780 +L57110 36820 +L57140 36850 +L57190 36870 +L57280 36870 +L57330 36850 +L57350 36820 +L57380 36780 +L57380 36660 +L57350 36610 +L57330 36590 +L57280 36560 +L57190 36560 +L57140 36590 +L57110 36610 +L57090 36660 +" /> +<path d="M56500 38000 +L57500 38000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="38250" +textLength="1460" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PA3</text> +<path d="M54980 38220 +L54980 37720 +L55170 37720 +L55220 37750 +L55240 37770 +L55270 37820 +L55270 37890 +L55240 37940 +L55220 37960 +L55170 37980 +L54980 37980 +" /> +<path d="M55460 38080 +L55690 38080 +" /> +<path d="M55410 38220 +L55570 37720 +L55740 38220 +" /> +<path d="M55860 37720 +L56170 37720 +L56000 37910 +L56070 37910 +L56120 37940 +L56150 37960 +L56170 38010 +L56170 38130 +L56150 38170 +L56120 38200 +L56070 38220 +L55930 38220 +L55880 38200 +L55860 38170 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="37900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">17</text> +<path d="M56900 37870 +L56610 37870 +" /> +<path d="M56760 37870 +L56760 37370 +L56710 37440 +L56660 37490 +L56610 37510 +" /> +<path d="M57070 37370 +L57400 37370 +L57190 37870 +" /> +<path d="M48500 68000 +L48500 69000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 48500 67800)"> +<text x="48500" y="68050" +textLength="1440" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">VSS</text> +</g> +<path d="M48220 67720 +L48720 67550 +L48220 67380 +" /> +<path d="M48700 67240 +L48720 67170 +L48720 67050 +L48700 67000 +L48670 66980 +L48630 66960 +L48580 66960 +L48530 66980 +L48510 67000 +L48480 67050 +L48460 67150 +L48440 67190 +L48410 67220 +L48360 67240 +L48320 67240 +L48270 67220 +L48250 67190 +L48220 67150 +L48220 67030 +L48250 66960 +" /> +<path d="M48700 66770 +L48720 66690 +L48720 66570 +L48700 66530 +L48670 66500 +L48630 66480 +L48580 66480 +L48530 66500 +L48510 66530 +L48480 66570 +L48460 66670 +L48440 66720 +L48410 66740 +L48360 66770 +L48320 66770 +L48270 66740 +L48250 66720 +L48220 66670 +L48220 66550 +L48250 66480 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 48400 68500)"> +<text x="48400" y="68500" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">18</text> +</g> +<path d="M48370 68590 +L48370 68880 +" /> +<path d="M48370 68730 +L47870 68730 +L47940 68780 +L47990 68830 +L48010 68880 +" /> +<path d="M48090 68300 +L48060 68350 +L48040 68380 +L47990 68400 +L47970 68400 +L47920 68380 +L47900 68350 +L47870 68300 +L47870 68210 +L47900 68160 +L47920 68140 +L47970 68110 +L47990 68110 +L48040 68140 +L48060 68160 +L48090 68210 +L48090 68300 +L48110 68350 +L48130 68380 +L48180 68400 +L48280 68400 +L48320 68380 +L48350 68350 +L48370 68300 +L48370 68210 +L48350 68160 +L48320 68140 +L48280 68110 +L48180 68110 +L48130 68140 +L48110 68160 +L48090 68210 +" /> +<path d="M49500 34000 +L49500 33000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 49500 34200)"> +<text x="49500" y="34450" +textLength="1490" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">VDD</text> +</g> +<path d="M49220 35610 +L49720 35440 +L49220 35270 +" /> +<path d="M49720 35110 +L49220 35110 +L49220 34990 +L49250 34920 +L49290 34870 +L49340 34840 +L49440 34820 +L49510 34820 +L49600 34840 +L49650 34870 +L49700 34920 +L49720 34990 +L49720 35110 +" /> +<path d="M49720 34610 +L49220 34610 +L49220 34490 +L49250 34420 +L49290 34370 +L49340 34340 +L49440 34320 +L49510 34320 +L49600 34340 +L49650 34370 +L49700 34420 +L49720 34490 +L49720 34610 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 49400 33500)"> +<text x="49400" y="33500" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">19</text> +</g> +<path d="M49370 33590 +L49370 33880 +" /> +<path d="M49370 33730 +L48870 33730 +L48940 33780 +L48990 33830 +L49010 33880 +" /> +<path d="M49370 33350 +L49370 33260 +L49350 33210 +L49320 33190 +L49250 33140 +L49160 33110 +L48970 33110 +L48920 33140 +L48900 33160 +L48870 33210 +L48870 33300 +L48900 33350 +L48920 33380 +L48970 33400 +L49090 33400 +L49130 33380 +L49160 33350 +L49180 33300 +L49180 33210 +L49160 33160 +L49130 33140 +L49090 33110 +" /> +<path d="M44500 65000 +L43500 65000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44700" y="65250" +textLength="2010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">PC13</text> +<path d="M44840 65220 +L44840 64720 +L45030 64720 +L45080 64750 +L45110 64770 +L45130 64820 +L45130 64890 +L45110 64940 +L45080 64960 +L45030 64980 +L44840 64980 +" /> +<path d="M45630 65170 +L45610 65200 +L45530 65220 +L45490 65220 +L45420 65200 +L45370 65150 +L45340 65100 +L45320 65010 +L45320 64940 +L45340 64840 +L45370 64790 +L45420 64750 +L45490 64720 +L45530 64720 +L45610 64750 +L45630 64770 +" /> +<path d="M46110 65220 +L45820 65220 +" /> +<path d="M45960 65220 +L45960 64720 +L45920 64790 +L45870 64840 +L45820 64860 +" /> +<path d="M46270 64720 +L46580 64720 +L46420 64910 +L46490 64910 +L46530 64940 +L46560 64960 +L46580 65010 +L46580 65130 +L46560 65170 +L46530 65200 +L46490 65220 +L46340 65220 +L46300 65200 +L46270 65170 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44000" y="64900" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">2</text> +<path d="M43850 64420 +L43880 64400 +L43920 64370 +L44040 64370 +L44090 64400 +L44110 64420 +L44140 64470 +L44140 64510 +L44110 64590 +L43830 64870 +L44140 64870 +" /> +<path d="M56500 39000 +L57500 39000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="39250" +textLength="1460" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PA4</text> +<path d="M54980 39220 +L54980 38720 +L55170 38720 +L55220 38750 +L55240 38770 +L55270 38820 +L55270 38890 +L55240 38940 +L55220 38960 +L55170 38980 +L54980 38980 +" /> +<path d="M55460 39080 +L55690 39080 +" /> +<path d="M55410 39220 +L55570 38720 +L55740 39220 +" /> +<path d="M56120 38890 +L56120 39220 +" /> +<path d="M56000 38700 +L55880 39050 +L56190 39050 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="38900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">20</text> +<path d="M56610 38420 +L56640 38400 +L56690 38370 +L56800 38370 +L56850 38400 +L56880 38420 +L56900 38470 +L56900 38510 +L56880 38590 +L56590 38870 +L56900 38870 +" /> +<path d="M57210 38370 +L57260 38370 +L57300 38400 +L57330 38420 +L57350 38470 +L57380 38560 +L57380 38680 +L57350 38780 +L57330 38820 +L57300 38850 +L57260 38870 +L57210 38870 +L57160 38850 +L57140 38820 +L57110 38780 +L57090 38680 +L57090 38560 +L57110 38470 +L57140 38420 +L57160 38400 +L57210 38370 +" /> +<path d="M56500 40000 +L57500 40000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="40250" +textLength="1460" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PA5</text> +<path d="M54980 40220 +L54980 39720 +L55170 39720 +L55220 39750 +L55240 39770 +L55270 39820 +L55270 39890 +L55240 39940 +L55220 39960 +L55170 39980 +L54980 39980 +" /> +<path d="M55460 40080 +L55690 40080 +" /> +<path d="M55410 40220 +L55570 39720 +L55740 40220 +" /> +<path d="M56150 39720 +L55910 39720 +L55880 39960 +L55910 39940 +L55960 39910 +L56070 39910 +L56120 39940 +L56150 39960 +L56170 40010 +L56170 40130 +L56150 40170 +L56120 40200 +L56070 40220 +L55960 40220 +L55910 40200 +L55880 40170 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="39900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">21</text> +<path d="M56610 39420 +L56640 39400 +L56690 39370 +L56800 39370 +L56850 39400 +L56880 39420 +L56900 39470 +L56900 39510 +L56880 39590 +L56590 39870 +L56900 39870 +" /> +<path d="M57380 39870 +L57090 39870 +" /> +<path d="M57230 39870 +L57230 39370 +L57190 39440 +L57140 39490 +L57090 39510 +" /> +<path d="M56500 41000 +L57500 41000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="41250" +textLength="1460" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PA6</text> +<path d="M54980 41220 +L54980 40720 +L55170 40720 +L55220 40750 +L55240 40770 +L55270 40820 +L55270 40890 +L55240 40940 +L55220 40960 +L55170 40980 +L54980 40980 +" /> +<path d="M55460 41080 +L55690 41080 +" /> +<path d="M55410 41220 +L55570 40720 +L55740 41220 +" /> +<path d="M56120 40720 +L56030 40720 +L55980 40750 +L55960 40770 +L55910 40840 +L55880 40940 +L55880 41130 +L55910 41170 +L55930 41200 +L55980 41220 +L56070 41220 +L56120 41200 +L56150 41170 +L56170 41130 +L56170 41010 +L56150 40960 +L56120 40940 +L56070 40910 +L55980 40910 +L55930 40940 +L55910 40960 +L55880 41010 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="40900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">22</text> +<path d="M56610 40420 +L56640 40400 +L56690 40370 +L56800 40370 +L56850 40400 +L56880 40420 +L56900 40470 +L56900 40510 +L56880 40590 +L56590 40870 +L56900 40870 +" /> +<path d="M57090 40420 +L57110 40400 +L57160 40370 +L57280 40370 +L57330 40400 +L57350 40420 +L57380 40470 +L57380 40510 +L57350 40590 +L57070 40870 +L57380 40870 +" /> +<path d="M56500 42000 +L57500 42000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="42250" +textLength="1460" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PA7</text> +<path d="M54980 42220 +L54980 41720 +L55170 41720 +L55220 41750 +L55240 41770 +L55270 41820 +L55270 41890 +L55240 41940 +L55220 41960 +L55170 41980 +L54980 41980 +" /> +<path d="M55460 42080 +L55690 42080 +" /> +<path d="M55410 42220 +L55570 41720 +L55740 42220 +" /> +<path d="M55860 41720 +L56190 41720 +L55980 42220 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="41900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">23</text> +<path d="M56610 41420 +L56640 41400 +L56690 41370 +L56800 41370 +L56850 41400 +L56880 41420 +L56900 41470 +L56900 41510 +L56880 41590 +L56590 41870 +L56900 41870 +" /> +<path d="M57070 41370 +L57380 41370 +L57210 41560 +L57280 41560 +L57330 41590 +L57350 41610 +L57380 41660 +L57380 41780 +L57350 41820 +L57330 41850 +L57280 41870 +L57140 41870 +L57090 41850 +L57070 41820 +" /> +<path d="M44500 56000 +L43500 56000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44700" y="56250" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">PC4</text> +<path d="M44840 56220 +L44840 55720 +L45030 55720 +L45080 55750 +L45110 55770 +L45130 55820 +L45130 55890 +L45110 55940 +L45080 55960 +L45030 55980 +L44840 55980 +" /> +<path d="M45630 56170 +L45610 56200 +L45530 56220 +L45490 56220 +L45420 56200 +L45370 56150 +L45340 56100 +L45320 56010 +L45320 55940 +L45340 55840 +L45370 55790 +L45420 55750 +L45490 55720 +L45530 55720 +L45610 55750 +L45630 55770 +" /> +<path d="M46060 55890 +L46060 56220 +" /> +<path d="M45940 55700 +L45820 56050 +L46130 56050 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44000" y="55900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">24</text> +<path d="M43610 55420 +L43640 55400 +L43690 55370 +L43800 55370 +L43850 55400 +L43880 55420 +L43900 55470 +L43900 55510 +L43880 55590 +L43590 55870 +L43900 55870 +" /> +<path d="M44330 55540 +L44330 55870 +" /> +<path d="M44210 55350 +L44090 55700 +L44400 55700 +" /> +<path d="M44500 57000 +L43500 57000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44700" y="57250" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">PC5</text> +<path d="M44840 57220 +L44840 56720 +L45030 56720 +L45080 56750 +L45110 56770 +L45130 56820 +L45130 56890 +L45110 56940 +L45080 56960 +L45030 56980 +L44840 56980 +" /> +<path d="M45630 57170 +L45610 57200 +L45530 57220 +L45490 57220 +L45420 57200 +L45370 57150 +L45340 57100 +L45320 57010 +L45320 56940 +L45340 56840 +L45370 56790 +L45420 56750 +L45490 56720 +L45530 56720 +L45610 56750 +L45630 56770 +" /> +<path d="M46080 56720 +L45840 56720 +L45820 56960 +L45840 56940 +L45890 56910 +L46010 56910 +L46060 56940 +L46080 56960 +L46110 57010 +L46110 57130 +L46080 57170 +L46060 57200 +L46010 57220 +L45890 57220 +L45840 57200 +L45820 57170 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44000" y="56900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">25</text> +<path d="M43610 56420 +L43640 56400 +L43690 56370 +L43800 56370 +L43850 56400 +L43880 56420 +L43900 56470 +L43900 56510 +L43880 56590 +L43590 56870 +L43900 56870 +" /> +<path d="M44350 56370 +L44110 56370 +L44090 56610 +L44110 56590 +L44160 56560 +L44280 56560 +L44330 56590 +L44350 56610 +L44380 56660 +L44380 56780 +L44350 56820 +L44330 56850 +L44280 56870 +L44160 56870 +L44110 56850 +L44090 56820 +" /> +<path d="M56500 52000 +L57500 52000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="52250" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PB0</text> +<path d="M54910 52220 +L54910 51720 +L55100 51720 +L55150 51750 +L55170 51770 +L55190 51820 +L55190 51890 +L55170 51940 +L55150 51960 +L55100 51980 +L54910 51980 +" /> +<path d="M55570 51960 +L55650 51980 +L55670 52010 +L55690 52050 +L55690 52130 +L55670 52170 +L55650 52200 +L55600 52220 +L55410 52220 +L55410 51720 +L55570 51720 +L55620 51750 +L55650 51770 +L55670 51820 +L55670 51860 +L55650 51910 +L55620 51940 +L55570 51960 +L55410 51960 +" /> +<path d="M56000 51720 +L56050 51720 +L56100 51750 +L56120 51770 +L56150 51820 +L56170 51910 +L56170 52030 +L56150 52130 +L56120 52170 +L56100 52200 +L56050 52220 +L56000 52220 +L55960 52200 +L55930 52170 +L55910 52130 +L55880 52030 +L55880 51910 +L55910 51820 +L55930 51770 +L55960 51750 +L56000 51720 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="51900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">26</text> +<path d="M56610 51420 +L56640 51400 +L56690 51370 +L56800 51370 +L56850 51400 +L56880 51420 +L56900 51470 +L56900 51510 +L56880 51590 +L56590 51870 +L56900 51870 +" /> +<path d="M57330 51370 +L57230 51370 +L57190 51400 +L57160 51420 +L57110 51490 +L57090 51590 +L57090 51780 +L57110 51820 +L57140 51850 +L57190 51870 +L57280 51870 +L57330 51850 +L57350 51820 +L57380 51780 +L57380 51660 +L57350 51610 +L57330 51590 +L57280 51560 +L57190 51560 +L57140 51590 +L57110 51610 +L57090 51660 +" /> +<path d="M56500 53000 +L57500 53000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="53250" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PB1</text> +<path d="M54910 53220 +L54910 52720 +L55100 52720 +L55150 52750 +L55170 52770 +L55190 52820 +L55190 52890 +L55170 52940 +L55150 52960 +L55100 52980 +L54910 52980 +" /> +<path d="M55570 52960 +L55650 52980 +L55670 53010 +L55690 53050 +L55690 53130 +L55670 53170 +L55650 53200 +L55600 53220 +L55410 53220 +L55410 52720 +L55570 52720 +L55620 52750 +L55650 52770 +L55670 52820 +L55670 52860 +L55650 52910 +L55620 52940 +L55570 52960 +L55410 52960 +" /> +<path d="M56170 53220 +L55880 53220 +" /> +<path d="M56030 53220 +L56030 52720 +L55980 52790 +L55930 52840 +L55880 52860 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="52900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">27</text> +<path d="M56610 52420 +L56640 52400 +L56690 52370 +L56800 52370 +L56850 52400 +L56880 52420 +L56900 52470 +L56900 52510 +L56880 52590 +L56590 52870 +L56900 52870 +" /> +<path d="M57070 52370 +L57400 52370 +L57190 52870 +" /> +<path d="M56500 54000 +L57500 54000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="54250" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PB2</text> +<path d="M54910 54220 +L54910 53720 +L55100 53720 +L55150 53750 +L55170 53770 +L55190 53820 +L55190 53890 +L55170 53940 +L55150 53960 +L55100 53980 +L54910 53980 +" /> +<path d="M55570 53960 +L55650 53980 +L55670 54010 +L55690 54050 +L55690 54130 +L55670 54170 +L55650 54200 +L55600 54220 +L55410 54220 +L55410 53720 +L55570 53720 +L55620 53750 +L55650 53770 +L55670 53820 +L55670 53860 +L55650 53910 +L55620 53940 +L55570 53960 +L55410 53960 +" /> +<path d="M55880 53770 +L55910 53750 +L55960 53720 +L56070 53720 +L56120 53750 +L56150 53770 +L56170 53820 +L56170 53860 +L56150 53940 +L55860 54220 +L56170 54220 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="53900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">28</text> +<path d="M56610 53420 +L56640 53400 +L56690 53370 +L56800 53370 +L56850 53400 +L56880 53420 +L56900 53470 +L56900 53510 +L56880 53590 +L56590 53870 +L56900 53870 +" /> +<path d="M57190 53590 +L57140 53560 +L57110 53540 +L57090 53490 +L57090 53470 +L57110 53420 +L57140 53400 +L57190 53370 +L57280 53370 +L57330 53400 +L57350 53420 +L57380 53470 +L57380 53490 +L57350 53540 +L57330 53560 +L57280 53590 +L57190 53590 +L57140 53610 +L57110 53630 +L57090 53680 +L57090 53780 +L57110 53820 +L57140 53850 +L57190 53870 +L57280 53870 +L57330 53850 +L57350 53820 +L57380 53780 +L57380 53680 +L57350 53630 +L57330 53610 +L57280 53590 +" /> +<path d="M56500 62000 +L57500 62000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="62250" +textLength="2010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PB10</text> +<path d="M54430 62220 +L54430 61720 +L54620 61720 +L54670 61750 +L54690 61770 +L54720 61820 +L54720 61890 +L54690 61940 +L54670 61960 +L54620 61980 +L54430 61980 +" /> +<path d="M55100 61960 +L55170 61980 +L55190 62010 +L55220 62050 +L55220 62130 +L55190 62170 +L55170 62200 +L55120 62220 +L54930 62220 +L54930 61720 +L55100 61720 +L55150 61750 +L55170 61770 +L55190 61820 +L55190 61860 +L55170 61910 +L55150 61940 +L55100 61960 +L54930 61960 +" /> +<path d="M55690 62220 +L55410 62220 +" /> +<path d="M55550 62220 +L55550 61720 +L55500 61790 +L55460 61840 +L55410 61860 +" /> +<path d="M56000 61720 +L56050 61720 +L56100 61750 +L56120 61770 +L56150 61820 +L56170 61910 +L56170 62030 +L56150 62130 +L56120 62170 +L56100 62200 +L56050 62220 +L56000 62220 +L55960 62200 +L55930 62170 +L55910 62130 +L55880 62030 +L55880 61910 +L55910 61820 +L55930 61770 +L55960 61750 +L56000 61720 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="61900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">29</text> +<path d="M56610 61420 +L56640 61400 +L56690 61370 +L56800 61370 +L56850 61400 +L56880 61420 +L56900 61470 +L56900 61510 +L56880 61590 +L56590 61870 +L56900 61870 +" /> +<path d="M57140 61870 +L57230 61870 +L57280 61850 +L57300 61820 +L57350 61750 +L57380 61660 +L57380 61470 +L57350 61420 +L57330 61400 +L57280 61370 +L57190 61370 +L57140 61400 +L57110 61420 +L57090 61470 +L57090 61590 +L57110 61630 +L57140 61660 +L57190 61680 +L57280 61680 +L57330 61660 +L57350 61630 +L57380 61590 +" /> +<path d="M44500 66000 +L43500 66000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44700" y="66250" +textLength="2010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">PC14</text> +<path d="M44840 66220 +L44840 65720 +L45030 65720 +L45080 65750 +L45110 65770 +L45130 65820 +L45130 65890 +L45110 65940 +L45080 65960 +L45030 65980 +L44840 65980 +" /> +<path d="M45630 66170 +L45610 66200 +L45530 66220 +L45490 66220 +L45420 66200 +L45370 66150 +L45340 66100 +L45320 66010 +L45320 65940 +L45340 65840 +L45370 65790 +L45420 65750 +L45490 65720 +L45530 65720 +L45610 65750 +L45630 65770 +" /> +<path d="M46110 66220 +L45820 66220 +" /> +<path d="M45960 66220 +L45960 65720 +L45920 65790 +L45870 65840 +L45820 65860 +" /> +<path d="M46530 65890 +L46530 66220 +" /> +<path d="M46420 65700 +L46300 66050 +L46610 66050 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44000" y="65900" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">3</text> +<path d="M43830 65370 +L44140 65370 +L43970 65560 +L44040 65560 +L44090 65590 +L44110 65610 +L44140 65660 +L44140 65780 +L44110 65820 +L44090 65850 +L44040 65870 +L43900 65870 +L43850 65850 +L43830 65820 +" /> +<path d="M56500 63000 +L57500 63000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="63250" +textLength="2010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PB11</text> +<path d="M54430 63220 +L54430 62720 +L54620 62720 +L54670 62750 +L54690 62770 +L54720 62820 +L54720 62890 +L54690 62940 +L54670 62960 +L54620 62980 +L54430 62980 +" /> +<path d="M55100 62960 +L55170 62980 +L55190 63010 +L55220 63050 +L55220 63130 +L55190 63170 +L55170 63200 +L55120 63220 +L54930 63220 +L54930 62720 +L55100 62720 +L55150 62750 +L55170 62770 +L55190 62820 +L55190 62860 +L55170 62910 +L55150 62940 +L55100 62960 +L54930 62960 +" /> +<path d="M55690 63220 +L55410 63220 +" /> +<path d="M55550 63220 +L55550 62720 +L55500 62790 +L55460 62840 +L55410 62860 +" /> +<path d="M56170 63220 +L55880 63220 +" /> +<path d="M56030 63220 +L56030 62720 +L55980 62790 +L55930 62840 +L55880 62860 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="62900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">30</text> +<path d="M56590 62370 +L56900 62370 +L56730 62560 +L56800 62560 +L56850 62590 +L56880 62610 +L56900 62660 +L56900 62780 +L56880 62820 +L56850 62850 +L56800 62870 +L56660 62870 +L56610 62850 +L56590 62820 +" /> +<path d="M57210 62370 +L57260 62370 +L57300 62400 +L57330 62420 +L57350 62470 +L57380 62560 +L57380 62680 +L57350 62780 +L57330 62820 +L57300 62850 +L57260 62870 +L57210 62870 +L57160 62850 +L57140 62820 +L57110 62780 +L57090 62680 +L57090 62560 +L57110 62470 +L57140 62420 +L57160 62400 +L57210 62370 +" /> +<path d="M49500 68000 +L49500 69000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 49500 67800)"> +<text x="49500" y="68050" +textLength="1440" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">VSS</text> +</g> +<path d="M49220 67720 +L49720 67550 +L49220 67380 +" /> +<path d="M49700 67240 +L49720 67170 +L49720 67050 +L49700 67000 +L49670 66980 +L49630 66960 +L49580 66960 +L49530 66980 +L49510 67000 +L49480 67050 +L49460 67150 +L49440 67190 +L49410 67220 +L49360 67240 +L49320 67240 +L49270 67220 +L49250 67190 +L49220 67150 +L49220 67030 +L49250 66960 +" /> +<path d="M49700 66770 +L49720 66690 +L49720 66570 +L49700 66530 +L49670 66500 +L49630 66480 +L49580 66480 +L49530 66500 +L49510 66530 +L49480 66570 +L49460 66670 +L49440 66720 +L49410 66740 +L49360 66770 +L49320 66770 +L49270 66740 +L49250 66720 +L49220 66670 +L49220 66550 +L49250 66480 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 49400 68500)"> +<text x="49400" y="68500" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">31</text> +</g> +<path d="M48870 68900 +L48870 68590 +L49060 68760 +L49060 68690 +L49090 68640 +L49110 68610 +L49160 68590 +L49280 68590 +L49320 68610 +L49350 68640 +L49370 68690 +L49370 68830 +L49350 68880 +L49320 68900 +" /> +<path d="M49370 68110 +L49370 68400 +" /> +<path d="M49370 68260 +L48870 68260 +L48940 68300 +L48990 68350 +L49010 68400 +" /> +<path d="M50500 34000 +L50500 33000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 50500 34200)"> +<text x="50500" y="34450" +textLength="1490" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">VDD</text> +</g> +<path d="M50220 35610 +L50720 35440 +L50220 35270 +" /> +<path d="M50720 35110 +L50220 35110 +L50220 34990 +L50250 34920 +L50290 34870 +L50340 34840 +L50440 34820 +L50510 34820 +L50600 34840 +L50650 34870 +L50700 34920 +L50720 34990 +L50720 35110 +" /> +<path d="M50720 34610 +L50220 34610 +L50220 34490 +L50250 34420 +L50290 34370 +L50340 34340 +L50440 34320 +L50510 34320 +L50600 34340 +L50650 34370 +L50700 34420 +L50720 34490 +L50720 34610 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 50400 33500)"> +<text x="50400" y="33500" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">32</text> +</g> +<path d="M49870 33900 +L49870 33590 +L50060 33760 +L50060 33690 +L50090 33640 +L50110 33610 +L50160 33590 +L50280 33590 +L50320 33610 +L50350 33640 +L50370 33690 +L50370 33830 +L50350 33880 +L50320 33900 +" /> +<path d="M49920 33400 +L49900 33380 +L49870 33330 +L49870 33210 +L49900 33160 +L49920 33140 +L49970 33110 +L50010 33110 +L50090 33140 +L50370 33420 +L50370 33110 +" /> +<path d="M56500 64000 +L57500 64000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="64250" +textLength="2010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PB12</text> +<path d="M54430 64220 +L54430 63720 +L54620 63720 +L54670 63750 +L54690 63770 +L54720 63820 +L54720 63890 +L54690 63940 +L54670 63960 +L54620 63980 +L54430 63980 +" /> +<path d="M55100 63960 +L55170 63980 +L55190 64010 +L55220 64050 +L55220 64130 +L55190 64170 +L55170 64200 +L55120 64220 +L54930 64220 +L54930 63720 +L55100 63720 +L55150 63750 +L55170 63770 +L55190 63820 +L55190 63860 +L55170 63910 +L55150 63940 +L55100 63960 +L54930 63960 +" /> +<path d="M55690 64220 +L55410 64220 +" /> +<path d="M55550 64220 +L55550 63720 +L55500 63790 +L55460 63840 +L55410 63860 +" /> +<path d="M55880 63770 +L55910 63750 +L55960 63720 +L56070 63720 +L56120 63750 +L56150 63770 +L56170 63820 +L56170 63860 +L56150 63940 +L55860 64220 +L56170 64220 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="63900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">33</text> +<path d="M56590 63370 +L56900 63370 +L56730 63560 +L56800 63560 +L56850 63590 +L56880 63610 +L56900 63660 +L56900 63780 +L56880 63820 +L56850 63850 +L56800 63870 +L56660 63870 +L56610 63850 +L56590 63820 +" /> +<path d="M57070 63370 +L57380 63370 +L57210 63560 +L57280 63560 +L57330 63590 +L57350 63610 +L57380 63660 +L57380 63780 +L57350 63820 +L57330 63850 +L57280 63870 +L57140 63870 +L57090 63850 +L57070 63820 +" /> +<path d="M56500 65000 +L57500 65000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="65250" +textLength="2010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PB13</text> +<path d="M54430 65220 +L54430 64720 +L54620 64720 +L54670 64750 +L54690 64770 +L54720 64820 +L54720 64890 +L54690 64940 +L54670 64960 +L54620 64980 +L54430 64980 +" /> +<path d="M55100 64960 +L55170 64980 +L55190 65010 +L55220 65050 +L55220 65130 +L55190 65170 +L55170 65200 +L55120 65220 +L54930 65220 +L54930 64720 +L55100 64720 +L55150 64750 +L55170 64770 +L55190 64820 +L55190 64860 +L55170 64910 +L55150 64940 +L55100 64960 +L54930 64960 +" /> +<path d="M55690 65220 +L55410 65220 +" /> +<path d="M55550 65220 +L55550 64720 +L55500 64790 +L55460 64840 +L55410 64860 +" /> +<path d="M55860 64720 +L56170 64720 +L56000 64910 +L56070 64910 +L56120 64940 +L56150 64960 +L56170 65010 +L56170 65130 +L56150 65170 +L56120 65200 +L56070 65220 +L55930 65220 +L55880 65200 +L55860 65170 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="64900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">34</text> +<path d="M56590 64370 +L56900 64370 +L56730 64560 +L56800 64560 +L56850 64590 +L56880 64610 +L56900 64660 +L56900 64780 +L56880 64820 +L56850 64850 +L56800 64870 +L56660 64870 +L56610 64850 +L56590 64820 +" /> +<path d="M57330 64540 +L57330 64870 +" /> +<path d="M57210 64350 +L57090 64700 +L57400 64700 +" /> +<path d="M56500 66000 +L57500 66000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="66250" +textLength="2010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PB14</text> +<path d="M54430 66220 +L54430 65720 +L54620 65720 +L54670 65750 +L54690 65770 +L54720 65820 +L54720 65890 +L54690 65940 +L54670 65960 +L54620 65980 +L54430 65980 +" /> +<path d="M55100 65960 +L55170 65980 +L55190 66010 +L55220 66050 +L55220 66130 +L55190 66170 +L55170 66200 +L55120 66220 +L54930 66220 +L54930 65720 +L55100 65720 +L55150 65750 +L55170 65770 +L55190 65820 +L55190 65860 +L55170 65910 +L55150 65940 +L55100 65960 +L54930 65960 +" /> +<path d="M55690 66220 +L55410 66220 +" /> +<path d="M55550 66220 +L55550 65720 +L55500 65790 +L55460 65840 +L55410 65860 +" /> +<path d="M56120 65890 +L56120 66220 +" /> +<path d="M56000 65700 +L55880 66050 +L56190 66050 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="65900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">35</text> +<path d="M56590 65370 +L56900 65370 +L56730 65560 +L56800 65560 +L56850 65590 +L56880 65610 +L56900 65660 +L56900 65780 +L56880 65820 +L56850 65850 +L56800 65870 +L56660 65870 +L56610 65850 +L56590 65820 +" /> +<path d="M57350 65370 +L57110 65370 +L57090 65610 +L57110 65590 +L57160 65560 +L57280 65560 +L57330 65590 +L57350 65610 +L57380 65660 +L57380 65780 +L57350 65820 +L57330 65850 +L57280 65870 +L57160 65870 +L57110 65850 +L57090 65820 +" /> +<path d="M56500 67000 +L57500 67000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="67250" +textLength="2010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PB15</text> +<path d="M54430 67220 +L54430 66720 +L54620 66720 +L54670 66750 +L54690 66770 +L54720 66820 +L54720 66890 +L54690 66940 +L54670 66960 +L54620 66980 +L54430 66980 +" /> +<path d="M55100 66960 +L55170 66980 +L55190 67010 +L55220 67050 +L55220 67130 +L55190 67170 +L55170 67200 +L55120 67220 +L54930 67220 +L54930 66720 +L55100 66720 +L55150 66750 +L55170 66770 +L55190 66820 +L55190 66860 +L55170 66910 +L55150 66940 +L55100 66960 +L54930 66960 +" /> +<path d="M55690 67220 +L55410 67220 +" /> +<path d="M55550 67220 +L55550 66720 +L55500 66790 +L55460 66840 +L55410 66860 +" /> +<path d="M56150 66720 +L55910 66720 +L55880 66960 +L55910 66940 +L55960 66910 +L56070 66910 +L56120 66940 +L56150 66960 +L56170 67010 +L56170 67130 +L56150 67170 +L56120 67200 +L56070 67220 +L55960 67220 +L55910 67200 +L55880 67170 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="66900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">36</text> +<path d="M56590 66370 +L56900 66370 +L56730 66560 +L56800 66560 +L56850 66590 +L56880 66610 +L56900 66660 +L56900 66780 +L56880 66820 +L56850 66850 +L56800 66870 +L56660 66870 +L56610 66850 +L56590 66820 +" /> +<path d="M57330 66370 +L57230 66370 +L57190 66400 +L57160 66420 +L57110 66490 +L57090 66590 +L57090 66780 +L57110 66820 +L57140 66850 +L57190 66870 +L57280 66870 +L57330 66850 +L57350 66820 +L57380 66780 +L57380 66660 +L57350 66610 +L57330 66590 +L57280 66560 +L57190 66560 +L57140 66590 +L57110 66610 +L57090 66660 +" /> +<path d="M44500 58000 +L43500 58000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44700" y="58250" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">PC6</text> +<path d="M44840 58220 +L44840 57720 +L45030 57720 +L45080 57750 +L45110 57770 +L45130 57820 +L45130 57890 +L45110 57940 +L45080 57960 +L45030 57980 +L44840 57980 +" /> +<path d="M45630 58170 +L45610 58200 +L45530 58220 +L45490 58220 +L45420 58200 +L45370 58150 +L45340 58100 +L45320 58010 +L45320 57940 +L45340 57840 +L45370 57790 +L45420 57750 +L45490 57720 +L45530 57720 +L45610 57750 +L45630 57770 +" /> +<path d="M46060 57720 +L45960 57720 +L45920 57750 +L45890 57770 +L45840 57840 +L45820 57940 +L45820 58130 +L45840 58170 +L45870 58200 +L45920 58220 +L46010 58220 +L46060 58200 +L46080 58170 +L46110 58130 +L46110 58010 +L46080 57960 +L46060 57940 +L46010 57910 +L45920 57910 +L45870 57940 +L45840 57960 +L45820 58010 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44000" y="57900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">37</text> +<path d="M43590 57370 +L43900 57370 +L43730 57560 +L43800 57560 +L43850 57590 +L43880 57610 +L43900 57660 +L43900 57780 +L43880 57820 +L43850 57850 +L43800 57870 +L43660 57870 +L43610 57850 +L43590 57820 +" /> +<path d="M44070 57370 +L44400 57370 +L44190 57870 +" /> +<path d="M44500 59000 +L43500 59000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44700" y="59250" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">PC7</text> +<path d="M44840 59220 +L44840 58720 +L45030 58720 +L45080 58750 +L45110 58770 +L45130 58820 +L45130 58890 +L45110 58940 +L45080 58960 +L45030 58980 +L44840 58980 +" /> +<path d="M45630 59170 +L45610 59200 +L45530 59220 +L45490 59220 +L45420 59200 +L45370 59150 +L45340 59100 +L45320 59010 +L45320 58940 +L45340 58840 +L45370 58790 +L45420 58750 +L45490 58720 +L45530 58720 +L45610 58750 +L45630 58770 +" /> +<path d="M45800 58720 +L46130 58720 +L45920 59220 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44000" y="58900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">38</text> +<path d="M43590 58370 +L43900 58370 +L43730 58560 +L43800 58560 +L43850 58590 +L43880 58610 +L43900 58660 +L43900 58780 +L43880 58820 +L43850 58850 +L43800 58870 +L43660 58870 +L43610 58850 +L43590 58820 +" /> +<path d="M44190 58590 +L44140 58560 +L44110 58540 +L44090 58490 +L44090 58470 +L44110 58420 +L44140 58400 +L44190 58370 +L44280 58370 +L44330 58400 +L44350 58420 +L44380 58470 +L44380 58490 +L44350 58540 +L44330 58560 +L44280 58590 +L44190 58590 +L44140 58610 +L44110 58630 +L44090 58680 +L44090 58780 +L44110 58820 +L44140 58850 +L44190 58870 +L44280 58870 +L44330 58850 +L44350 58820 +L44380 58780 +L44380 58680 +L44350 58630 +L44330 58610 +L44280 58590 +" /> +<path d="M44500 60000 +L43500 60000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44700" y="60250" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">PC8</text> +<path d="M44840 60220 +L44840 59720 +L45030 59720 +L45080 59750 +L45110 59770 +L45130 59820 +L45130 59890 +L45110 59940 +L45080 59960 +L45030 59980 +L44840 59980 +" /> +<path d="M45630 60170 +L45610 60200 +L45530 60220 +L45490 60220 +L45420 60200 +L45370 60150 +L45340 60100 +L45320 60010 +L45320 59940 +L45340 59840 +L45370 59790 +L45420 59750 +L45490 59720 +L45530 59720 +L45610 59750 +L45630 59770 +" /> +<path d="M45920 59940 +L45870 59910 +L45840 59890 +L45820 59840 +L45820 59820 +L45840 59770 +L45870 59750 +L45920 59720 +L46010 59720 +L46060 59750 +L46080 59770 +L46110 59820 +L46110 59840 +L46080 59890 +L46060 59910 +L46010 59940 +L45920 59940 +L45870 59960 +L45840 59980 +L45820 60030 +L45820 60130 +L45840 60170 +L45870 60200 +L45920 60220 +L46010 60220 +L46060 60200 +L46080 60170 +L46110 60130 +L46110 60030 +L46080 59980 +L46060 59960 +L46010 59940 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44000" y="59900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">39</text> +<path d="M43590 59370 +L43900 59370 +L43730 59560 +L43800 59560 +L43850 59590 +L43880 59610 +L43900 59660 +L43900 59780 +L43880 59820 +L43850 59850 +L43800 59870 +L43660 59870 +L43610 59850 +L43590 59820 +" /> +<path d="M44140 59870 +L44230 59870 +L44280 59850 +L44300 59820 +L44350 59750 +L44380 59660 +L44380 59470 +L44350 59420 +L44330 59400 +L44280 59370 +L44190 59370 +L44140 59400 +L44110 59420 +L44090 59470 +L44090 59590 +L44110 59630 +L44140 59660 +L44190 59680 +L44280 59680 +L44330 59660 +L44350 59630 +L44380 59590 +" /> +<path d="M44500 67000 +L43500 67000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44700" y="67250" +textLength="2010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">PC15</text> +<path d="M44840 67220 +L44840 66720 +L45030 66720 +L45080 66750 +L45110 66770 +L45130 66820 +L45130 66890 +L45110 66940 +L45080 66960 +L45030 66980 +L44840 66980 +" /> +<path d="M45630 67170 +L45610 67200 +L45530 67220 +L45490 67220 +L45420 67200 +L45370 67150 +L45340 67100 +L45320 67010 +L45320 66940 +L45340 66840 +L45370 66790 +L45420 66750 +L45490 66720 +L45530 66720 +L45610 66750 +L45630 66770 +" /> +<path d="M46110 67220 +L45820 67220 +" /> +<path d="M45960 67220 +L45960 66720 +L45920 66790 +L45870 66840 +L45820 66860 +" /> +<path d="M46560 66720 +L46320 66720 +L46300 66960 +L46320 66940 +L46370 66910 +L46490 66910 +L46530 66940 +L46560 66960 +L46580 67010 +L46580 67130 +L46560 67170 +L46530 67200 +L46490 67220 +L46370 67220 +L46320 67200 +L46300 67170 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44000" y="66900" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">4</text> +<path d="M44090 66540 +L44090 66870 +" /> +<path d="M43970 66350 +L43850 66700 +L44160 66700 +" /> +<path d="M44500 61000 +L43500 61000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44700" y="61250" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">PC9</text> +<path d="M44840 61220 +L44840 60720 +L45030 60720 +L45080 60750 +L45110 60770 +L45130 60820 +L45130 60890 +L45110 60940 +L45080 60960 +L45030 60980 +L44840 60980 +" /> +<path d="M45630 61170 +L45610 61200 +L45530 61220 +L45490 61220 +L45420 61200 +L45370 61150 +L45340 61100 +L45320 61010 +L45320 60940 +L45340 60840 +L45370 60790 +L45420 60750 +L45490 60720 +L45530 60720 +L45610 60750 +L45630 60770 +" /> +<path d="M45870 61220 +L45960 61220 +L46010 61200 +L46030 61170 +L46080 61100 +L46110 61010 +L46110 60820 +L46080 60770 +L46060 60750 +L46010 60720 +L45920 60720 +L45870 60750 +L45840 60770 +L45820 60820 +L45820 60940 +L45840 60980 +L45870 61010 +L45920 61030 +L46010 61030 +L46060 61010 +L46080 60980 +L46110 60940 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44000" y="60900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">40</text> +<path d="M43850 60540 +L43850 60870 +" /> +<path d="M43730 60350 +L43610 60700 +L43920 60700 +" /> +<path d="M44210 60370 +L44260 60370 +L44300 60400 +L44330 60420 +L44350 60470 +L44380 60560 +L44380 60680 +L44350 60780 +L44330 60820 +L44300 60850 +L44260 60870 +L44210 60870 +L44160 60850 +L44140 60820 +L44110 60780 +L44090 60680 +L44090 60560 +L44110 60470 +L44140 60420 +L44160 60400 +L44210 60370 +" /> +<path d="M56500 43000 +L57500 43000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="43250" +textLength="1460" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PA8</text> +<path d="M54980 43220 +L54980 42720 +L55170 42720 +L55220 42750 +L55240 42770 +L55270 42820 +L55270 42890 +L55240 42940 +L55220 42960 +L55170 42980 +L54980 42980 +" /> +<path d="M55460 43080 +L55690 43080 +" /> +<path d="M55410 43220 +L55570 42720 +L55740 43220 +" /> +<path d="M55980 42940 +L55930 42910 +L55910 42890 +L55880 42840 +L55880 42820 +L55910 42770 +L55930 42750 +L55980 42720 +L56070 42720 +L56120 42750 +L56150 42770 +L56170 42820 +L56170 42840 +L56150 42890 +L56120 42910 +L56070 42940 +L55980 42940 +L55930 42960 +L55910 42980 +L55880 43030 +L55880 43130 +L55910 43170 +L55930 43200 +L55980 43220 +L56070 43220 +L56120 43200 +L56150 43170 +L56170 43130 +L56170 43030 +L56150 42980 +L56120 42960 +L56070 42940 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="42900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">41</text> +<path d="M56850 42540 +L56850 42870 +" /> +<path d="M56730 42350 +L56610 42700 +L56920 42700 +" /> +<path d="M57380 42870 +L57090 42870 +" /> +<path d="M57230 42870 +L57230 42370 +L57190 42440 +L57140 42490 +L57090 42510 +" /> +<path d="M56500 44000 +L57500 44000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="44250" +textLength="1460" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PA9</text> +<path d="M54980 44220 +L54980 43720 +L55170 43720 +L55220 43750 +L55240 43770 +L55270 43820 +L55270 43890 +L55240 43940 +L55220 43960 +L55170 43980 +L54980 43980 +" /> +<path d="M55460 44080 +L55690 44080 +" /> +<path d="M55410 44220 +L55570 43720 +L55740 44220 +" /> +<path d="M55930 44220 +L56030 44220 +L56070 44200 +L56100 44170 +L56150 44100 +L56170 44010 +L56170 43820 +L56150 43770 +L56120 43750 +L56070 43720 +L55980 43720 +L55930 43750 +L55910 43770 +L55880 43820 +L55880 43940 +L55910 43980 +L55930 44010 +L55980 44030 +L56070 44030 +L56120 44010 +L56150 43980 +L56170 43940 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="43900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">42</text> +<path d="M56850 43540 +L56850 43870 +" /> +<path d="M56730 43350 +L56610 43700 +L56920 43700 +" /> +<path d="M57090 43420 +L57110 43400 +L57160 43370 +L57280 43370 +L57330 43400 +L57350 43420 +L57380 43470 +L57380 43510 +L57350 43590 +L57070 43870 +L57380 43870 +" /> +<path d="M56500 45000 +L57500 45000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="45250" +textLength="1940" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PA10</text> +<path d="M54500 45220 +L54500 44720 +L54690 44720 +L54740 44750 +L54770 44770 +L54790 44820 +L54790 44890 +L54770 44940 +L54740 44960 +L54690 44980 +L54500 44980 +" /> +<path d="M54980 45080 +L55220 45080 +" /> +<path d="M54930 45220 +L55100 44720 +L55270 45220 +" /> +<path d="M55690 45220 +L55410 45220 +" /> +<path d="M55550 45220 +L55550 44720 +L55500 44790 +L55460 44840 +L55410 44860 +" /> +<path d="M56000 44720 +L56050 44720 +L56100 44750 +L56120 44770 +L56150 44820 +L56170 44910 +L56170 45030 +L56150 45130 +L56120 45170 +L56100 45200 +L56050 45220 +L56000 45220 +L55960 45200 +L55930 45170 +L55910 45130 +L55880 45030 +L55880 44910 +L55910 44820 +L55930 44770 +L55960 44750 +L56000 44720 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="44900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">43</text> +<path d="M56850 44540 +L56850 44870 +" /> +<path d="M56730 44350 +L56610 44700 +L56920 44700 +" /> +<path d="M57070 44370 +L57380 44370 +L57210 44560 +L57280 44560 +L57330 44590 +L57350 44610 +L57380 44660 +L57380 44780 +L57350 44820 +L57330 44850 +L57280 44870 +L57140 44870 +L57090 44850 +L57070 44820 +" /> +<path d="M56500 46000 +L57500 46000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="46250" +textLength="1940" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PA11</text> +<path d="M54500 46220 +L54500 45720 +L54690 45720 +L54740 45750 +L54770 45770 +L54790 45820 +L54790 45890 +L54770 45940 +L54740 45960 +L54690 45980 +L54500 45980 +" /> +<path d="M54980 46080 +L55220 46080 +" /> +<path d="M54930 46220 +L55100 45720 +L55270 46220 +" /> +<path d="M55690 46220 +L55410 46220 +" /> +<path d="M55550 46220 +L55550 45720 +L55500 45790 +L55460 45840 +L55410 45860 +" /> +<path d="M56170 46220 +L55880 46220 +" /> +<path d="M56030 46220 +L56030 45720 +L55980 45790 +L55930 45840 +L55880 45860 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="45900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">44</text> +<path d="M56850 45540 +L56850 45870 +" /> +<path d="M56730 45350 +L56610 45700 +L56920 45700 +" /> +<path d="M57330 45540 +L57330 45870 +" /> +<path d="M57210 45350 +L57090 45700 +L57400 45700 +" /> +<path d="M56500 47000 +L57500 47000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="47250" +textLength="1940" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PA12</text> +<path d="M54500 47220 +L54500 46720 +L54690 46720 +L54740 46750 +L54770 46770 +L54790 46820 +L54790 46890 +L54770 46940 +L54740 46960 +L54690 46980 +L54500 46980 +" /> +<path d="M54980 47080 +L55220 47080 +" /> +<path d="M54930 47220 +L55100 46720 +L55270 47220 +" /> +<path d="M55690 47220 +L55410 47220 +" /> +<path d="M55550 47220 +L55550 46720 +L55500 46790 +L55460 46840 +L55410 46860 +" /> +<path d="M55880 46770 +L55910 46750 +L55960 46720 +L56070 46720 +L56120 46750 +L56150 46770 +L56170 46820 +L56170 46860 +L56150 46940 +L55860 47220 +L56170 47220 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="46900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">45</text> +<path d="M56850 46540 +L56850 46870 +" /> +<path d="M56730 46350 +L56610 46700 +L56920 46700 +" /> +<path d="M57350 46370 +L57110 46370 +L57090 46610 +L57110 46590 +L57160 46560 +L57280 46560 +L57330 46590 +L57350 46610 +L57380 46660 +L57380 46780 +L57350 46820 +L57330 46850 +L57280 46870 +L57160 46870 +L57110 46850 +L57090 46820 +" /> +<path d="M56500 48000 +L57500 48000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="48250" +textLength="1940" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PA13</text> +<path d="M54500 48220 +L54500 47720 +L54690 47720 +L54740 47750 +L54770 47770 +L54790 47820 +L54790 47890 +L54770 47940 +L54740 47960 +L54690 47980 +L54500 47980 +" /> +<path d="M54980 48080 +L55220 48080 +" /> +<path d="M54930 48220 +L55100 47720 +L55270 48220 +" /> +<path d="M55690 48220 +L55410 48220 +" /> +<path d="M55550 48220 +L55550 47720 +L55500 47790 +L55460 47840 +L55410 47860 +" /> +<path d="M55860 47720 +L56170 47720 +L56000 47910 +L56070 47910 +L56120 47940 +L56150 47960 +L56170 48010 +L56170 48130 +L56150 48170 +L56120 48200 +L56070 48220 +L55930 48220 +L55880 48200 +L55860 48170 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="47900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">46</text> +<path d="M56850 47540 +L56850 47870 +" /> +<path d="M56730 47350 +L56610 47700 +L56920 47700 +" /> +<path d="M57330 47370 +L57230 47370 +L57190 47400 +L57160 47420 +L57110 47490 +L57090 47590 +L57090 47780 +L57110 47820 +L57140 47850 +L57190 47870 +L57280 47870 +L57330 47850 +L57350 47820 +L57380 47780 +L57380 47660 +L57350 47610 +L57330 47590 +L57280 47560 +L57190 47560 +L57140 47590 +L57110 47610 +L57090 47660 +" /> +<path d="M50500 68000 +L50500 69000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 50500 67800)"> +<text x="50500" y="68050" +textLength="1440" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">VSS</text> +</g> +<path d="M50220 67720 +L50720 67550 +L50220 67380 +" /> +<path d="M50700 67240 +L50720 67170 +L50720 67050 +L50700 67000 +L50670 66980 +L50630 66960 +L50580 66960 +L50530 66980 +L50510 67000 +L50480 67050 +L50460 67150 +L50440 67190 +L50410 67220 +L50360 67240 +L50320 67240 +L50270 67220 +L50250 67190 +L50220 67150 +L50220 67030 +L50250 66960 +" /> +<path d="M50700 66770 +L50720 66690 +L50720 66570 +L50700 66530 +L50670 66500 +L50630 66480 +L50580 66480 +L50530 66500 +L50510 66530 +L50480 66570 +L50460 66670 +L50440 66720 +L50410 66740 +L50360 66770 +L50320 66770 +L50270 66740 +L50250 66720 +L50220 66670 +L50220 66550 +L50250 66480 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 50400 68500)"> +<text x="50400" y="68500" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">47</text> +</g> +<path d="M50040 68640 +L50370 68640 +" /> +<path d="M49850 68760 +L50200 68880 +L50200 68570 +" /> +<path d="M49870 68420 +L49870 68090 +L50370 68300 +" /> +<path d="M51500 34000 +L51500 33000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 51500 34200)"> +<text x="51500" y="34450" +textLength="1490" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">VDD</text> +</g> +<path d="M51220 35610 +L51720 35440 +L51220 35270 +" /> +<path d="M51720 35110 +L51220 35110 +L51220 34990 +L51250 34920 +L51290 34870 +L51340 34840 +L51440 34820 +L51510 34820 +L51600 34840 +L51650 34870 +L51700 34920 +L51720 34990 +L51720 35110 +" /> +<path d="M51720 34610 +L51220 34610 +L51220 34490 +L51250 34420 +L51290 34370 +L51340 34340 +L51440 34320 +L51510 34320 +L51600 34340 +L51650 34370 +L51700 34420 +L51720 34490 +L51720 34610 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 51400 33500)"> +<text x="51400" y="33500" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">48</text> +</g> +<path d="M51040 33640 +L51370 33640 +" /> +<path d="M50850 33760 +L51200 33880 +L51200 33570 +" /> +<path d="M51090 33300 +L51060 33350 +L51040 33380 +L50990 33400 +L50970 33400 +L50920 33380 +L50900 33350 +L50870 33300 +L50870 33210 +L50900 33160 +L50920 33140 +L50970 33110 +L50990 33110 +L51040 33140 +L51060 33160 +L51090 33210 +L51090 33300 +L51110 33350 +L51130 33380 +L51180 33400 +L51280 33400 +L51320 33380 +L51350 33350 +L51370 33300 +L51370 33210 +L51350 33160 +L51320 33140 +L51280 33110 +L51180 33110 +L51130 33140 +L51110 33160 +L51090 33210 +" /> +<path d="M56500 49000 +L57500 49000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="49250" +textLength="1940" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PA14</text> +<path d="M54500 49220 +L54500 48720 +L54690 48720 +L54740 48750 +L54770 48770 +L54790 48820 +L54790 48890 +L54770 48940 +L54740 48960 +L54690 48980 +L54500 48980 +" /> +<path d="M54980 49080 +L55220 49080 +" /> +<path d="M54930 49220 +L55100 48720 +L55270 49220 +" /> +<path d="M55690 49220 +L55410 49220 +" /> +<path d="M55550 49220 +L55550 48720 +L55500 48790 +L55460 48840 +L55410 48860 +" /> +<path d="M56120 48890 +L56120 49220 +" /> +<path d="M56000 48700 +L55880 49050 +L56190 49050 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="48900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">49</text> +<path d="M56850 48540 +L56850 48870 +" /> +<path d="M56730 48350 +L56610 48700 +L56920 48700 +" /> +<path d="M57140 48870 +L57230 48870 +L57280 48850 +L57300 48820 +L57350 48750 +L57380 48660 +L57380 48470 +L57350 48420 +L57330 48400 +L57280 48370 +L57190 48370 +L57140 48400 +L57110 48420 +L57090 48470 +L57090 48590 +L57110 48630 +L57140 48660 +L57190 48680 +L57280 48680 +L57330 48660 +L57350 48630 +L57380 48590 +" /> +<path d="M44500 47000 +L43500 47000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44700" y="47250" +textLength="1460" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">PF0</text> +<path d="M44840 47220 +L44840 46720 +L45030 46720 +L45080 46750 +L45110 46770 +L45130 46820 +L45130 46890 +L45110 46940 +L45080 46960 +L45030 46980 +L44840 46980 +" /> +<path d="M45510 46960 +L45340 46960 +" /> +<path d="M45340 47220 +L45340 46720 +L45580 46720 +" /> +<path d="M45870 46720 +L45920 46720 +L45960 46750 +L45990 46770 +L46010 46820 +L46030 46910 +L46030 47030 +L46010 47130 +L45990 47170 +L45960 47200 +L45920 47220 +L45870 47220 +L45820 47200 +L45800 47170 +L45770 47130 +L45750 47030 +L45750 46910 +L45770 46820 +L45800 46770 +L45820 46750 +L45870 46720 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44000" y="46900" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">5</text> +<path d="M44110 46370 +L43880 46370 +L43850 46610 +L43880 46590 +L43920 46560 +L44040 46560 +L44090 46590 +L44110 46610 +L44140 46660 +L44140 46780 +L44110 46820 +L44090 46850 +L44040 46870 +L43920 46870 +L43880 46850 +L43850 46820 +" /> +<path d="M56500 50000 +L57500 50000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="50250" +textLength="1940" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PA15</text> +<path d="M54500 50220 +L54500 49720 +L54690 49720 +L54740 49750 +L54770 49770 +L54790 49820 +L54790 49890 +L54770 49940 +L54740 49960 +L54690 49980 +L54500 49980 +" /> +<path d="M54980 50080 +L55220 50080 +" /> +<path d="M54930 50220 +L55100 49720 +L55270 50220 +" /> +<path d="M55690 50220 +L55410 50220 +" /> +<path d="M55550 50220 +L55550 49720 +L55500 49790 +L55460 49840 +L55410 49860 +" /> +<path d="M56150 49720 +L55910 49720 +L55880 49960 +L55910 49940 +L55960 49910 +L56070 49910 +L56120 49940 +L56150 49960 +L56170 50010 +L56170 50130 +L56150 50170 +L56120 50200 +L56070 50220 +L55960 50220 +L55910 50200 +L55880 50170 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="49900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">50</text> +<path d="M56880 49370 +L56640 49370 +L56610 49610 +L56640 49590 +L56690 49560 +L56800 49560 +L56850 49590 +L56880 49610 +L56900 49660 +L56900 49780 +L56880 49820 +L56850 49850 +L56800 49870 +L56690 49870 +L56640 49850 +L56610 49820 +" /> +<path d="M57210 49370 +L57260 49370 +L57300 49400 +L57330 49420 +L57350 49470 +L57380 49560 +L57380 49680 +L57350 49780 +L57330 49820 +L57300 49850 +L57260 49870 +L57210 49870 +L57160 49850 +L57140 49820 +L57110 49780 +L57090 49680 +L57090 49560 +L57110 49470 +L57140 49420 +L57160 49400 +L57210 49370 +" /> +<path d="M44500 62000 +L43500 62000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44700" y="62250" +textLength="2010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">PC10</text> +<path d="M44840 62220 +L44840 61720 +L45030 61720 +L45080 61750 +L45110 61770 +L45130 61820 +L45130 61890 +L45110 61940 +L45080 61960 +L45030 61980 +L44840 61980 +" /> +<path d="M45630 62170 +L45610 62200 +L45530 62220 +L45490 62220 +L45420 62200 +L45370 62150 +L45340 62100 +L45320 62010 +L45320 61940 +L45340 61840 +L45370 61790 +L45420 61750 +L45490 61720 +L45530 61720 +L45610 61750 +L45630 61770 +" /> +<path d="M46110 62220 +L45820 62220 +" /> +<path d="M45960 62220 +L45960 61720 +L45920 61790 +L45870 61840 +L45820 61860 +" /> +<path d="M46420 61720 +L46460 61720 +L46510 61750 +L46530 61770 +L46560 61820 +L46580 61910 +L46580 62030 +L46560 62130 +L46530 62170 +L46510 62200 +L46460 62220 +L46420 62220 +L46370 62200 +L46340 62170 +L46320 62130 +L46300 62030 +L46300 61910 +L46320 61820 +L46340 61770 +L46370 61750 +L46420 61720 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44000" y="61900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">51</text> +<path d="M43880 61370 +L43640 61370 +L43610 61610 +L43640 61590 +L43690 61560 +L43800 61560 +L43850 61590 +L43880 61610 +L43900 61660 +L43900 61780 +L43880 61820 +L43850 61850 +L43800 61870 +L43690 61870 +L43640 61850 +L43610 61820 +" /> +<path d="M44380 61870 +L44090 61870 +" /> +<path d="M44230 61870 +L44230 61370 +L44190 61440 +L44140 61490 +L44090 61510 +" /> +<path d="M44500 63000 +L43500 63000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44700" y="63250" +textLength="2010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">PC11</text> +<path d="M44840 63220 +L44840 62720 +L45030 62720 +L45080 62750 +L45110 62770 +L45130 62820 +L45130 62890 +L45110 62940 +L45080 62960 +L45030 62980 +L44840 62980 +" /> +<path d="M45630 63170 +L45610 63200 +L45530 63220 +L45490 63220 +L45420 63200 +L45370 63150 +L45340 63100 +L45320 63010 +L45320 62940 +L45340 62840 +L45370 62790 +L45420 62750 +L45490 62720 +L45530 62720 +L45610 62750 +L45630 62770 +" /> +<path d="M46110 63220 +L45820 63220 +" /> +<path d="M45960 63220 +L45960 62720 +L45920 62790 +L45870 62840 +L45820 62860 +" /> +<path d="M46580 63220 +L46300 63220 +" /> +<path d="M46440 63220 +L46440 62720 +L46390 62790 +L46340 62840 +L46300 62860 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44000" y="62900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">52</text> +<path d="M43880 62370 +L43640 62370 +L43610 62610 +L43640 62590 +L43690 62560 +L43800 62560 +L43850 62590 +L43880 62610 +L43900 62660 +L43900 62780 +L43880 62820 +L43850 62850 +L43800 62870 +L43690 62870 +L43640 62850 +L43610 62820 +" /> +<path d="M44090 62420 +L44110 62400 +L44160 62370 +L44280 62370 +L44330 62400 +L44350 62420 +L44380 62470 +L44380 62510 +L44350 62590 +L44070 62870 +L44380 62870 +" /> +<path d="M44500 64000 +L43500 64000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44700" y="64250" +textLength="2010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">PC12</text> +<path d="M44840 64220 +L44840 63720 +L45030 63720 +L45080 63750 +L45110 63770 +L45130 63820 +L45130 63890 +L45110 63940 +L45080 63960 +L45030 63980 +L44840 63980 +" /> +<path d="M45630 64170 +L45610 64200 +L45530 64220 +L45490 64220 +L45420 64200 +L45370 64150 +L45340 64100 +L45320 64010 +L45320 63940 +L45340 63840 +L45370 63790 +L45420 63750 +L45490 63720 +L45530 63720 +L45610 63750 +L45630 63770 +" /> +<path d="M46110 64220 +L45820 64220 +" /> +<path d="M45960 64220 +L45960 63720 +L45920 63790 +L45870 63840 +L45820 63860 +" /> +<path d="M46300 63770 +L46320 63750 +L46370 63720 +L46490 63720 +L46530 63750 +L46560 63770 +L46580 63820 +L46580 63860 +L46560 63940 +L46270 64220 +L46580 64220 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44000" y="63900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">53</text> +<path d="M43880 63370 +L43640 63370 +L43610 63610 +L43640 63590 +L43690 63560 +L43800 63560 +L43850 63590 +L43880 63610 +L43900 63660 +L43900 63780 +L43880 63820 +L43850 63850 +L43800 63870 +L43690 63870 +L43640 63850 +L43610 63820 +" /> +<path d="M44070 63370 +L44380 63370 +L44210 63560 +L44280 63560 +L44330 63590 +L44350 63610 +L44380 63660 +L44380 63780 +L44350 63820 +L44330 63850 +L44280 63870 +L44140 63870 +L44090 63850 +L44070 63820 +" /> +<path d="M44500 50000 +L43500 50000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44700" y="50250" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">PD2</text> +<path d="M44840 50220 +L44840 49720 +L45030 49720 +L45080 49750 +L45110 49770 +L45130 49820 +L45130 49890 +L45110 49940 +L45080 49960 +L45030 49980 +L44840 49980 +" /> +<path d="M45340 50220 +L45340 49720 +L45460 49720 +L45530 49750 +L45580 49790 +L45610 49840 +L45630 49940 +L45630 50010 +L45610 50100 +L45580 50150 +L45530 50200 +L45460 50220 +L45340 50220 +" /> +<path d="M45820 49770 +L45840 49750 +L45890 49720 +L46010 49720 +L46060 49750 +L46080 49770 +L46110 49820 +L46110 49860 +L46080 49940 +L45800 50220 +L46110 50220 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44000" y="49900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">54</text> +<path d="M43880 49370 +L43640 49370 +L43610 49610 +L43640 49590 +L43690 49560 +L43800 49560 +L43850 49590 +L43880 49610 +L43900 49660 +L43900 49780 +L43880 49820 +L43850 49850 +L43800 49870 +L43690 49870 +L43640 49850 +L43610 49820 +" /> +<path d="M44330 49540 +L44330 49870 +" /> +<path d="M44210 49350 +L44090 49700 +L44400 49700 +" /> +<path d="M56500 55000 +L57500 55000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="55250" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PB3</text> +<path d="M54910 55220 +L54910 54720 +L55100 54720 +L55150 54750 +L55170 54770 +L55190 54820 +L55190 54890 +L55170 54940 +L55150 54960 +L55100 54980 +L54910 54980 +" /> +<path d="M55570 54960 +L55650 54980 +L55670 55010 +L55690 55050 +L55690 55130 +L55670 55170 +L55650 55200 +L55600 55220 +L55410 55220 +L55410 54720 +L55570 54720 +L55620 54750 +L55650 54770 +L55670 54820 +L55670 54860 +L55650 54910 +L55620 54940 +L55570 54960 +L55410 54960 +" /> +<path d="M55860 54720 +L56170 54720 +L56000 54910 +L56070 54910 +L56120 54940 +L56150 54960 +L56170 55010 +L56170 55130 +L56150 55170 +L56120 55200 +L56070 55220 +L55930 55220 +L55880 55200 +L55860 55170 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="54900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">55</text> +<path d="M56880 54370 +L56640 54370 +L56610 54610 +L56640 54590 +L56690 54560 +L56800 54560 +L56850 54590 +L56880 54610 +L56900 54660 +L56900 54780 +L56880 54820 +L56850 54850 +L56800 54870 +L56690 54870 +L56640 54850 +L56610 54820 +" /> +<path d="M57350 54370 +L57110 54370 +L57090 54610 +L57110 54590 +L57160 54560 +L57280 54560 +L57330 54590 +L57350 54610 +L57380 54660 +L57380 54780 +L57350 54820 +L57330 54850 +L57280 54870 +L57160 54870 +L57110 54850 +L57090 54820 +" /> +<path d="M56500 56000 +L57500 56000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="56250" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PB4</text> +<path d="M54910 56220 +L54910 55720 +L55100 55720 +L55150 55750 +L55170 55770 +L55190 55820 +L55190 55890 +L55170 55940 +L55150 55960 +L55100 55980 +L54910 55980 +" /> +<path d="M55570 55960 +L55650 55980 +L55670 56010 +L55690 56050 +L55690 56130 +L55670 56170 +L55650 56200 +L55600 56220 +L55410 56220 +L55410 55720 +L55570 55720 +L55620 55750 +L55650 55770 +L55670 55820 +L55670 55860 +L55650 55910 +L55620 55940 +L55570 55960 +L55410 55960 +" /> +<path d="M56120 55890 +L56120 56220 +" /> +<path d="M56000 55700 +L55880 56050 +L56190 56050 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="55900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">56</text> +<path d="M56880 55370 +L56640 55370 +L56610 55610 +L56640 55590 +L56690 55560 +L56800 55560 +L56850 55590 +L56880 55610 +L56900 55660 +L56900 55780 +L56880 55820 +L56850 55850 +L56800 55870 +L56690 55870 +L56640 55850 +L56610 55820 +" /> +<path d="M57330 55370 +L57230 55370 +L57190 55400 +L57160 55420 +L57110 55490 +L57090 55590 +L57090 55780 +L57110 55820 +L57140 55850 +L57190 55870 +L57280 55870 +L57330 55850 +L57350 55820 +L57380 55780 +L57380 55660 +L57350 55610 +L57330 55590 +L57280 55560 +L57190 55560 +L57140 55590 +L57110 55610 +L57090 55660 +" /> +<path d="M56500 57000 +L57500 57000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="57250" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PB5</text> +<path d="M54910 57220 +L54910 56720 +L55100 56720 +L55150 56750 +L55170 56770 +L55190 56820 +L55190 56890 +L55170 56940 +L55150 56960 +L55100 56980 +L54910 56980 +" /> +<path d="M55570 56960 +L55650 56980 +L55670 57010 +L55690 57050 +L55690 57130 +L55670 57170 +L55650 57200 +L55600 57220 +L55410 57220 +L55410 56720 +L55570 56720 +L55620 56750 +L55650 56770 +L55670 56820 +L55670 56860 +L55650 56910 +L55620 56940 +L55570 56960 +L55410 56960 +" /> +<path d="M56150 56720 +L55910 56720 +L55880 56960 +L55910 56940 +L55960 56910 +L56070 56910 +L56120 56940 +L56150 56960 +L56170 57010 +L56170 57130 +L56150 57170 +L56120 57200 +L56070 57220 +L55960 57220 +L55910 57200 +L55880 57170 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="56900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">57</text> +<path d="M56880 56370 +L56640 56370 +L56610 56610 +L56640 56590 +L56690 56560 +L56800 56560 +L56850 56590 +L56880 56610 +L56900 56660 +L56900 56780 +L56880 56820 +L56850 56850 +L56800 56870 +L56690 56870 +L56640 56850 +L56610 56820 +" /> +<path d="M57070 56370 +L57400 56370 +L57190 56870 +" /> +<path d="M56500 58000 +L57500 58000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="58250" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PB6</text> +<path d="M54910 58220 +L54910 57720 +L55100 57720 +L55150 57750 +L55170 57770 +L55190 57820 +L55190 57890 +L55170 57940 +L55150 57960 +L55100 57980 +L54910 57980 +" /> +<path d="M55570 57960 +L55650 57980 +L55670 58010 +L55690 58050 +L55690 58130 +L55670 58170 +L55650 58200 +L55600 58220 +L55410 58220 +L55410 57720 +L55570 57720 +L55620 57750 +L55650 57770 +L55670 57820 +L55670 57860 +L55650 57910 +L55620 57940 +L55570 57960 +L55410 57960 +" /> +<path d="M56120 57720 +L56030 57720 +L55980 57750 +L55960 57770 +L55910 57840 +L55880 57940 +L55880 58130 +L55910 58170 +L55930 58200 +L55980 58220 +L56070 58220 +L56120 58200 +L56150 58170 +L56170 58130 +L56170 58010 +L56150 57960 +L56120 57940 +L56070 57910 +L55980 57910 +L55930 57940 +L55910 57960 +L55880 58010 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="57900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">58</text> +<path d="M56880 57370 +L56640 57370 +L56610 57610 +L56640 57590 +L56690 57560 +L56800 57560 +L56850 57590 +L56880 57610 +L56900 57660 +L56900 57780 +L56880 57820 +L56850 57850 +L56800 57870 +L56690 57870 +L56640 57850 +L56610 57820 +" /> +<path d="M57190 57590 +L57140 57560 +L57110 57540 +L57090 57490 +L57090 57470 +L57110 57420 +L57140 57400 +L57190 57370 +L57280 57370 +L57330 57400 +L57350 57420 +L57380 57470 +L57380 57490 +L57350 57540 +L57330 57560 +L57280 57590 +L57190 57590 +L57140 57610 +L57110 57630 +L57090 57680 +L57090 57780 +L57110 57820 +L57140 57850 +L57190 57870 +L57280 57870 +L57330 57850 +L57350 57820 +L57380 57780 +L57380 57680 +L57350 57630 +L57330 57610 +L57280 57590 +" /> +<path d="M56500 59000 +L57500 59000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="59250" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PB7</text> +<path d="M54910 59220 +L54910 58720 +L55100 58720 +L55150 58750 +L55170 58770 +L55190 58820 +L55190 58890 +L55170 58940 +L55150 58960 +L55100 58980 +L54910 58980 +" /> +<path d="M55570 58960 +L55650 58980 +L55670 59010 +L55690 59050 +L55690 59130 +L55670 59170 +L55650 59200 +L55600 59220 +L55410 59220 +L55410 58720 +L55570 58720 +L55620 58750 +L55650 58770 +L55670 58820 +L55670 58860 +L55650 58910 +L55620 58940 +L55570 58960 +L55410 58960 +" /> +<path d="M55860 58720 +L56190 58720 +L55980 59220 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="58900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">59</text> +<path d="M56880 58370 +L56640 58370 +L56610 58610 +L56640 58590 +L56690 58560 +L56800 58560 +L56850 58590 +L56880 58610 +L56900 58660 +L56900 58780 +L56880 58820 +L56850 58850 +L56800 58870 +L56690 58870 +L56640 58850 +L56610 58820 +" /> +<path d="M57140 58870 +L57230 58870 +L57280 58850 +L57300 58820 +L57350 58750 +L57380 58660 +L57380 58470 +L57350 58420 +L57330 58400 +L57280 58370 +L57190 58370 +L57140 58400 +L57110 58420 +L57090 58470 +L57090 58590 +L57110 58630 +L57140 58660 +L57190 58680 +L57280 58680 +L57330 58660 +L57350 58630 +L57380 58590 +" /> +<path d="M44500 48000 +L43500 48000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44700" y="48250" +textLength="1460" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">PF1</text> +<path d="M44840 48220 +L44840 47720 +L45030 47720 +L45080 47750 +L45110 47770 +L45130 47820 +L45130 47890 +L45110 47940 +L45080 47960 +L45030 47980 +L44840 47980 +" /> +<path d="M45510 47960 +L45340 47960 +" /> +<path d="M45340 48220 +L45340 47720 +L45580 47720 +" /> +<path d="M46030 48220 +L45750 48220 +" /> +<path d="M45890 48220 +L45890 47720 +L45840 47790 +L45800 47840 +L45750 47860 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44000" y="47900" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">6</text> +<path d="M44090 47370 +L44000 47370 +L43950 47400 +L43920 47420 +L43880 47490 +L43850 47590 +L43850 47780 +L43880 47820 +L43900 47850 +L43950 47870 +L44040 47870 +L44090 47850 +L44110 47820 +L44140 47780 +L44140 47660 +L44110 47610 +L44090 47590 +L44040 47560 +L43950 47560 +L43900 47590 +L43880 47610 +L43850 47660 +" /> +<path d="M44500 37000 +L43500 37000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44700" y="37250" +textLength="2460" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">BOOT0</text> +<path d="M45010 36960 +L45080 36980 +L45110 37010 +L45130 37050 +L45130 37130 +L45110 37170 +L45080 37200 +L45030 37220 +L44840 37220 +L44840 36720 +L45010 36720 +L45060 36750 +L45080 36770 +L45110 36820 +L45110 36860 +L45080 36910 +L45060 36940 +L45010 36960 +L44840 36960 +" /> +<path d="M45440 36720 +L45530 36720 +L45580 36750 +L45630 36790 +L45650 36890 +L45650 37050 +L45630 37150 +L45580 37200 +L45530 37220 +L45440 37220 +L45390 37200 +L45340 37150 +L45320 37050 +L45320 36890 +L45340 36790 +L45390 36750 +L45440 36720 +" /> +<path d="M45960 36720 +L46060 36720 +L46110 36750 +L46150 36790 +L46180 36890 +L46180 37050 +L46150 37150 +L46110 37200 +L46060 37220 +L45960 37220 +L45920 37200 +L45870 37150 +L45840 37050 +L45840 36890 +L45870 36790 +L45920 36750 +L45960 36720 +" /> +<path d="M46320 36720 +L46610 36720 +" /> +<path d="M46460 37220 +L46460 36720 +" /> +<path d="M46870 36720 +L46920 36720 +L46960 36750 +L46990 36770 +L47010 36820 +L47030 36910 +L47030 37030 +L47010 37130 +L46990 37170 +L46960 37200 +L46920 37220 +L46870 37220 +L46820 37200 +L46800 37170 +L46770 37130 +L46750 37030 +L46750 36910 +L46770 36820 +L46800 36770 +L46820 36750 +L46870 36720 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44000" y="36900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">60</text> +<path d="M43850 36370 +L43760 36370 +L43710 36400 +L43690 36420 +L43640 36490 +L43610 36590 +L43610 36780 +L43640 36820 +L43660 36850 +L43710 36870 +L43800 36870 +L43850 36850 +L43880 36820 +L43900 36780 +L43900 36660 +L43880 36610 +L43850 36590 +L43800 36560 +L43710 36560 +L43660 36590 +L43640 36610 +L43610 36660 +" /> +<path d="M44210 36370 +L44260 36370 +L44300 36400 +L44330 36420 +L44350 36470 +L44380 36560 +L44380 36680 +L44350 36780 +L44330 36820 +L44300 36850 +L44260 36870 +L44210 36870 +L44160 36850 +L44140 36820 +L44110 36780 +L44090 36680 +L44090 36560 +L44110 36470 +L44140 36420 +L44160 36400 +L44210 36370 +" /> +<path d="M56500 60000 +L57500 60000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="60250" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PB8</text> +<path d="M54910 60220 +L54910 59720 +L55100 59720 +L55150 59750 +L55170 59770 +L55190 59820 +L55190 59890 +L55170 59940 +L55150 59960 +L55100 59980 +L54910 59980 +" /> +<path d="M55570 59960 +L55650 59980 +L55670 60010 +L55690 60050 +L55690 60130 +L55670 60170 +L55650 60200 +L55600 60220 +L55410 60220 +L55410 59720 +L55570 59720 +L55620 59750 +L55650 59770 +L55670 59820 +L55670 59860 +L55650 59910 +L55620 59940 +L55570 59960 +L55410 59960 +" /> +<path d="M55980 59940 +L55930 59910 +L55910 59890 +L55880 59840 +L55880 59820 +L55910 59770 +L55930 59750 +L55980 59720 +L56070 59720 +L56120 59750 +L56150 59770 +L56170 59820 +L56170 59840 +L56150 59890 +L56120 59910 +L56070 59940 +L55980 59940 +L55930 59960 +L55910 59980 +L55880 60030 +L55880 60130 +L55910 60170 +L55930 60200 +L55980 60220 +L56070 60220 +L56120 60200 +L56150 60170 +L56170 60130 +L56170 60030 +L56150 59980 +L56120 59960 +L56070 59940 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="59900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">61</text> +<path d="M56850 59370 +L56760 59370 +L56710 59400 +L56690 59420 +L56640 59490 +L56610 59590 +L56610 59780 +L56640 59820 +L56660 59850 +L56710 59870 +L56800 59870 +L56850 59850 +L56880 59820 +L56900 59780 +L56900 59660 +L56880 59610 +L56850 59590 +L56800 59560 +L56710 59560 +L56660 59590 +L56640 59610 +L56610 59660 +" /> +<path d="M57380 59870 +L57090 59870 +" /> +<path d="M57230 59870 +L57230 59370 +L57190 59440 +L57140 59490 +L57090 59510 +" /> +<path d="M56500 61000 +L57500 61000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="56300" y="61250" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">PB9</text> +<path d="M54910 61220 +L54910 60720 +L55100 60720 +L55150 60750 +L55170 60770 +L55190 60820 +L55190 60890 +L55170 60940 +L55150 60960 +L55100 60980 +L54910 60980 +" /> +<path d="M55570 60960 +L55650 60980 +L55670 61010 +L55690 61050 +L55690 61130 +L55670 61170 +L55650 61200 +L55600 61220 +L55410 61220 +L55410 60720 +L55570 60720 +L55620 60750 +L55650 60770 +L55670 60820 +L55670 60860 +L55650 60910 +L55620 60940 +L55570 60960 +L55410 60960 +" /> +<path d="M55930 61220 +L56030 61220 +L56070 61200 +L56100 61170 +L56150 61100 +L56170 61010 +L56170 60820 +L56150 60770 +L56120 60750 +L56070 60720 +L55980 60720 +L55930 60750 +L55910 60770 +L55880 60820 +L55880 60940 +L55910 60980 +L55930 61010 +L55980 61030 +L56070 61030 +L56120 61010 +L56150 60980 +L56170 60940 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="57000" y="60900" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">62</text> +<path d="M56850 60370 +L56760 60370 +L56710 60400 +L56690 60420 +L56640 60490 +L56610 60590 +L56610 60780 +L56640 60820 +L56660 60850 +L56710 60870 +L56800 60870 +L56850 60850 +L56880 60820 +L56900 60780 +L56900 60660 +L56880 60610 +L56850 60590 +L56800 60560 +L56710 60560 +L56660 60590 +L56640 60610 +L56610 60660 +" /> +<path d="M57090 60420 +L57110 60400 +L57160 60370 +L57280 60370 +L57330 60400 +L57350 60420 +L57380 60470 +L57380 60510 +L57350 60590 +L57070 60870 +L57380 60870 +" /> +<path d="M51500 68000 +L51500 69000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 51500 67800)"> +<text x="51500" y="68050" +textLength="1440" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">VSS</text> +</g> +<path d="M51220 67720 +L51720 67550 +L51220 67380 +" /> +<path d="M51700 67240 +L51720 67170 +L51720 67050 +L51700 67000 +L51670 66980 +L51630 66960 +L51580 66960 +L51530 66980 +L51510 67000 +L51480 67050 +L51460 67150 +L51440 67190 +L51410 67220 +L51360 67240 +L51320 67240 +L51270 67220 +L51250 67190 +L51220 67150 +L51220 67030 +L51250 66960 +" /> +<path d="M51700 66770 +L51720 66690 +L51720 66570 +L51700 66530 +L51670 66500 +L51630 66480 +L51580 66480 +L51530 66500 +L51510 66530 +L51480 66570 +L51460 66670 +L51440 66720 +L51410 66740 +L51360 66770 +L51320 66770 +L51270 66740 +L51250 66720 +L51220 66670 +L51220 66550 +L51250 66480 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 51400 68500)"> +<text x="51400" y="68500" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">63</text> +</g> +<path d="M50870 68640 +L50870 68730 +L50900 68780 +L50920 68800 +L50990 68850 +L51090 68880 +L51280 68880 +L51320 68850 +L51350 68830 +L51370 68780 +L51370 68690 +L51350 68640 +L51320 68610 +L51280 68590 +L51160 68590 +L51110 68610 +L51090 68640 +L51060 68690 +L51060 68780 +L51090 68830 +L51110 68850 +L51160 68880 +" /> +<path d="M50870 68420 +L50870 68110 +L51060 68280 +L51060 68210 +L51090 68160 +L51110 68140 +L51160 68110 +L51280 68110 +L51320 68140 +L51350 68160 +L51370 68210 +L51370 68350 +L51350 68400 +L51320 68420 +" /> +<path d="M52500 34000 +L52500 33000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 52500 34200)"> +<text x="52500" y="34450" +textLength="1490" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">VDD</text> +</g> +<path d="M52220 35610 +L52720 35440 +L52220 35270 +" /> +<path d="M52720 35110 +L52220 35110 +L52220 34990 +L52250 34920 +L52290 34870 +L52340 34840 +L52440 34820 +L52510 34820 +L52600 34840 +L52650 34870 +L52700 34920 +L52720 34990 +L52720 35110 +" /> +<path d="M52720 34610 +L52220 34610 +L52220 34490 +L52250 34420 +L52290 34370 +L52340 34340 +L52440 34320 +L52510 34320 +L52600 34340 +L52650 34370 +L52700 34420 +L52720 34490 +L52720 34610 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 52400 33500)"> +<text x="52400" y="33500" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">64</text> +</g> +<path d="M51870 33640 +L51870 33730 +L51900 33780 +L51920 33800 +L51990 33850 +L52090 33880 +L52280 33880 +L52320 33850 +L52350 33830 +L52370 33780 +L52370 33690 +L52350 33640 +L52320 33610 +L52280 33590 +L52160 33590 +L52110 33610 +L52090 33640 +L52060 33690 +L52060 33780 +L52090 33830 +L52110 33850 +L52160 33880 +" /> +<path d="M52040 33160 +L52370 33160 +" /> +<path d="M51850 33280 +L52200 33400 +L52200 33090 +" /> +<path d="M44500 35000 +L43500 35000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44700" y="35250" +textLength="1940" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">NRST</text> +<path d="M44840 35220 +L44840 34720 +L45130 35220 +L45130 34720 +" /> +<path d="M45650 35220 +L45490 34980 +" /> +<path d="M45370 35220 +L45370 34720 +L45560 34720 +L45610 34750 +L45630 34770 +L45650 34820 +L45650 34890 +L45630 34940 +L45610 34960 +L45560 34980 +L45370 34980 +" /> +<path d="M45840 35200 +L45920 35220 +L46030 35220 +L46080 35200 +L46110 35170 +L46130 35130 +L46130 35080 +L46110 35030 +L46080 35010 +L46030 34980 +L45940 34960 +L45890 34940 +L45870 34910 +L45840 34860 +L45840 34820 +L45870 34770 +L45890 34750 +L45940 34720 +L46060 34720 +L46130 34750 +" /> +<path d="M46270 34720 +L46560 34720 +" /> +<path d="M46420 35220 +L46420 34720 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44000" y="34900" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">7</text> +<path d="M43830 34370 +L44160 34370 +L43950 34870 +" /> +<path d="M44500 52000 +L43500 52000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44700" y="52250" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">PC0</text> +<path d="M44840 52220 +L44840 51720 +L45030 51720 +L45080 51750 +L45110 51770 +L45130 51820 +L45130 51890 +L45110 51940 +L45080 51960 +L45030 51980 +L44840 51980 +" /> +<path d="M45630 52170 +L45610 52200 +L45530 52220 +L45490 52220 +L45420 52200 +L45370 52150 +L45340 52100 +L45320 52010 +L45320 51940 +L45340 51840 +L45370 51790 +L45420 51750 +L45490 51720 +L45530 51720 +L45610 51750 +L45630 51770 +" /> +<path d="M45940 51720 +L45990 51720 +L46030 51750 +L46060 51770 +L46080 51820 +L46110 51910 +L46110 52030 +L46080 52130 +L46060 52170 +L46030 52200 +L45990 52220 +L45940 52220 +L45890 52200 +L45870 52170 +L45840 52130 +L45820 52030 +L45820 51910 +L45840 51820 +L45870 51770 +L45890 51750 +L45940 51720 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44000" y="51900" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">8</text> +<path d="M43950 51590 +L43900 51560 +L43880 51540 +L43850 51490 +L43850 51470 +L43880 51420 +L43900 51400 +L43950 51370 +L44040 51370 +L44090 51400 +L44110 51420 +L44140 51470 +L44140 51490 +L44110 51540 +L44090 51560 +L44040 51590 +L43950 51590 +L43900 51610 +L43880 51630 +L43850 51680 +L43850 51780 +L43880 51820 +L43900 51850 +L43950 51870 +L44040 51870 +L44090 51850 +L44110 51820 +L44140 51780 +L44140 51680 +L44110 51630 +L44090 51610 +L44040 51590 +" /> +<path d="M44500 53000 +L43500 53000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44700" y="53250" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">PC1</text> +<path d="M44840 53220 +L44840 52720 +L45030 52720 +L45080 52750 +L45110 52770 +L45130 52820 +L45130 52890 +L45110 52940 +L45080 52960 +L45030 52980 +L44840 52980 +" /> +<path d="M45630 53170 +L45610 53200 +L45530 53220 +L45490 53220 +L45420 53200 +L45370 53150 +L45340 53100 +L45320 53010 +L45320 52940 +L45340 52840 +L45370 52790 +L45420 52750 +L45490 52720 +L45530 52720 +L45610 52750 +L45630 52770 +" /> +<path d="M46110 53220 +L45820 53220 +" /> +<path d="M45960 53220 +L45960 52720 +L45920 52790 +L45870 52840 +L45820 52860 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="44000" y="52900" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">9</text> +<path d="M43900 52870 +L44000 52870 +L44040 52850 +L44070 52820 +L44110 52750 +L44140 52660 +L44140 52470 +L44110 52420 +L44090 52400 +L44040 52370 +L43950 52370 +L43900 52400 +L43880 52420 +L43850 52470 +L43850 52590 +L43880 52630 +L43900 52660 +L43950 52680 +L44040 52680 +L44090 52660 +L44110 52630 +L44140 52590 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="50750" y="63020" +textLength="1060" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">U2</text> +<path d="M50360 62490 +L50360 62900 +L50390 62940 +L50410 62970 +L50460 62990 +L50550 62990 +L50600 62970 +L50630 62940 +L50650 62900 +L50650 62490 +" /> +<path d="M50860 62540 +L50890 62520 +L50940 62490 +L51050 62490 +L51100 62520 +L51130 62540 +L51150 62590 +L51150 62630 +L51130 62710 +L50840 62990 +L51150 62990 +" /> +<text x="50500" y="42020" +textLength="6080" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">STM32F303RDTx</text> +<path d="M47580 41970 +L47650 41990 +L47770 41990 +L47820 41970 +L47840 41940 +L47860 41900 +L47860 41850 +L47840 41800 +L47820 41780 +L47770 41750 +L47670 41730 +L47630 41710 +L47600 41680 +L47580 41630 +L47580 41590 +L47600 41540 +L47630 41520 +L47670 41490 +L47790 41490 +L47860 41520 +" /> +<path d="M48010 41490 +L48290 41490 +" /> +<path d="M48150 41990 +L48150 41490 +" /> +<path d="M48460 41990 +L48460 41490 +L48630 41850 +L48790 41490 +L48790 41990 +" /> +<path d="M48980 41490 +L49290 41490 +L49130 41680 +L49200 41680 +L49250 41710 +L49270 41730 +L49290 41780 +L49290 41900 +L49270 41940 +L49250 41970 +L49200 41990 +L49050 41990 +L49010 41970 +L48980 41940 +" /> +<path d="M49480 41540 +L49510 41520 +L49550 41490 +L49670 41490 +L49720 41520 +L49750 41540 +L49770 41590 +L49770 41630 +L49750 41710 +L49460 41990 +L49770 41990 +" /> +<path d="M50150 41730 +L49980 41730 +" /> +<path d="M49980 41990 +L49980 41490 +L50220 41490 +" /> +<path d="M50360 41490 +L50670 41490 +L50510 41680 +L50580 41680 +L50630 41710 +L50650 41730 +L50670 41780 +L50670 41900 +L50650 41940 +L50630 41970 +L50580 41990 +L50440 41990 +L50390 41970 +L50360 41940 +" /> +<path d="M50980 41490 +L51030 41490 +L51080 41520 +L51100 41540 +L51130 41590 +L51150 41680 +L51150 41800 +L51130 41900 +L51100 41940 +L51080 41970 +L51030 41990 +L50980 41990 +L50940 41970 +L50910 41940 +L50890 41900 +L50860 41800 +L50860 41680 +L50890 41590 +L50910 41540 +L50940 41520 +L50980 41490 +" /> +<path d="M51320 41490 +L51630 41490 +L51460 41680 +L51530 41680 +L51580 41710 +L51600 41730 +L51630 41780 +L51630 41900 +L51600 41940 +L51580 41970 +L51530 41990 +L51390 41990 +L51340 41970 +L51320 41940 +" /> +<path d="M52130 41990 +L51960 41750 +" /> +<path d="M51840 41990 +L51840 41490 +L52030 41490 +L52080 41520 +L52100 41540 +L52130 41590 +L52130 41660 +L52100 41710 +L52080 41730 +L52030 41750 +L51840 41750 +" /> +<path d="M52340 41990 +L52340 41490 +L52460 41490 +L52530 41520 +L52580 41560 +L52600 41610 +L52630 41710 +L52630 41780 +L52600 41870 +L52580 41920 +L52530 41970 +L52460 41990 +L52340 41990 +" /> +<path d="M52770 41490 +L53050 41490 +" /> +<path d="M52910 41990 +L52910 41490 +" /> +<path d="M53170 41990 +L53440 41660 +" /> +<path d="M53170 41660 +L53440 41990 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 104000,51500 +104000,52000 +104500,52000 +104000,52500 +103500,52000 +104000,52000 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="104050" y="53500" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">GND</text> +<path d="M103660 53000 +L103620 52970 +L103550 52970 +L103470 53000 +L103430 53040 +L103400 53090 +L103380 53190 +L103380 53260 +L103400 53350 +L103430 53400 +L103470 53450 +L103550 53470 +L103590 53470 +L103660 53450 +L103690 53420 +L103690 53260 +L103590 53260 +" /> +<path d="M103900 53470 +L103900 52970 +L104190 53470 +L104190 52970 +" /> +<path d="M104430 53470 +L104430 52970 +L104550 52970 +L104620 53000 +L104660 53040 +L104690 53090 +L104710 53190 +L104710 53260 +L104690 53350 +L104660 53400 +L104620 53450 +L104550 53470 +L104430 53470 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 99250,24250 +98750,24250 +98750,24750 +98250,24250 +98750,23750 +98750,24250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="97180" y="24570" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">GND</text> +<path d="M96790 24070 +L96750 24040 +L96680 24040 +L96600 24070 +L96560 24110 +L96530 24160 +L96510 24260 +L96510 24330 +L96530 24420 +L96560 24470 +L96600 24520 +L96680 24540 +L96720 24540 +L96790 24520 +L96820 24490 +L96820 24330 +L96720 24330 +" /> +<path d="M97030 24540 +L97030 24040 +L97320 24540 +L97320 24040 +" /> +<path d="M97560 24540 +L97560 24040 +L97680 24040 +L97750 24070 +L97790 24110 +L97820 24160 +L97840 24260 +L97840 24330 +L97820 24420 +L97790 24470 +L97750 24520 +L97680 24540 +L97560 24540 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 98250,28250 +97750,28250 +97750,28750 +97250,28250 +97750,27750 +97750,28250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="96180" y="28570" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">GND</text> +<path d="M95790 28070 +L95750 28040 +L95680 28040 +L95600 28070 +L95560 28110 +L95530 28160 +L95510 28260 +L95510 28330 +L95530 28420 +L95560 28470 +L95600 28520 +L95680 28540 +L95720 28540 +L95790 28520 +L95820 28490 +L95820 28330 +L95720 28330 +" /> +<path d="M96030 28540 +L96030 28040 +L96320 28540 +L96320 28040 +" /> +<path d="M96560 28540 +L96560 28040 +L96680 28040 +L96750 28070 +L96790 28110 +L96820 28160 +L96840 28260 +L96840 28330 +L96820 28420 +L96790 28470 +L96750 28520 +L96680 28540 +L96560 28540 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 105250,28250 +105750,28250 +105750,27750 +106250,28250 +105750,28750 +105750,28250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="107320" y="28420" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">GND</text> +<path d="M106930 27920 +L106890 27890 +L106820 27890 +L106740 27920 +L106700 27960 +L106670 28010 +L106650 28110 +L106650 28180 +L106670 28270 +L106700 28320 +L106740 28370 +L106820 28390 +L106860 28390 +L106930 28370 +L106960 28340 +L106960 28180 +L106860 28180 +" /> +<path d="M107170 28390 +L107170 27890 +L107460 28390 +L107460 27890 +" /> +<path d="M107700 28390 +L107700 27890 +L107820 27890 +L107890 27920 +L107930 27960 +L107960 28010 +L107980 28110 +L107980 28180 +L107960 28270 +L107930 28320 +L107890 28370 +L107820 28390 +L107700 28390 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 85500,30750 +86000,30750 +86000,30250 +86500,30750 +86000,31250 +86000,30750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="87570" y="30920" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">GND</text> +<path d="M87180 30420 +L87140 30390 +L87070 30390 +L86990 30420 +L86950 30460 +L86920 30510 +L86900 30610 +L86900 30680 +L86920 30770 +L86950 30820 +L86990 30870 +L87070 30890 +L87110 30890 +L87180 30870 +L87210 30840 +L87210 30680 +L87110 30680 +" /> +<path d="M87420 30890 +L87420 30390 +L87710 30890 +L87710 30390 +" /> +<path d="M87950 30890 +L87950 30390 +L88070 30390 +L88140 30420 +L88180 30460 +L88210 30510 +L88230 30610 +L88230 30680 +L88210 30770 +L88180 30820 +L88140 30870 +L88070 30890 +L87950 30890 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 36000,50000 +36000,50500 +36500,50500 +36000,51000 +35500,50500 +36000,50500 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="36050" y="52000" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">GND</text> +<path d="M35660 51500 +L35620 51470 +L35550 51470 +L35470 51500 +L35430 51540 +L35400 51590 +L35380 51690 +L35380 51760 +L35400 51850 +L35430 51900 +L35470 51950 +L35550 51970 +L35590 51970 +L35660 51950 +L35690 51920 +L35690 51760 +L35590 51760 +" /> +<path d="M35900 51970 +L35900 51470 +L36190 51970 +L36190 51470 +" /> +<path d="M36430 51970 +L36430 51470 +L36550 51470 +L36620 51500 +L36660 51540 +L36690 51590 +L36710 51690 +L36710 51760 +L36690 51850 +L36660 51900 +L36620 51950 +L36550 51970 +L36430 51970 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="79040" cy="55790" r="200" /> +<circle cx="79950" cy="56720" r="200" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 79300,55250 +80500,56450 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 79900,55850 +80300,55450 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 78500,55250 +78900,55650 +78900,55650 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 80100,56850 +80500,57250 +80500,57250 +80500,57250 +" /> +<path d="M78500 55250 +L78500 55250 +" /> +<path d="M80500 57250 +L80500 57250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="79500" y="54630" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW5</text> +<path d="M78830 54580 +L78900 54600 +L79020 54600 +L79070 54580 +L79090 54550 +L79110 54510 +L79110 54460 +L79090 54410 +L79070 54390 +L79020 54360 +L78920 54340 +L78880 54320 +L78850 54290 +L78830 54240 +L78830 54200 +L78850 54150 +L78880 54130 +L78920 54100 +L79040 54100 +L79110 54130 +" /> +<path d="M79280 54100 +L79400 54600 +L79500 54240 +L79590 54600 +L79710 54100 +" /> +<path d="M80140 54100 +L79900 54100 +L79880 54340 +L79900 54320 +L79950 54290 +L80070 54290 +L80110 54320 +L80140 54340 +L80160 54390 +L80160 54510 +L80140 54550 +L80110 54580 +L80070 54600 +L79950 54600 +L79900 54580 +L79880 54550 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="82790" cy="47290" r="200" /> +<circle cx="83700" cy="48220" r="200" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 83050,46750 +84250,47950 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 83650,47350 +84050,46950 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 82250,46750 +82650,47150 +82650,47150 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 83850,48350 +84250,48750 +84250,48750 +84250,48750 +" /> +<path d="M82250 46750 +L82250 46750 +" /> +<path d="M84250 48750 +L84250 48750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="83250" y="46130" +textLength="2060" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW11</text> +<path d="M82340 46080 +L82410 46100 +L82530 46100 +L82580 46080 +L82600 46050 +L82630 46010 +L82630 45960 +L82600 45910 +L82580 45890 +L82530 45860 +L82440 45840 +L82390 45820 +L82360 45790 +L82340 45740 +L82340 45700 +L82360 45650 +L82390 45630 +L82440 45600 +L82550 45600 +L82630 45630 +" /> +<path d="M82790 45600 +L82910 46100 +L83010 45740 +L83100 46100 +L83220 45600 +" /> +<path d="M83670 46100 +L83390 46100 +" /> +<path d="M83530 46100 +L83530 45600 +L83480 45670 +L83440 45720 +L83390 45740 +" /> +<path d="M84150 46100 +L83860 46100 +" /> +<path d="M84010 46100 +L84010 45600 +L83960 45670 +L83910 45720 +L83860 45740 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="75290" cy="51290" r="200" /> +<circle cx="76200" cy="52220" r="200" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 75550,50750 +76750,51950 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 76150,51350 +76550,50950 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 74750,50750 +75150,51150 +75150,51150 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 76350,52350 +76750,52750 +76750,52750 +76750,52750 +" /> +<path d="M74750 50750 +L74750 50750 +" /> +<path d="M76750 52750 +L76750 52750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="75750" y="50130" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW2</text> +<path d="M75080 50080 +L75150 50100 +L75270 50100 +L75320 50080 +L75340 50050 +L75360 50010 +L75360 49960 +L75340 49910 +L75320 49890 +L75270 49860 +L75170 49840 +L75130 49820 +L75100 49790 +L75080 49740 +L75080 49700 +L75100 49650 +L75130 49630 +L75170 49600 +L75290 49600 +L75360 49630 +" /> +<path d="M75530 49600 +L75650 50100 +L75750 49740 +L75840 50100 +L75960 49600 +" /> +<path d="M76130 49650 +L76150 49630 +L76200 49600 +L76320 49600 +L76360 49630 +L76390 49650 +L76410 49700 +L76410 49740 +L76390 49820 +L76100 50100 +L76410 50100 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="79040" cy="47290" r="200" /> +<circle cx="79950" cy="48220" r="200" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 79300,46750 +80500,47950 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 79900,47350 +80300,46950 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 78500,46750 +78900,47150 +78900,47150 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 80100,48350 +80500,48750 +80500,48750 +80500,48750 +" /> +<path d="M78500 46750 +L78500 46750 +" /> +<path d="M80500 48750 +L80500 48750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="79500" y="46130" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW7</text> +<path d="M78830 46080 +L78900 46100 +L79020 46100 +L79070 46080 +L79090 46050 +L79110 46010 +L79110 45960 +L79090 45910 +L79070 45890 +L79020 45860 +L78920 45840 +L78880 45820 +L78850 45790 +L78830 45740 +L78830 45700 +L78850 45650 +L78880 45630 +L78920 45600 +L79040 45600 +L79110 45630 +" /> +<path d="M79280 45600 +L79400 46100 +L79500 45740 +L79590 46100 +L79710 45600 +" /> +<path d="M79850 45600 +L80190 45600 +L79970 46100 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="80750" y="29350" width="2000" height="800" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M82750 29750 +L83250 29750 +" /> +<path d="M80750 29750 +L80250 29750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="83250" y="29520" +textLength="1510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">R19</text> +<path d="M82920 29490 +L82760 29250 +" /> +<path d="M82640 29490 +L82640 28990 +L82830 28990 +L82880 29020 +L82900 29040 +L82920 29090 +L82920 29160 +L82900 29210 +L82880 29230 +L82830 29250 +L82640 29250 +" /> +<path d="M83400 29490 +L83110 29490 +" /> +<path d="M83260 29490 +L83260 28990 +L83210 29060 +L83160 29110 +L83110 29130 +" /> +<path d="M83640 29490 +L83730 29490 +L83780 29470 +L83800 29440 +L83850 29370 +L83880 29280 +L83880 29090 +L83850 29040 +L83830 29020 +L83780 28990 +L83690 28990 +L83640 29020 +L83610 29040 +L83590 29090 +L83590 29210 +L83610 29250 +L83640 29280 +L83690 29300 +L83780 29300 +L83830 29280 +L83850 29250 +L83880 29210 +" /> +<text x="81750" y="30020" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">22</text> +<path d="M81360 29540 +L81390 29520 +L81440 29490 +L81550 29490 +L81600 29520 +L81630 29540 +L81650 29590 +L81650 29630 +L81630 29710 +L81340 29990 +L81650 29990 +" /> +<path d="M81840 29540 +L81860 29520 +L81910 29490 +L82030 29490 +L82080 29520 +L82100 29540 +L82130 29590 +L82130 29630 +L82100 29710 +L81820 29990 +L82130 29990 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="80750" y="31350" width="2000" height="800" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M82750 31750 +L83250 31750 +" /> +<path d="M80750 31750 +L80250 31750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="83250" y="31520" +textLength="1510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">R20</text> +<path d="M82920 31490 +L82760 31250 +" /> +<path d="M82640 31490 +L82640 30990 +L82830 30990 +L82880 31020 +L82900 31040 +L82920 31090 +L82920 31160 +L82900 31210 +L82880 31230 +L82830 31250 +L82640 31250 +" /> +<path d="M83110 31040 +L83140 31020 +L83190 30990 +L83300 30990 +L83350 31020 +L83380 31040 +L83400 31090 +L83400 31130 +L83380 31210 +L83090 31490 +L83400 31490 +" /> +<path d="M83710 30990 +L83760 30990 +L83800 31020 +L83830 31040 +L83850 31090 +L83880 31180 +L83880 31300 +L83850 31400 +L83830 31440 +L83800 31470 +L83760 31490 +L83710 31490 +L83660 31470 +L83640 31440 +L83610 31400 +L83590 31300 +L83590 31180 +L83610 31090 +L83640 31040 +L83660 31020 +L83710 30990 +" /> +<text x="81750" y="32020" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">22</text> +<path d="M81360 31540 +L81390 31520 +L81440 31490 +L81550 31490 +L81600 31520 +L81630 31540 +L81650 31590 +L81650 31630 +L81630 31710 +L81340 31990 +L81650 31990 +" /> +<path d="M81840 31540 +L81860 31520 +L81910 31490 +L82030 31490 +L82080 31520 +L82100 31540 +L82130 31590 +L82130 31630 +L82100 31710 +L81820 31990 +L82130 31990 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="82790" cy="51290" r="200" /> +<circle cx="83700" cy="52220" r="200" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 83050,50750 +84250,51950 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 83650,51350 +84050,50950 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 82250,50750 +82650,51150 +82650,51150 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 83850,52350 +84250,52750 +84250,52750 +84250,52750 +" /> +<path d="M82250 50750 +L82250 50750 +" /> +<path d="M84250 52750 +L84250 52750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="83250" y="50130" +textLength="2060" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW10</text> +<path d="M82340 50080 +L82410 50100 +L82530 50100 +L82580 50080 +L82600 50050 +L82630 50010 +L82630 49960 +L82600 49910 +L82580 49890 +L82530 49860 +L82440 49840 +L82390 49820 +L82360 49790 +L82340 49740 +L82340 49700 +L82360 49650 +L82390 49630 +L82440 49600 +L82550 49600 +L82630 49630 +" /> +<path d="M82790 49600 +L82910 50100 +L83010 49740 +L83100 50100 +L83220 49600 +" /> +<path d="M83670 50100 +L83390 50100 +" /> +<path d="M83530 50100 +L83530 49600 +L83480 49670 +L83440 49720 +L83390 49740 +" /> +<path d="M83980 49600 +L84030 49600 +L84080 49630 +L84100 49650 +L84130 49700 +L84150 49790 +L84150 49910 +L84130 50010 +L84100 50050 +L84080 50080 +L84030 50100 +L83980 50100 +L83940 50080 +L83910 50050 +L83890 50010 +L83860 49910 +L83860 49790 +L83890 49700 +L83910 49650 +L83940 49630 +L83980 49600 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="75290" cy="55790" r="200" /> +<circle cx="76200" cy="56720" r="200" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 75550,55250 +76750,56450 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 76150,55850 +76550,55450 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 74750,55250 +75150,55650 +75150,55650 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 76350,56850 +76750,57250 +76750,57250 +76750,57250 +" /> +<path d="M74750 55250 +L74750 55250 +" /> +<path d="M76750 57250 +L76750 57250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="75750" y="54630" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW1</text> +<path d="M75080 54580 +L75150 54600 +L75270 54600 +L75320 54580 +L75340 54550 +L75360 54510 +L75360 54460 +L75340 54410 +L75320 54390 +L75270 54360 +L75170 54340 +L75130 54320 +L75100 54290 +L75080 54240 +L75080 54200 +L75100 54150 +L75130 54130 +L75170 54100 +L75290 54100 +L75360 54130 +" /> +<path d="M75530 54100 +L75650 54600 +L75750 54240 +L75840 54600 +L75960 54100 +" /> +<path d="M76410 54600 +L76130 54600 +" /> +<path d="M76270 54600 +L76270 54100 +L76220 54170 +L76170 54220 +L76130 54240 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="80750" y="32350" width="2000" height="800" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M82750 32750 +L83250 32750 +" /> +<path d="M80750 32750 +L80250 32750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="83250" y="32520" +textLength="1510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">R21</text> +<path d="M82920 32490 +L82760 32250 +" /> +<path d="M82640 32490 +L82640 31990 +L82830 31990 +L82880 32020 +L82900 32040 +L82920 32090 +L82920 32160 +L82900 32210 +L82880 32230 +L82830 32250 +L82640 32250 +" /> +<path d="M83110 32040 +L83140 32020 +L83190 31990 +L83300 31990 +L83350 32020 +L83380 32040 +L83400 32090 +L83400 32130 +L83380 32210 +L83090 32490 +L83400 32490 +" /> +<path d="M83880 32490 +L83590 32490 +" /> +<path d="M83730 32490 +L83730 31990 +L83690 32060 +L83640 32110 +L83590 32130 +" /> +<text x="81750" y="33020" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">22</text> +<path d="M81360 32540 +L81390 32520 +L81440 32490 +L81550 32490 +L81600 32520 +L81630 32540 +L81650 32590 +L81650 32630 +L81630 32710 +L81340 32990 +L81650 32990 +" /> +<path d="M81840 32540 +L81860 32520 +L81910 32490 +L82030 32490 +L82080 32520 +L82100 32540 +L82130 32590 +L82130 32630 +L82100 32710 +L81820 32990 +L82130 32990 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="75290" cy="47290" r="200" /> +<circle cx="76200" cy="48220" r="200" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 75550,46750 +76750,47950 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 76150,47350 +76550,46950 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 74750,46750 +75150,47150 +75150,47150 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 76350,48350 +76750,48750 +76750,48750 +76750,48750 +" /> +<path d="M74750 46750 +L74750 46750 +" /> +<path d="M76750 48750 +L76750 48750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="75750" y="46130" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW3</text> +<path d="M75080 46080 +L75150 46100 +L75270 46100 +L75320 46080 +L75340 46050 +L75360 46010 +L75360 45960 +L75340 45910 +L75320 45890 +L75270 45860 +L75170 45840 +L75130 45820 +L75100 45790 +L75080 45740 +L75080 45700 +L75100 45650 +L75130 45630 +L75170 45600 +L75290 45600 +L75360 45630 +" /> +<path d="M75530 45600 +L75650 46100 +L75750 45740 +L75840 46100 +L75960 45600 +" /> +<path d="M76100 45600 +L76410 45600 +L76250 45790 +L76320 45790 +L76360 45820 +L76390 45840 +L76410 45890 +L76410 46010 +L76390 46050 +L76360 46080 +L76320 46100 +L76170 46100 +L76130 46080 +L76100 46050 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="80750" y="33350" width="2000" height="800" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M82750 33750 +L83250 33750 +" /> +<path d="M80750 33750 +L80250 33750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="83250" y="33520" +textLength="1510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">R22</text> +<path d="M82920 33490 +L82760 33250 +" /> +<path d="M82640 33490 +L82640 32990 +L82830 32990 +L82880 33020 +L82900 33040 +L82920 33090 +L82920 33160 +L82900 33210 +L82880 33230 +L82830 33250 +L82640 33250 +" /> +<path d="M83110 33040 +L83140 33020 +L83190 32990 +L83300 32990 +L83350 33020 +L83380 33040 +L83400 33090 +L83400 33130 +L83380 33210 +L83090 33490 +L83400 33490 +" /> +<path d="M83590 33040 +L83610 33020 +L83660 32990 +L83780 32990 +L83830 33020 +L83850 33040 +L83880 33090 +L83880 33130 +L83850 33210 +L83570 33490 +L83880 33490 +" /> +<text x="81500" y="34020" +textLength="1010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">22</text> +<path d="M81110 33540 +L81140 33520 +L81190 33490 +L81300 33490 +L81350 33520 +L81380 33540 +L81400 33590 +L81400 33630 +L81380 33710 +L81090 33990 +L81400 33990 +" /> +<path d="M81590 33540 +L81610 33520 +L81660 33490 +L81780 33490 +L81830 33520 +L81850 33540 +L81880 33590 +L81880 33630 +L81850 33710 +L81570 33990 +L81880 33990 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="82790" cy="42790" r="200" /> +<circle cx="83700" cy="43720" r="200" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 83050,42250 +84250,43450 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 83650,42850 +84050,42450 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 82250,42250 +82650,42650 +82650,42650 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 83850,43850 +84250,44250 +84250,44250 +84250,44250 +" /> +<path d="M82250 42250 +L82250 42250 +" /> +<path d="M84250 44250 +L84250 44250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="83250" y="41630" +textLength="2060" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW12</text> +<path d="M82340 41580 +L82410 41600 +L82530 41600 +L82580 41580 +L82600 41550 +L82630 41510 +L82630 41460 +L82600 41410 +L82580 41390 +L82530 41360 +L82440 41340 +L82390 41320 +L82360 41290 +L82340 41240 +L82340 41200 +L82360 41150 +L82390 41130 +L82440 41100 +L82550 41100 +L82630 41130 +" /> +<path d="M82790 41100 +L82910 41600 +L83010 41240 +L83100 41600 +L83220 41100 +" /> +<path d="M83670 41600 +L83390 41600 +" /> +<path d="M83530 41600 +L83530 41100 +L83480 41170 +L83440 41220 +L83390 41240 +" /> +<path d="M83860 41150 +L83890 41130 +L83940 41100 +L84050 41100 +L84100 41130 +L84130 41150 +L84150 41200 +L84150 41240 +L84130 41320 +L83840 41600 +L84150 41600 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="79040" cy="51290" r="200" /> +<circle cx="79950" cy="52220" r="200" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 79300,50750 +80500,51950 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 79900,51350 +80300,50950 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 78500,50750 +78900,51150 +78900,51150 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 80100,52350 +80500,52750 +80500,52750 +80500,52750 +" /> +<path d="M78500 50750 +L78500 50750 +" /> +<path d="M80500 52750 +L80500 52750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="79500" y="50130" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW6</text> +<path d="M78830 50080 +L78900 50100 +L79020 50100 +L79070 50080 +L79090 50050 +L79110 50010 +L79110 49960 +L79090 49910 +L79070 49890 +L79020 49860 +L78920 49840 +L78880 49820 +L78850 49790 +L78830 49740 +L78830 49700 +L78850 49650 +L78880 49630 +L78920 49600 +L79040 49600 +L79110 49630 +" /> +<path d="M79280 49600 +L79400 50100 +L79500 49740 +L79590 50100 +L79710 49600 +" /> +<path d="M80110 49600 +L80020 49600 +L79970 49630 +L79950 49650 +L79900 49720 +L79880 49820 +L79880 50010 +L79900 50050 +L79920 50080 +L79970 50100 +L80070 50100 +L80110 50080 +L80140 50050 +L80160 50010 +L80160 49890 +L80140 49840 +L80110 49820 +L80070 49790 +L79970 49790 +L79920 49820 +L79900 49840 +L79880 49890 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="82790" cy="55790" r="200" /> +<circle cx="83700" cy="56720" r="200" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 83050,55250 +84250,56450 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 83650,55850 +84050,55450 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 82250,55250 +82650,55650 +82650,55650 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 83850,56850 +84250,57250 +84250,57250 +84250,57250 +" /> +<path d="M82250 55250 +L82250 55250 +" /> +<path d="M84250 57250 +L84250 57250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="83250" y="54630" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW9</text> +<path d="M82580 54580 +L82650 54600 +L82770 54600 +L82820 54580 +L82840 54550 +L82860 54510 +L82860 54460 +L82840 54410 +L82820 54390 +L82770 54360 +L82670 54340 +L82630 54320 +L82600 54290 +L82580 54240 +L82580 54200 +L82600 54150 +L82630 54130 +L82670 54100 +L82790 54100 +L82860 54130 +" /> +<path d="M83030 54100 +L83150 54600 +L83250 54240 +L83340 54600 +L83460 54100 +" /> +<path d="M83670 54600 +L83770 54600 +L83820 54580 +L83840 54550 +L83890 54480 +L83910 54390 +L83910 54200 +L83890 54150 +L83860 54130 +L83820 54100 +L83720 54100 +L83670 54130 +L83650 54150 +L83630 54200 +L83630 54320 +L83650 54360 +L83670 54390 +L83720 54410 +L83820 54410 +L83860 54390 +L83890 54360 +L83910 54320 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="102540" cy="48290" r="200" /> +<circle cx="103450" cy="49220" r="200" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 102800,47750 +104000,48950 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 103400,48350 +103800,47950 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 102000,47750 +102400,48150 +102400,48150 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 103600,49350 +104000,49750 +104000,49750 +104000,49750 +" /> +<path d="M102000 47750 +L102000 47750 +" /> +<path d="M104000 49750 +L104000 49750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="103000" y="47130" +textLength="2060" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW20</text> +<path d="M102090 47080 +L102160 47100 +L102280 47100 +L102330 47080 +L102350 47050 +L102380 47010 +L102380 46960 +L102350 46910 +L102330 46890 +L102280 46860 +L102190 46840 +L102140 46820 +L102110 46790 +L102090 46740 +L102090 46700 +L102110 46650 +L102140 46630 +L102190 46600 +L102300 46600 +L102380 46630 +" /> +<path d="M102540 46600 +L102660 47100 +L102760 46740 +L102850 47100 +L102970 46600 +" /> +<path d="M103140 46650 +L103160 46630 +L103210 46600 +L103330 46600 +L103380 46630 +L103400 46650 +L103420 46700 +L103420 46740 +L103400 46820 +L103110 47100 +L103420 47100 +" /> +<path d="M103730 46600 +L103780 46600 +L103830 46630 +L103850 46650 +L103880 46700 +L103900 46790 +L103900 46910 +L103880 47010 +L103850 47050 +L103830 47080 +L103780 47100 +L103730 47100 +L103690 47080 +L103660 47050 +L103640 47010 +L103610 46910 +L103610 46790 +L103640 46700 +L103660 46650 +L103690 46630 +L103730 46600 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 91000,17000 +91000,17500 +91500,17500 +91000,18000 +90500,17500 +91000,17500 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="91050" y="19000" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">GND</text> +<path d="M90660 18500 +L90620 18470 +L90550 18470 +L90470 18500 +L90430 18540 +L90400 18590 +L90380 18690 +L90380 18760 +L90400 18850 +L90430 18900 +L90470 18950 +L90550 18970 +L90590 18970 +L90660 18950 +L90690 18920 +L90690 18760 +L90590 18760 +" /> +<path d="M90900 18970 +L90900 18470 +L91190 18970 +L91190 18470 +" /> +<path d="M91430 18970 +L91430 18470 +L91550 18470 +L91620 18500 +L91660 18540 +L91690 18590 +L91710 18690 +L91710 18760 +L91690 18850 +L91660 18900 +L91620 18950 +L91550 18970 +L91430 18970 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="75290" cy="42790" r="200" /> +<circle cx="76200" cy="43720" r="200" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 75550,42250 +76750,43450 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 76150,42850 +76550,42450 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 74750,42250 +75150,42650 +75150,42650 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 76350,43850 +76750,44250 +76750,44250 +76750,44250 +" /> +<path d="M74750 42250 +L74750 42250 +" /> +<path d="M76750 44250 +L76750 44250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="75750" y="41630" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW4</text> +<path d="M75080 41580 +L75150 41600 +L75270 41600 +L75320 41580 +L75340 41550 +L75360 41510 +L75360 41460 +L75340 41410 +L75320 41390 +L75270 41360 +L75170 41340 +L75130 41320 +L75100 41290 +L75080 41240 +L75080 41200 +L75100 41150 +L75130 41130 +L75170 41100 +L75290 41100 +L75360 41130 +" /> +<path d="M75530 41100 +L75650 41600 +L75750 41240 +L75840 41600 +L75960 41100 +" /> +<path d="M76360 41270 +L76360 41600 +" /> +<path d="M76250 41080 +L76130 41430 +L76440 41430 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:1.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="76750" y="33700" width="340" height="100" rx="0" /> +<rect x="76750" y="32700" width="340" height="100" rx="0" /> +<rect x="76750" y="31700" width="340" height="100" rx="0" /> +<rect x="76750" y="30700" width="340" height="100" rx="0" /> +<rect x="76750" y="29700" width="340" height="100" rx="0" /> +<rect x="76750" y="28700" width="340" height="100" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 77250,33750 +77090,33750 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 77250,32750 +77090,32750 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 77250,31750 +77090,31750 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 77250,30750 +77090,30750 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 77250,29750 +77090,29750 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 77250,28750 +77090,28750 +" /> +<path d="M77250 28750 +L78750 28750 +" /> +<text x="78000" y="28650" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">1</text> +<path d="M78140 28620 +L77850 28620 +" /> +<path d="M78000 28620 +L78000 28120 +L77950 28190 +L77900 28240 +L77850 28260 +" /> +<path d="M77250 29750 +L78750 29750 +" /> +<text x="78000" y="29650" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">2</text> +<path d="M77850 29170 +L77880 29150 +L77920 29120 +L78040 29120 +L78090 29150 +L78110 29170 +L78140 29220 +L78140 29260 +L78110 29340 +L77830 29620 +L78140 29620 +" /> +<path d="M77250 30750 +L78750 30750 +" /> +<text x="78000" y="30650" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">3</text> +<path d="M77830 30120 +L78140 30120 +L77970 30310 +L78040 30310 +L78090 30340 +L78110 30360 +L78140 30410 +L78140 30530 +L78110 30570 +L78090 30600 +L78040 30620 +L77900 30620 +L77850 30600 +L77830 30570 +" /> +<path d="M77250 31750 +L78750 31750 +" /> +<text x="78000" y="31650" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">4</text> +<path d="M78090 31290 +L78090 31620 +" /> +<path d="M77970 31100 +L77850 31450 +L78160 31450 +" /> +<path d="M77250 32750 +L78750 32750 +" /> +<text x="78000" y="32650" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">5</text> +<path d="M78110 32120 +L77880 32120 +L77850 32360 +L77880 32340 +L77920 32310 +L78040 32310 +L78090 32340 +L78110 32360 +L78140 32410 +L78140 32530 +L78110 32570 +L78090 32600 +L78040 32620 +L77920 32620 +L77880 32600 +L77850 32570 +" /> +<path d="M77250 33750 +L78750 33750 +" /> +<text x="78000" y="33650" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">6</text> +<path d="M78090 33120 +L78000 33120 +L77950 33150 +L77920 33170 +L77880 33240 +L77850 33340 +L77850 33530 +L77880 33570 +L77900 33600 +L77950 33620 +L78040 33620 +L78090 33600 +L78110 33570 +L78140 33530 +L78140 33410 +L78110 33360 +L78090 33340 +L78040 33310 +L77950 33310 +L77900 33340 +L77880 33360 +L77850 33410 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="77830" y="27210" +textLength="920" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">J4</text> +<path d="M77660 26680 +L77660 27040 +L77630 27110 +L77590 27160 +L77520 27180 +L77470 27180 +" /> +<path d="M78110 26850 +L78110 27180 +" /> +<path d="M77990 26660 +L77870 27010 +L78180 27010 +" /> +<text x="77830" y="28120" +textLength="1610" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SWD</text> +<path d="M77150 28070 +L77220 28090 +L77340 28090 +L77380 28070 +L77410 28040 +L77430 28000 +L77430 27950 +L77410 27900 +L77380 27880 +L77340 27850 +L77240 27830 +L77190 27810 +L77170 27780 +L77150 27730 +L77150 27690 +L77170 27640 +L77190 27620 +L77240 27590 +L77360 27590 +L77430 27620 +" /> +<path d="M77600 27590 +L77720 28090 +L77810 27730 +L77910 28090 +L78030 27590 +" /> +<path d="M78220 28090 +L78220 27590 +L78340 27590 +L78410 27620 +L78460 27660 +L78480 27710 +L78500 27810 +L78500 27880 +L78480 27970 +L78460 28020 +L78410 28070 +L78340 28090 +L78220 28090 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 11750,59000 +11750,59500 +12250,59500 +11750,60000 +11250,59500 +11750,59500 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="11800" y="61000" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">GND</text> +<path d="M11410 60500 +L11370 60470 +L11300 60470 +L11220 60500 +L11180 60540 +L11150 60590 +L11130 60690 +L11130 60760 +L11150 60850 +L11180 60900 +L11220 60950 +L11300 60970 +L11340 60970 +L11410 60950 +L11440 60920 +L11440 60760 +L11340 60760 +" /> +<path d="M11650 60970 +L11650 60470 +L11940 60970 +L11940 60470 +" /> +<path d="M12180 60970 +L12180 60470 +L12300 60470 +L12370 60500 +L12410 60540 +L12440 60590 +L12460 60690 +L12460 60760 +L12440 60850 +L12410 60900 +L12370 60950 +L12300 60970 +L12180 60970 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 87250,21250 +87250,21750 +87750,21750 +87250,22250 +86750,21750 +87250,21750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="87300" y="23250" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">GND</text> +<path d="M86910 22750 +L86870 22720 +L86800 22720 +L86720 22750 +L86680 22790 +L86650 22840 +L86630 22940 +L86630 23010 +L86650 23100 +L86680 23150 +L86720 23200 +L86800 23220 +L86840 23220 +L86910 23200 +L86940 23170 +L86940 23010 +L86840 23010 +" /> +<path d="M87150 23220 +L87150 22720 +L87440 23220 +L87440 22720 +" /> +<path d="M87680 23220 +L87680 22720 +L87800 22720 +L87870 22750 +L87910 22790 +L87940 22840 +L87960 22940 +L87960 23010 +L87940 23100 +L87910 23150 +L87870 23200 +L87800 23220 +L87680 23220 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:160; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:160; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 15250,21250 +15250,7250 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:160; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 15250,7250 +25250,7250 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:160; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 25250,21250 +15250,21250 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:160; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 25250,7250 +25250,21250 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M15250 9250 +L13250 9250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="15650" y="9450" +textLength="2160" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">VREF_A</text> +<path d="M15710 9030 +L15850 9430 +L15980 9030 +" /> +<path d="M16340 9430 +L16210 9240 +" /> +<path d="M16110 9430 +L16110 9030 +L16270 9030 +L16300 9050 +L16320 9060 +L16340 9100 +L16340 9160 +L16320 9200 +L16300 9220 +L16270 9240 +L16110 9240 +" /> +<path d="M16510 9220 +L16650 9220 +" /> +<path d="M16700 9430 +L16510 9430 +L16510 9030 +L16700 9030 +" /> +<path d="M17010 9220 +L16880 9220 +" /> +<path d="M16880 9430 +L16880 9030 +L17070 9030 +" /> +<path d="M17120 9460 +L17430 9460 +" /> +<path d="M17500 9310 +L17690 9310 +" /> +<path d="M17470 9430 +L17600 9030 +L17730 9430 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="14250" y="9150" +textLength="440" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">1</text> +<path d="M14360 9130 +L14130 9130 +" /> +<path d="M14250 9130 +L14250 8730 +L14210 8780 +L14170 8820 +L14130 8840 +" /> +<path d="M25250 17250 +L27250 17250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="24850" y="17450" +textLength="840" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">B4</text> +<path d="M24260 17220 +L24320 17240 +L24340 17250 +L24360 17290 +L24360 17350 +L24340 17390 +L24320 17410 +L24280 17430 +L24130 17430 +L24130 17030 +L24260 17030 +L24300 17050 +L24320 17060 +L24340 17100 +L24340 17140 +L24320 17180 +L24300 17200 +L24260 17220 +L24130 17220 +" /> +<path d="M24700 17160 +L24700 17430 +" /> +<path d="M24610 17010 +L24510 17290 +L24760 17290 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="26250" y="17150" +textLength="820" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">10</text> +<path d="M26170 17130 +L25940 17130 +" /> +<path d="M26050 17130 +L26050 16730 +L26020 16780 +L25980 16820 +L25940 16840 +" /> +<path d="M26420 16730 +L26450 16730 +L26490 16750 +L26510 16760 +L26530 16800 +L26550 16880 +L26550 16970 +L26530 17050 +L26510 17090 +L26490 17110 +L26450 17130 +L26420 17130 +L26380 17110 +L26360 17090 +L26340 17050 +L26320 16970 +L26320 16880 +L26340 16800 +L26360 16760 +L26380 16750 +L26420 16730 +" /> +<path d="M25250 16250 +L27250 16250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="24850" y="16450" +textLength="840" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">B3</text> +<path d="M24260 16220 +L24320 16240 +L24340 16250 +L24360 16290 +L24360 16350 +L24340 16390 +L24320 16410 +L24280 16430 +L24130 16430 +L24130 16030 +L24260 16030 +L24300 16050 +L24320 16060 +L24340 16100 +L24340 16140 +L24320 16180 +L24300 16200 +L24260 16220 +L24130 16220 +" /> +<path d="M24490 16030 +L24740 16030 +L24610 16180 +L24660 16180 +L24700 16200 +L24720 16220 +L24740 16250 +L24740 16350 +L24720 16390 +L24700 16410 +L24660 16430 +L24550 16430 +L24510 16410 +L24490 16390 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="26250" y="16150" +textLength="820" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">11</text> +<path d="M26170 16130 +L25940 16130 +" /> +<path d="M26050 16130 +L26050 15730 +L26020 15780 +L25980 15820 +L25940 15840 +" /> +<path d="M26550 16130 +L26320 16130 +" /> +<path d="M26440 16130 +L26440 15730 +L26400 15780 +L26360 15820 +L26320 15840 +" /> +<path d="M15250 16250 +L13250 16250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="15650" y="16450" +textLength="840" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">B2</text> +<path d="M15900 16220 +L15960 16240 +L15980 16250 +L16000 16290 +L16000 16350 +L15980 16390 +L15960 16410 +L15920 16430 +L15770 16430 +L15770 16030 +L15900 16030 +L15940 16050 +L15960 16060 +L15980 16100 +L15980 16140 +L15960 16180 +L15940 16200 +L15900 16220 +L15770 16220 +" /> +<path d="M16150 16060 +L16170 16050 +L16210 16030 +L16300 16030 +L16340 16050 +L16360 16060 +L16380 16100 +L16380 16140 +L16360 16200 +L16130 16430 +L16380 16430 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="14250" y="16150" +textLength="820" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">12</text> +<path d="M14170 16130 +L13940 16130 +" /> +<path d="M14050 16130 +L14050 15730 +L14020 15780 +L13980 15820 +L13940 15840 +" /> +<path d="M14320 15760 +L14340 15750 +L14380 15730 +L14470 15730 +L14510 15750 +L14530 15760 +L14550 15800 +L14550 15840 +L14530 15900 +L14300 16130 +L14550 16130 +" /> +<path d="M15250 15250 +L13250 15250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="15650" y="15450" +textLength="840" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">B1</text> +<path d="M15900 15220 +L15960 15240 +L15980 15250 +L16000 15290 +L16000 15350 +L15980 15390 +L15960 15410 +L15920 15430 +L15770 15430 +L15770 15030 +L15900 15030 +L15940 15050 +L15960 15060 +L15980 15100 +L15980 15140 +L15960 15180 +L15940 15200 +L15900 15220 +L15770 15220 +" /> +<path d="M16380 15430 +L16150 15430 +" /> +<path d="M16270 15430 +L16270 15030 +L16230 15080 +L16190 15120 +L16150 15140 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="14250" y="15150" +textLength="820" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">13</text> +<path d="M14170 15130 +L13940 15130 +" /> +<path d="M14050 15130 +L14050 14730 +L14020 14780 +L13980 14820 +L13940 14840 +" /> +<path d="M14300 14730 +L14550 14730 +L14420 14880 +L14470 14880 +L14510 14900 +L14530 14920 +L14550 14950 +L14550 15050 +L14530 15090 +L14510 15110 +L14470 15130 +L14360 15130 +L14320 15110 +L14300 15090 +" /> +<path d="M15250 10250 +L13250 10250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="15650" y="10450" +textLength="2210" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">VREF_B</text> +<path d="M15710 10030 +L15850 10430 +L15980 10030 +" /> +<path d="M16340 10430 +L16210 10240 +" /> +<path d="M16110 10430 +L16110 10030 +L16270 10030 +L16300 10050 +L16320 10060 +L16340 10100 +L16340 10160 +L16320 10200 +L16300 10220 +L16270 10240 +L16110 10240 +" /> +<path d="M16510 10220 +L16650 10220 +" /> +<path d="M16700 10430 +L16510 10430 +L16510 10030 +L16700 10030 +" /> +<path d="M17010 10220 +L16880 10220 +" /> +<path d="M16880 10430 +L16880 10030 +L17070 10030 +" /> +<path d="M17120 10460 +L17430 10460 +" /> +<path d="M17660 10220 +L17710 10240 +L17730 10250 +L17750 10290 +L17750 10350 +L17730 10390 +L17710 10410 +L17680 10430 +L17520 10430 +L17520 10030 +L17660 10030 +L17690 10050 +L17710 10060 +L17730 10100 +L17730 10140 +L17710 10180 +L17690 10200 +L17660 10220 +L17520 10220 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="14250" y="10150" +textLength="820" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">14</text> +<path d="M14170 10130 +L13940 10130 +" /> +<path d="M14050 10130 +L14050 9730 +L14020 9780 +L13980 9820 +L13940 9840 +" /> +<path d="M14510 9860 +L14510 10130 +" /> +<path d="M14420 9710 +L14320 9990 +L14570 9990 +" /> +<path d="M15250 12250 +L13250 12250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="15650" y="12450" +textLength="780" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">A1</text> +<path d="M15750 12310 +L15940 12310 +" /> +<path d="M15710 12430 +L15850 12030 +L15980 12430 +" /> +<path d="M16320 12430 +L16090 12430 +" /> +<path d="M16210 12430 +L16210 12030 +L16170 12080 +L16130 12120 +L16090 12140 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="14250" y="12150" +textLength="440" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">2</text> +<path d="M14130 11760 +L14150 11750 +L14190 11730 +L14280 11730 +L14320 11750 +L14340 11760 +L14360 11800 +L14360 11840 +L14340 11900 +L14110 12130 +L14360 12130 +" /> +<path d="M15250 13250 +L13250 13250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="15650" y="13450" +textLength="780" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">A2</text> +<path d="M15750 13310 +L15940 13310 +" /> +<path d="M15710 13430 +L15850 13030 +L15980 13430 +" /> +<path d="M16090 13060 +L16110 13050 +L16150 13030 +L16250 13030 +L16280 13050 +L16300 13060 +L16320 13100 +L16320 13140 +L16300 13200 +L16080 13430 +L16320 13430 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="14250" y="13150" +textLength="440" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">3</text> +<path d="M14110 12730 +L14360 12730 +L14230 12880 +L14280 12880 +L14320 12900 +L14340 12920 +L14360 12950 +L14360 13050 +L14340 13090 +L14320 13110 +L14280 13130 +L14170 13130 +L14130 13110 +L14110 13090 +" /> +<path d="M25250 13250 +L27250 13250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="24850" y="13450" +textLength="780" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">A3</text> +<path d="M24170 13310 +L24360 13310 +" /> +<path d="M24130 13430 +L24260 13030 +L24400 13430 +" /> +<path d="M24490 13030 +L24740 13030 +L24610 13180 +L24660 13180 +L24700 13200 +L24720 13220 +L24740 13250 +L24740 13350 +L24720 13390 +L24700 13410 +L24660 13430 +L24550 13430 +L24510 13410 +L24490 13390 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="26250" y="13150" +textLength="440" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">4</text> +<path d="M26320 12860 +L26320 13130 +" /> +<path d="M26230 12710 +L26130 12990 +L26380 12990 +" /> +<path d="M25250 14250 +L27250 14250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="24850" y="14450" +textLength="780" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">A4</text> +<path d="M24170 14310 +L24360 14310 +" /> +<path d="M24130 14430 +L24260 14030 +L24400 14430 +" /> +<path d="M24700 14160 +L24700 14430 +" /> +<path d="M24610 14010 +L24510 14290 +L24760 14290 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="26250" y="14150" +textLength="440" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">5</text> +<path d="M26340 13730 +L26150 13730 +L26130 13920 +L26150 13900 +L26190 13880 +L26280 13880 +L26320 13900 +L26340 13920 +L26360 13950 +L26360 14050 +L26340 14090 +L26320 14110 +L26280 14130 +L26190 14130 +L26150 14110 +L26130 14090 +" /> +<path d="M25250 18250 +L27250 18250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="24850" y="18450" +textLength="1280" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">GND</text> +<path d="M23900 18050 +L23860 18030 +L23810 18030 +L23750 18050 +L23710 18080 +L23690 18120 +L23670 18200 +L23670 18250 +L23690 18330 +L23710 18370 +L23750 18410 +L23810 18430 +L23840 18430 +L23900 18410 +L23920 18390 +L23920 18250 +L23840 18250 +" /> +<path d="M24090 18430 +L24090 18030 +L24320 18430 +L24320 18030 +" /> +<path d="M24510 18430 +L24510 18030 +L24610 18030 +L24660 18050 +L24700 18080 +L24720 18120 +L24740 18200 +L24740 18250 +L24720 18330 +L24700 18370 +L24660 18410 +L24610 18430 +L24510 18430 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="26250" y="18150" +textLength="440" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">7</text> +<path d="M26110 17730 +L26380 17730 +L26210 18130 +" /> +<path d="M15250 8250 +L13250 8250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="15650" y="8450" +textLength="840" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">EN</text> +<path d="M15770 8220 +L15900 8220 +" /> +<path d="M15960 8430 +L15770 8430 +L15770 8030 +L15960 8030 +" /> +<path d="M16130 8430 +L16130 8030 +L16360 8430 +L16360 8030 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="14250" y="8150" +textLength="440" font-size="530" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">8</text> +<path d="M14210 7900 +L14170 7880 +L14150 7860 +L14130 7820 +L14130 7800 +L14150 7760 +L14170 7750 +L14210 7730 +L14280 7730 +L14320 7750 +L14340 7760 +L14360 7800 +L14360 7820 +L14340 7860 +L14320 7880 +L14280 7900 +L14210 7900 +L14170 7920 +L14150 7940 +L14130 7970 +L14130 8050 +L14150 8090 +L14170 8110 +L14210 8130 +L14280 8130 +L14320 8110 +L14340 8090 +L14360 8050 +L14360 7970 +L14340 7940 +L14320 7920 +L14280 7900 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="20250" y="5820" +textLength="1060" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">U1</text> +<path d="M19860 5290 +L19860 5700 +L19890 5740 +L19910 5770 +L19960 5790 +L20050 5790 +L20100 5770 +L20130 5740 +L20150 5700 +L20150 5290 +" /> +<path d="M20650 5790 +L20360 5790 +" /> +<path d="M20510 5790 +L20510 5290 +L20460 5360 +L20410 5410 +L20360 5430 +" /> +<text x="20250" y="6730" +textLength="4850" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">LSF0204PWR</text> +<path d="M18210 6700 +L17970 6700 +L17970 6200 +" /> +<path d="M18350 6680 +L18420 6700 +L18540 6700 +L18590 6680 +L18610 6650 +L18640 6610 +L18640 6560 +L18610 6510 +L18590 6490 +L18540 6460 +L18450 6440 +L18400 6420 +L18380 6390 +L18350 6340 +L18350 6300 +L18380 6250 +L18400 6230 +L18450 6200 +L18570 6200 +L18640 6230 +" /> +<path d="M19020 6440 +L18850 6440 +" /> +<path d="M18850 6700 +L18850 6200 +L19090 6200 +" /> +<path d="M19380 6200 +L19420 6200 +L19470 6230 +L19500 6250 +L19520 6300 +L19540 6390 +L19540 6510 +L19520 6610 +L19500 6650 +L19470 6680 +L19420 6700 +L19380 6700 +L19330 6680 +L19300 6650 +L19280 6610 +L19260 6510 +L19260 6390 +L19280 6300 +L19300 6250 +L19330 6230 +L19380 6200 +" /> +<path d="M19730 6250 +L19760 6230 +L19800 6200 +L19920 6200 +L19970 6230 +L20000 6250 +L20020 6300 +L20020 6340 +L20000 6420 +L19710 6700 +L20020 6700 +" /> +<path d="M20330 6200 +L20380 6200 +L20420 6230 +L20450 6250 +L20470 6300 +L20500 6390 +L20500 6510 +L20470 6610 +L20450 6650 +L20420 6680 +L20380 6700 +L20330 6700 +L20280 6680 +L20260 6650 +L20230 6610 +L20210 6510 +L20210 6390 +L20230 6300 +L20260 6250 +L20280 6230 +L20330 6200 +" /> +<path d="M20920 6370 +L20920 6700 +" /> +<path d="M20800 6180 +L20690 6530 +L21000 6530 +" /> +<path d="M21190 6700 +L21190 6200 +L21380 6200 +L21420 6230 +L21450 6250 +L21470 6300 +L21470 6370 +L21450 6420 +L21420 6440 +L21380 6460 +L21190 6460 +" /> +<path d="M21640 6200 +L21760 6700 +L21850 6340 +L21950 6700 +L22070 6200 +" /> +<path d="M22540 6700 +L22380 6460 +" /> +<path d="M22260 6700 +L22260 6200 +L22450 6200 +L22500 6230 +L22520 6250 +L22540 6300 +L22540 6370 +L22520 6420 +L22500 6440 +L22450 6460 +L22260 6460 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#FFFFC2; fill-opacity:0.0; +stroke:#FFFFC2; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#FFFFC2; fill-opacity:0.6; +stroke:#FFFFC2; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="97750" y="12500" width="4000" height="3750" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.6; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="97750" y="12500" width="4000" height="3750" rx="0" /> +<rect x="97750" y="12500" width="4000" height="3750" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M97750 13250 +L96750 13250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="97850" y="13500" +textLength="1250" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">VIN</text> +<path d="M97920 12970 +L98090 13470 +L98260 12970 +" /> +<path d="M98420 13470 +L98420 12970 +" /> +<path d="M98660 13470 +L98660 12970 +L98950 13470 +L98950 12970 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="97250" y="13150" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">1</text> +<path d="M97390 13120 +L97100 13120 +" /> +<path d="M97250 13120 +L97250 12620 +L97200 12690 +L97150 12740 +L97100 12760 +" /> +<path d="M99750 16250 +L99750 17250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 99750 16150)"> +<text x="99750" y="16400" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">GND</text> +</g> +<path d="M99500 15730 +L99470 15780 +L99470 15850 +L99500 15920 +L99540 15970 +L99590 16000 +L99690 16020 +L99760 16020 +L99850 16000 +L99900 15970 +L99950 15920 +L99970 15850 +L99970 15810 +L99950 15730 +L99920 15710 +L99760 15710 +L99760 15810 +" /> +<path d="M99970 15500 +L99470 15500 +L99970 15210 +L99470 15210 +" /> +<path d="M99970 14970 +L99470 14970 +L99470 14850 +L99500 14780 +L99540 14730 +L99590 14710 +L99690 14690 +L99760 14690 +L99850 14710 +L99900 14730 +L99950 14780 +L99970 14850 +L99970 14970 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g transform="rotate(-90 99650 16750)"> +<text x="99650" y="16750" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">2</text> +</g> +<path d="M99170 16890 +L99150 16860 +L99120 16820 +L99120 16700 +L99150 16650 +L99170 16630 +L99220 16600 +L99260 16600 +L99340 16630 +L99620 16910 +L99620 16600 +" /> +<path d="M97750 14250 +L96750 14250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="97850" y="14500" +textLength="1040" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">EN</text> +<path d="M97990 14210 +L98160 14210 +" /> +<path d="M98230 14470 +L97990 14470 +L97990 13970 +L98230 13970 +" /> +<path d="M98450 14470 +L98450 13970 +L98730 14470 +L98730 13970 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="97250" y="14150" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">3</text> +<path d="M97080 13620 +L97390 13620 +L97220 13810 +L97290 13810 +L97340 13840 +L97360 13860 +L97390 13910 +L97390 14030 +L97360 14070 +L97340 14100 +L97290 14120 +L97150 14120 +L97100 14100 +L97080 14070 +" /> +<path d="M101750 13250 +L102750 13250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="101650" y="13500" +textLength="1920" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">VOUT</text> +<path d="M99810 12970 +L99970 13470 +L100140 12970 +" /> +<path d="M100400 12970 +L100500 12970 +L100540 13000 +L100590 13040 +L100620 13140 +L100620 13300 +L100590 13400 +L100540 13450 +L100500 13470 +L100400 13470 +L100350 13450 +L100310 13400 +L100280 13300 +L100280 13140 +L100310 13040 +L100350 13000 +L100400 12970 +" /> +<path d="M100830 12970 +L100830 13380 +L100850 13420 +L100880 13450 +L100920 13470 +L101020 13470 +L101070 13450 +L101090 13420 +L101120 13380 +L101120 12970 +" /> +<path d="M101280 12970 +L101570 12970 +" /> +<path d="M101420 13470 +L101420 12970 +" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="102250" y="13150" +textLength="540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">5</text> +<path d="M102360 12620 +L102130 12620 +L102100 12860 +L102130 12840 +L102170 12810 +L102290 12810 +L102340 12840 +L102360 12860 +L102390 12910 +L102390 13030 +L102360 13070 +L102340 13100 +L102290 13120 +L102170 13120 +L102130 13100 +L102100 13070 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="99750" y="11100" +textLength="1060" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">U3</text> +<path d="M99360 10570 +L99360 10980 +L99390 11020 +L99410 11050 +L99460 11070 +L99550 11070 +L99600 11050 +L99630 11020 +L99650 10980 +L99650 10570 +" /> +<path d="M99840 10570 +L100150 10570 +L99980 10760 +L100050 10760 +L100100 10790 +L100130 10810 +L100150 10860 +L100150 10980 +L100130 11020 +L100100 11050 +L100050 11070 +L99910 11070 +L99860 11050 +L99840 11020 +" /> +<text x="99750" y="12010" +textLength="7680" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">MCP1811AT-033_OT</text> +<path d="M96050 11980 +L96050 11480 +L96220 11840 +L96390 11480 +L96390 11980 +" /> +<path d="M96910 11930 +L96890 11960 +L96820 11980 +L96770 11980 +L96700 11960 +L96650 11910 +L96630 11860 +L96600 11770 +L96600 11700 +L96630 11600 +L96650 11550 +L96700 11510 +L96770 11480 +L96820 11480 +L96890 11510 +L96910 11530 +" /> +<path d="M97130 11980 +L97130 11480 +L97320 11480 +L97360 11510 +L97390 11530 +L97410 11580 +L97410 11650 +L97390 11700 +L97360 11720 +L97320 11740 +L97130 11740 +" /> +<path d="M97890 11980 +L97600 11980 +" /> +<path d="M97750 11980 +L97750 11480 +L97700 11550 +L97650 11600 +L97600 11620 +" /> +<path d="M98170 11700 +L98130 11670 +L98100 11650 +L98080 11600 +L98080 11580 +L98100 11530 +L98130 11510 +L98170 11480 +L98270 11480 +L98320 11510 +L98340 11530 +L98360 11580 +L98360 11600 +L98340 11650 +L98320 11670 +L98270 11700 +L98170 11700 +L98130 11720 +L98100 11740 +L98080 11790 +L98080 11890 +L98100 11930 +L98130 11960 +L98170 11980 +L98270 11980 +L98320 11960 +L98340 11930 +L98360 11890 +L98360 11790 +L98340 11740 +L98320 11720 +L98270 11700 +" /> +<path d="M98840 11980 +L98550 11980 +" /> +<path d="M98700 11980 +L98700 11480 +L98650 11550 +L98600 11600 +L98550 11620 +" /> +<path d="M99320 11980 +L99030 11980 +" /> +<path d="M99170 11980 +L99170 11480 +L99130 11550 +L99080 11600 +L99030 11620 +" /> +<path d="M99510 11840 +L99750 11840 +" /> +<path d="M99460 11980 +L99630 11480 +L99790 11980 +" /> +<path d="M99890 11480 +L100170 11480 +" /> +<path d="M100030 11980 +L100030 11480 +" /> +<path d="M100340 11790 +L100720 11790 +" /> +<path d="M101050 11480 +L101100 11480 +L101150 11510 +L101170 11530 +L101200 11580 +L101220 11670 +L101220 11790 +L101200 11890 +L101170 11930 +L101150 11960 +L101100 11980 +L101050 11980 +L101010 11960 +L100980 11930 +L100960 11890 +L100940 11790 +L100940 11670 +L100960 11580 +L100980 11530 +L101010 11510 +L101050 11480 +" /> +<path d="M101390 11480 +L101700 11480 +L101530 11670 +L101600 11670 +L101650 11700 +L101670 11720 +L101700 11770 +L101700 11890 +L101670 11930 +L101650 11960 +L101600 11980 +L101460 11980 +L101410 11960 +L101390 11930 +" /> +<path d="M101860 11480 +L102170 11480 +L102010 11670 +L102080 11670 +L102130 11700 +L102150 11720 +L102170 11770 +L102170 11890 +L102150 11930 +L102130 11960 +L102080 11980 +L101940 11980 +L101890 11960 +L101860 11930 +" /> +<path d="M102270 12030 +L102650 12030 +" /> +<path d="M102860 11480 +L102960 11480 +L103010 11510 +L103050 11550 +L103080 11650 +L103080 11810 +L103050 11910 +L103010 11960 +L102960 11980 +L102860 11980 +L102820 11960 +L102770 11910 +L102750 11810 +L102750 11650 +L102770 11550 +L102820 11510 +L102860 11480 +" /> +<path d="M103220 11480 +L103510 11480 +" /> +<path d="M103360 11980 +L103360 11480 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="105350" y="15350" width="1800" height="200" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:1.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<rect x="105350" y="15950" width="1800" height="200" rx="0" /> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 105550,14850 +105950,14850 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 105750,14650 +105750,15050 +" /> +<path d="M106250 15350 +L106250 14250 +" /> +<path d="M106250 16150 +L106250 17250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="107950" y="15560" +textLength="1040" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">C8</text> +<path d="M107860 15480 +L107840 15510 +L107770 15530 +L107720 15530 +L107650 15510 +L107600 15460 +L107580 15410 +L107550 15320 +L107550 15250 +L107580 15150 +L107600 15100 +L107650 15060 +L107720 15030 +L107770 15030 +L107840 15060 +L107860 15080 +" /> +<path d="M108150 15250 +L108100 15220 +L108080 15200 +L108050 15150 +L108050 15130 +L108080 15080 +L108100 15060 +L108150 15030 +L108240 15030 +L108290 15060 +L108310 15080 +L108340 15130 +L108340 15150 +L108310 15200 +L108290 15220 +L108240 15250 +L108150 15250 +L108100 15270 +L108080 15290 +L108050 15340 +L108050 15440 +L108080 15480 +L108100 15510 +L108150 15530 +L108240 15530 +L108290 15510 +L108310 15480 +L108340 15440 +L108340 15340 +L108310 15290 +L108290 15270 +L108240 15250 +" /> +<text x="108160" y="16470" +textLength="1460" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">10u</text> +<path d="M107830 16440 +L107550 16440 +" /> +<path d="M107690 16440 +L107690 15940 +L107640 16010 +L107600 16060 +L107550 16080 +" /> +<path d="M108140 15940 +L108190 15940 +L108240 15970 +L108260 15990 +L108290 16040 +L108310 16130 +L108310 16250 +L108290 16350 +L108260 16390 +L108240 16420 +L108190 16440 +L108140 16440 +L108100 16420 +L108070 16390 +L108050 16350 +L108020 16250 +L108020 16130 +L108050 16040 +L108070 15990 +L108100 15970 +L108140 15940 +" /> +<path d="M108740 16110 +L108740 16440 +" /> +<path d="M108520 16110 +L108520 16370 +L108550 16420 +L108600 16440 +L108670 16440 +L108710 16420 +L108740 16390 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="90290" cy="42790" r="200" /> +<circle cx="91200" cy="43720" r="200" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 90550,42250 +91750,43450 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 91150,42850 +91550,42450 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 89750,42250 +90150,42650 +90150,42650 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 91350,43850 +91750,44250 +91750,44250 +91750,44250 +" /> +<path d="M89750 42250 +L89750 42250 +" /> +<path d="M91750 44250 +L91750 44250 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="90750" y="41630" +textLength="2060" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW18</text> +<path d="M89840 41580 +L89910 41600 +L90030 41600 +L90080 41580 +L90100 41550 +L90130 41510 +L90130 41460 +L90100 41410 +L90080 41390 +L90030 41360 +L89940 41340 +L89890 41320 +L89860 41290 +L89840 41240 +L89840 41200 +L89860 41150 +L89890 41130 +L89940 41100 +L90050 41100 +L90130 41130 +" /> +<path d="M90290 41100 +L90410 41600 +L90510 41240 +L90600 41600 +L90720 41100 +" /> +<path d="M91170 41600 +L90890 41600 +" /> +<path d="M91030 41600 +L91030 41100 +L90980 41170 +L90940 41220 +L90890 41240 +" /> +<path d="M91460 41320 +L91410 41290 +L91390 41270 +L91360 41220 +L91360 41200 +L91390 41150 +L91410 41130 +L91460 41100 +L91550 41100 +L91600 41130 +L91630 41150 +L91650 41200 +L91650 41220 +L91630 41270 +L91600 41290 +L91550 41320 +L91460 41320 +L91410 41340 +L91390 41360 +L91360 41410 +L91360 41510 +L91390 41550 +L91410 41580 +L91460 41600 +L91550 41600 +L91600 41580 +L91630 41550 +L91650 41510 +L91650 41410 +L91630 41360 +L91600 41340 +L91550 41320 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<g > +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="90290" cy="47290" r="200" /> +<circle cx="91200" cy="48220" r="200" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 90550,46750 +91750,47950 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 91150,47350 +91550,46950 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 89750,46750 +90150,47150 +90150,47150 +" /> +<path style="fill:#840000; fill-opacity:0.0; +stroke:#840000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;fill:none" +d="M 91350,48350 +91750,48750 +91750,48750 +91750,48750 +" /> +<path d="M89750 46750 +L89750 46750 +" /> +<path d="M91750 48750 +L91750 48750 +" /> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="90750" y="46130" +textLength="2060" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="middle" opacity="0">SW17</text> +<path d="M89840 46080 +L89910 46100 +L90030 46100 +L90080 46080 +L90100 46050 +L90130 46010 +L90130 45960 +L90100 45910 +L90080 45890 +L90030 45860 +L89940 45840 +L89890 45820 +L89860 45790 +L89840 45740 +L89840 45700 +L89860 45650 +L89890 45630 +L89940 45600 +L90050 45600 +L90130 45630 +" /> +<path d="M90290 45600 +L90410 46100 +L90510 45740 +L90600 46100 +L90720 45600 +" /> +<path d="M91170 46100 +L90890 46100 +" /> +<path d="M91030 46100 +L91030 45600 +L90980 45670 +L90940 45720 +L90890 45740 +" /> +<path d="M91340 45600 +L91670 45600 +L91460 46100 +" /> +</g> +</g> +<g style="fill:#008484; fill-opacity:0.0; +stroke:#008484; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;stroke-dasharray:150,150;"> +<path d="M36500 5250 +L36500 26250 +" /> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;stroke-dasharray:150,150;"> +<path d="M36500 23750 +L4750 23750 +" /> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;stroke-dasharray:150,150;"> +<path d="M36500 26250 +L91250 26250 +" /> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;stroke-dasharray:150,150;"> +<path d="M91250 20500 +L91250 37000 +" /> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;stroke-dasharray:150,150;"> +<path d="M27250 41000 +L27250 23750 +" /> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;stroke-dasharray:150,150;"> +<path d="M5000 63750 +L40250 63750 +" /> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;stroke-dasharray:150,150;"> +<path d="M73750 37250 +L73750 26250 +" /> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;stroke-dasharray:150,150;"> +<path d="M69750 37000 +L112250 37000 +" /> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;stroke-dasharray:150,150;"> +<path d="M91250 20500 +L112250 20500 +" /> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;stroke-dasharray:150,150;"> +<path d="M69750 65250 +L69750 37000 +" /> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;stroke-dasharray:150,150;"> +<path d="M40250 63750 +L40250 78000 +" /> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;stroke-dasharray:150,150;"> +<path d="M18000 41000 +L18000 63750 +" /> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;stroke-dasharray:150,150;"> +<path d="M4750 41000 +L27250 41000 +" /> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:0.0; +stroke:#008400; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M17250 31250 +L18750 31250 +" /> +<path d="M65250 14250 +L67000 14250 +" /> +<path d="M106250 14250 +L106250 13250 +" /> +<path d="M102750 13250 +L106250 13250 +" /> +<path d="M22500 28250 +L18000 28250 +" /> +<path d="M22500 31250 +L22500 28250 +" /> +<path d="M21750 31250 +L22500 31250 +" /> +<path d="M65250 17500 +L67000 17500 +" /> +<path d="M10500 21250 +L10500 20500 +" /> +<path d="M13250 15250 +L9500 15250 +" /> +<path d="M13250 16250 +L10500 16250 +" /> +<path d="M105250 28250 +L105250 29250 +" /> +<path d="M65250 15250 +L65250 17500 +" /> +<path d="M9500 6250 +L10500 6250 +" /> +<path d="M67000 17500 +L67000 17250 +" /> +<path d="M67000 18000 +L67000 17500 +" /> +<path d="M95000 13250 +L96750 13250 +" /> +<path d="M67000 14250 +L70750 14250 +" /> +<path d="M70750 14250 +L70750 15750 +" /> +<path d="M70750 14250 +L74500 14250 +" /> +<path d="M74500 14250 +L74500 15750 +" /> +<path d="M28000 18250 +L28000 18750 +" /> +<path d="M70750 18750 +L70750 21250 +" /> +<path d="M70750 21250 +L67000 21250 +" /> +<path d="M27250 18250 +L28000 18250 +" /> +<path d="M74500 18750 +L74500 21250 +" /> +<path d="M74500 21250 +L70750 21250 +" /> +<path d="M82000 13250 +L67000 13250 +" /> +<path d="M67000 8750 +L67000 13250 +" /> +<path d="M9500 17500 +L9500 15250 +" /> +<path d="M24750 73250 +L24750 71750 +" /> +<path d="M21500 73250 +L24750 73250 +" /> +<path d="M9500 15250 +L8250 15250 +" /> +<path d="M24750 67500 +L24750 68750 +" /> +<path d="M67000 13250 +L65250 13250 +" /> +<path d="M21500 67500 +L24750 67500 +" /> +<path d="M61750 8750 +L67000 8750 +" /> +<path d="M9500 20500 +L9500 21250 +" /> +<path d="M10500 17500 +L10500 16250 +" /> +<path d="M53500 31750 +L52500 31750 +" /> +<path d="M10500 16250 +L8250 16250 +" /> +<path d="M51500 69750 +L52500 69750 +" /> +<path d="M53000 14250 +L53000 17500 +" /> +<path d="M55250 14250 +L53000 14250 +" /> +<path d="M9500 9750 +L9500 12250 +" /> +<path d="M54250 15250 +L55250 15250 +" /> +<path d="M106250 13250 +L108500 13250 +" /> +<path d="M67000 21000 +L67000 21250 +" /> +<path d="M10500 6250 +L10500 6750 +" /> +<path d="M8500 13250 +L10500 13250 +" /> +<path d="M10500 13250 +L13250 13250 +" /> +<path d="M8500 12250 +L9500 12250 +" /> +<path d="M9500 6250 +L9500 6750 +" /> +<path d="M9500 21250 +L10500 21250 +" /> +<path d="M9500 12250 +L13250 12250 +" /> +<path d="M10500 9750 +L10500 13250 +" /> +<path d="M58750 8750 +L54250 8750 +" /> +<path d="M54250 8750 +L54250 13250 +" /> +<path d="M104250 28250 +L105250 28250 +" /> +<path d="M13250 8250 +L13250 9250 +" /> +<path d="M54250 13250 +L55250 13250 +" /> +<path d="M37000 42000 +L38750 42000 +" /> +<path d="M28000 68750 +L28000 67500 +" /> +<path d="M57750 50000 +L57750 51250 +" /> +<path d="M57750 51250 +L64250 51250 +" /> +<path d="M48500 31750 +L49500 31750 +" /> +<path d="M48500 33000 +L48500 31750 +" /> +<path d="M57500 55000 +L64250 55000 +" /> +<path d="M50500 29500 +L50500 31750 +" /> +<path d="M42000 29500 +L50500 29500 +" /> +<path d="M42000 37000 +L42000 33500 +" /> +<path d="M28000 67500 +L24750 67500 +" /> +<path d="M37000 41000 +L37000 42000 +" /> +<path d="M38750 42000 +L42000 42000 +" /> +<path d="M38750 40500 +L38750 42000 +" /> +<path d="M38750 35000 +L43500 35000 +" /> +<path d="M38750 37500 +L38750 35000 +" /> +<path d="M37000 35000 +L38750 35000 +" /> +<path d="M37000 35000 +L37000 37000 +" /> +<path d="M78750 29750 +L80250 29750 +" /> +<path d="M58750 49500 +L64250 49500 +" /> +<path d="M57500 48000 +L58750 48000 +" /> +<path d="M39750 47500 +L36000 47500 +" /> +<path d="M58750 48000 +L58750 49500 +" /> +<path d="M39750 48750 +L39750 47500 +" /> +<path d="M42000 48750 +L39750 48750 +" /> +<path d="M42000 47500 +L42000 48750 +" /> +<path d="M36000 47500 +L36000 49250 +" /> +<path d="M40000 47500 +L39750 47500 +" /> +<path d="M78750 31750 +L80250 31750 +" /> +<path d="M57500 49000 +L58250 49000 +" /> +<path d="M37000 29500 +L42000 29500 +" /> +<path d="M37000 32000 +L37000 29500 +" /> +<path d="M58250 49000 +L58250 50250 +" /> +<path d="M58250 50250 +L64250 50250 +" /> +<path d="M28000 73250 +L24750 73250 +" /> +<path d="M28000 71750 +L28000 73250 +" /> +<path d="M57500 50000 +L57750 50000 +" /> +<path d="M41000 49250 +L43500 49250 +" /> +<path d="M87250 17250 +L87250 18250 +" /> +<path d="M54250 23750 +L54250 15250 +" /> +<path d="M17250 27500 +L18000 27500 +" /> +<path d="M18000 27500 +L18000 28250 +" /> +<path d="M36000 49250 +L36000 50000 +" /> +<path d="M36000 49250 +L36750 49250 +" /> +<path d="M36000 46000 +L36000 47500 +" /> +<path d="M36750 46000 +L36000 46000 +" /> +<path d="M43500 49250 +L43500 48000 +" /> +<path d="M78750 28750 +L85500 28750 +" /> +<path d="M41000 49250 +L41000 48500 +" /> +<path d="M39750 49250 +L41000 49250 +" /> +<path d="M43500 46000 +L43500 47000 +" /> +<path d="M41000 46000 +L43500 46000 +" /> +<path d="M41000 46500 +L41000 46000 +" /> +<path d="M39750 46000 +L41000 46000 +" /> +<path d="M91000 13250 +L95000 13250 +" /> +<path d="M95000 13250 +L95000 14250 +" /> +<path d="M83250 29750 +L85500 29750 +" /> +<path d="M78750 32750 +L80250 32750 +" /> +<path d="M78750 33750 +L80250 33750 +" /> +<path d="M42000 37000 +L42000 37750 +" /> +<path d="M43500 37000 +L42000 37000 +" /> +<path d="M42000 42000 +L42000 40750 +" /> +<path d="M83250 33750 +L85500 33750 +" /> +<path d="M83250 32750 +L85500 32750 +" /> +<path d="M83250 31750 +L85500 31750 +" /> +<path d="M95000 14250 +L96750 14250 +" /> +<path d="M85000 13250 +L87250 13250 +" /> +<path d="M87250 13250 +L91000 13250 +" /> +<path d="M91000 13250 +L91000 14000 +" /> +<path d="M78750 30750 +L85500 30750 +" /> +<path d="M87250 16250 +L87250 17250 +" /> +<path d="M87250 17250 +L85000 17250 +" /> +<path d="M85000 17250 +L85000 23750 +" /> +<path d="M85000 23750 +L54250 23750 +" /> +<path d="M11250 71750 +L11250 73250 +" /> +<path d="M36000 67500 +L36000 68750 +" /> +<path d="M33000 67500 +L36000 67500 +" /> +<path d="M33000 68750 +L33000 67500 +" /> +<path d="M29500 19750 +L29500 20250 +" /> +<path d="M18250 73250 +L21500 73250 +" /> +<path d="M14500 73250 +L18250 73250 +" /> +<path d="M29500 20250 +L30250 20250 +" /> +<path d="M14500 71750 +L14500 73250 +" /> +<path d="M18250 71750 +L18250 73250 +" /> +<path d="M11250 73250 +L14500 73250 +" /> +<path d="M33000 71750 +L33000 73250 +" /> +<path d="M14500 67500 +L18250 67500 +" /> +<path d="M11250 67500 +L14500 67500 +" /> +<path d="M14500 68750 +L14500 67500 +" /> +<path d="M18250 68750 +L18250 67500 +" /> +<path d="M11250 68750 +L11250 67500 +" /> +<path d="M101000 47750 +L101000 51500 +" /> +<path d="M102000 47750 +L101000 47750 +" /> +<path d="M104000 49750 +L104000 51500 +" /> +<path d="M10500 58000 +L11750 58000 +" /> +<path d="M50500 69750 +L51500 69750 +" /> +<path d="M21500 71750 +L21500 73250 +" /> +<path d="M29250 13250 +L31750 13250 +" /> +<path d="M21500 67500 +L21500 68750 +" /> +<path d="M18250 67500 +L21500 67500 +" /> +<path d="M29500 16250 +L29500 16750 +" /> +<path d="M48500 69750 +L49500 69750 +" /> +<path d="M48500 69000 +L48500 69750 +" /> +<path d="M52500 69000 +L52500 69750 +" /> +<path d="M29500 16250 +L31750 16250 +" /> +<path d="M51500 69750 +L51500 69000 +" /> +<path d="M88000 57250 +L93250 57250 +" /> +<path d="M50500 69750 +L50500 69000 +" /> +<path d="M49500 69750 +L50500 69750 +" /> +<path d="M49500 69000 +L49500 69750 +" /> +<path d="M53500 33000 +L53500 31750 +" /> +<path d="M52500 31750 +L52500 33000 +" /> +<path d="M51500 31750 +L52500 31750 +" /> +<path d="M51500 33000 +L51500 31750 +" /> +<path d="M36000 73250 +L36000 71750 +" /> +<path d="M33000 73250 +L36000 73250 +" /> +<path d="M80500 57250 +L84250 57250 +" /> +<path d="M84250 57250 +L88000 57250 +" /> +<path d="M78500 42250 +L78500 39250 +" /> +<path d="M74750 42250 +L74750 39250 +" /> +<path d="M76750 44250 +L80500 44250 +" /> +<path d="M76750 48750 +L80500 48750 +" /> +<path d="M76750 52750 +L80500 52750 +" /> +<path d="M76750 57250 +L80500 57250 +" /> +<path d="M78500 46750 +L78500 50750 +" /> +<path d="M78500 50750 +L78500 55250 +" /> +<path d="M80500 52750 +L84250 52750 +" /> +<path d="M84250 52750 +L88000 52750 +" /> +<path d="M80500 48750 +L84250 48750 +" /> +<path d="M80500 44250 +L84250 44250 +" /> +<path d="M82250 50750 +L82250 55250 +" /> +<path d="M82250 46750 +L82250 50750 +" /> +<path d="M82250 42250 +L82250 46750 +" /> +<path d="M78500 42250 +L78500 46750 +" /> +<path d="M74750 50750 +L74750 55250 +" /> +<path d="M74750 46750 +L74750 50750 +" /> +<path d="M74750 42250 +L74750 46750 +" /> +<path d="M86000 42250 +L86000 39250 +" /> +<path d="M11750 58000 +L11750 59000 +" /> +<path d="M88000 52750 +L93250 52750 +" /> +<path d="M27250 17250 +L28000 17250 +" /> +<path d="M91750 48750 +L93250 48750 +" /> +<path d="M28000 17250 +L28000 18250 +" /> +<path d="M91750 44250 +L93250 44250 +" /> +<path d="M27250 14250 +L28000 14250 +" /> +<path d="M89750 42250 +L89750 39250 +" /> +<path d="M28000 14250 +L28000 17250 +" /> +<path d="M105250 27250 +L105250 28250 +" /> +<path d="M82250 42250 +L82250 39250 +" /> +<path d="M86000 42250 +L86000 46750 +" /> +<path d="M86000 46750 +L86000 50750 +" /> +<path d="M86000 50750 +L86000 55250 +" /> +<path d="M89750 42250 +L89750 46750 +" /> +<path d="M84250 44250 +L88000 44250 +" /> +<path d="M88000 44250 +L91750 44250 +" /> +<path d="M84250 48750 +L88000 48750 +" /> +<path d="M88000 48750 +L91750 48750 +" /> +<path d="M27250 16250 +L29500 16250 +" /> +<path d="M63000 48000 +L64250 48000 +" /> +<path d="M39000 57000 +L43500 57000 +" /> +<path d="M43500 56000 +L39000 56000 +" /> +<path d="M57500 36000 +L62000 36000 +" /> +<path d="M57500 35000 +L62000 35000 +" /> +<path d="M57500 52000 +L60750 52000 +" /> +<path d="M57500 53000 +L60750 53000 +" /> +<path d="M57500 54000 +L60750 54000 +" /> +<path d="M57500 56000 +L60750 56000 +" /> +<path d="M57500 57000 +L60750 57000 +" /> +<path d="M57500 58000 +L60750 58000 +" /> +<path d="M57500 59000 +L60750 59000 +" /> +<path d="M57500 60000 +L60750 60000 +" /> +<path d="M49500 31750 +L50500 31750 +" /> +<path d="M27250 13250 +L29250 13250 +" /> +<path d="M10500 6250 +L11250 6250 +" /> +<path d="M99250 27250 +L98250 27250 +" /> +<path d="M98250 27250 +L98250 28250 +" /> +<path d="M98250 30250 +L99250 30250 +" /> +<path d="M99250 28250 +L98250 28250 +" /> +<path d="M98250 28250 +L98250 29250 +" /> +<path d="M99250 29250 +L98250 29250 +" /> +<path d="M10500 21250 +L11250 21250 +" /> +<path d="M98250 29250 +L98250 30250 +" /> +<path d="M104250 27250 +L105250 27250 +" /> +<path d="M105250 29250 +L104250 29250 +" /> +<path d="M59250 47000 +L60750 47000 +" /> +<path d="M30000 6750 +L29250 6750 +" /> +<path d="M17250 28250 +L18000 28250 +" /> +<path d="M18000 30250 +L18000 28250 +" /> +<path d="M60000 48000 +L59250 48000 +" /> +<path d="M59250 48000 +L59250 47000 +" /> +<path d="M17250 30250 +L18000 30250 +" /> +<path d="M57500 47000 +L59250 47000 +" /> +<path d="M50500 31750 +L51500 31750 +" /> +<path d="M29250 6750 +L29250 7500 +" /> +<path d="M57500 46000 +L60750 46000 +" /> +<path d="M49500 33000 +L49500 31750 +" /> +<path d="M29250 10500 +L29250 13250 +" /> +<path d="M50500 33000 +L50500 31750 +" /> +</g> +<g style="fill:#000000; fill-opacity:0.0; +stroke:#000000; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="60750" y="56900" +textLength="2420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">KP_R0</text> +<path d="M60890 56870 +L60890 56370 +" /> +<path d="M61180 56870 +L60970 56590 +" /> +<path d="M61180 56370 +L60890 56660 +" /> +<path d="M61390 56870 +L61390 56370 +L61580 56370 +L61630 56400 +L61660 56420 +L61680 56470 +L61680 56540 +L61660 56590 +L61630 56610 +L61580 56630 +L61390 56630 +" /> +<path d="M61780 56920 +L62160 56920 +" /> +<path d="M62560 56870 +L62390 56630 +" /> +<path d="M62280 56870 +L62280 56370 +L62470 56370 +L62510 56400 +L62540 56420 +L62560 56470 +L62560 56540 +L62540 56590 +L62510 56610 +L62470 56630 +L62280 56630 +" /> +<path d="M62870 56370 +L62920 56370 +L62970 56400 +L62990 56420 +L63010 56470 +L63040 56560 +L63040 56680 +L63010 56780 +L62990 56820 +L62970 56850 +L62920 56870 +L62870 56870 +L62820 56850 +L62800 56820 +L62780 56780 +L62750 56680 +L62750 56560 +L62780 56470 +L62800 56420 +L62820 56400 +L62870 56370 +" /> +<text x="104250" y="25150" +textLength="3800" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">DSP_SCLK</text> +<path d="M104390 25120 +L104390 24620 +L104510 24620 +L104580 24650 +L104630 24690 +L104660 24740 +L104680 24840 +L104680 24910 +L104660 25000 +L104630 25050 +L104580 25100 +L104510 25120 +L104390 25120 +" /> +<path d="M104870 25100 +L104940 25120 +L105060 25120 +L105110 25100 +L105130 25070 +L105160 25030 +L105160 24980 +L105130 24930 +L105110 24910 +L105060 24880 +L104970 24860 +L104920 24840 +L104890 24810 +L104870 24760 +L104870 24720 +L104890 24670 +L104920 24650 +L104970 24620 +L105080 24620 +L105160 24650 +" /> +<path d="M105370 25120 +L105370 24620 +L105560 24620 +L105610 24650 +L105630 24670 +L105660 24720 +L105660 24790 +L105630 24840 +L105610 24860 +L105560 24880 +L105370 24880 +" /> +<path d="M105750 25170 +L106130 25170 +" /> +<path d="M106230 25100 +L106300 25120 +L106420 25120 +L106470 25100 +L106490 25070 +L106510 25030 +L106510 24980 +L106490 24930 +L106470 24910 +L106420 24880 +L106320 24860 +L106280 24840 +L106250 24810 +L106230 24760 +L106230 24720 +L106250 24670 +L106280 24650 +L106320 24620 +L106440 24620 +L106510 24650 +" /> +<path d="M107010 25070 +L106990 25100 +L106920 25120 +L106870 25120 +L106800 25100 +L106750 25050 +L106730 25000 +L106700 24910 +L106700 24840 +L106730 24740 +L106750 24690 +L106800 24650 +L106870 24620 +L106920 24620 +L106990 24650 +L107010 24670 +" /> +<path d="M107470 25120 +L107230 25120 +L107230 24620 +" /> +<path d="M107630 25120 +L107630 24620 +" /> +<path d="M107920 25120 +L107700 24840 +" /> +<path d="M107920 24620 +L107630 24910 +" /> +<text x="8250" y="15150" +textLength="2230" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">BFPDI</text> +<path d="M6330 14860 +L6410 14880 +L6430 14910 +L6450 14950 +L6450 15030 +L6430 15070 +L6410 15100 +L6360 15120 +L6170 15120 +L6170 14620 +L6330 14620 +L6380 14650 +L6410 14670 +L6430 14720 +L6430 14760 +L6410 14810 +L6380 14840 +L6330 14860 +L6170 14860 +" /> +<path d="M6830 14860 +L6670 14860 +" /> +<path d="M6670 15120 +L6670 14620 +L6910 14620 +" /> +<path d="M7100 15120 +L7100 14620 +L7290 14620 +L7330 14650 +L7360 14670 +L7380 14720 +L7380 14790 +L7360 14840 +L7330 14860 +L7290 14880 +L7100 14880 +" /> +<path d="M7600 15120 +L7600 14620 +L7720 14620 +L7790 14650 +L7830 14690 +L7860 14740 +L7880 14840 +L7880 14910 +L7860 15000 +L7830 15050 +L7790 15100 +L7720 15120 +L7600 15120 +" /> +<path d="M8100 15120 +L8100 14620 +" /> +<text x="43500" y="53900" +textLength="2420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">KP_C0</text> +<path d="M41230 53870 +L41230 53370 +" /> +<path d="M41510 53870 +L41300 53590 +" /> +<path d="M41510 53370 +L41230 53660 +" /> +<path d="M41730 53870 +L41730 53370 +L41920 53370 +L41970 53400 +L41990 53420 +L42010 53470 +L42010 53540 +L41990 53590 +L41970 53610 +L41920 53630 +L41730 53630 +" /> +<path d="M42110 53920 +L42490 53920 +" /> +<path d="M42890 53820 +L42870 53850 +L42800 53870 +L42750 53870 +L42680 53850 +L42630 53800 +L42610 53750 +L42580 53660 +L42580 53590 +L42610 53490 +L42630 53440 +L42680 53400 +L42750 53370 +L42800 53370 +L42870 53400 +L42890 53420 +" /> +<path d="M43200 53370 +L43250 53370 +L43300 53400 +L43320 53420 +L43350 53470 +L43370 53560 +L43370 53680 +L43350 53780 +L43320 53820 +L43300 53850 +L43250 53870 +L43200 53870 +L43160 53850 +L43130 53820 +L43110 53780 +L43080 53680 +L43080 53560 +L43110 53470 +L43130 53420 +L43160 53400 +L43200 53370 +" /> +<text x="17250" y="32150" +textLength="1180" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">D+</text> +<path d="M17390 32120 +L17390 31620 +L17510 31620 +L17580 31650 +L17630 31690 +L17660 31740 +L17680 31840 +L17680 31910 +L17660 32000 +L17630 32050 +L17580 32100 +L17510 32120 +L17390 32120 +" /> +<path d="M17890 31930 +L18280 31930 +" /> +<path d="M18080 32120 +L18080 31740 +" /> +<text x="60750" y="59900" +textLength="2420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">KP_R3</text> +<path d="M60890 59870 +L60890 59370 +" /> +<path d="M61180 59870 +L60970 59590 +" /> +<path d="M61180 59370 +L60890 59660 +" /> +<path d="M61390 59870 +L61390 59370 +L61580 59370 +L61630 59400 +L61660 59420 +L61680 59470 +L61680 59540 +L61660 59590 +L61630 59610 +L61580 59630 +L61390 59630 +" /> +<path d="M61780 59920 +L62160 59920 +" /> +<path d="M62560 59870 +L62390 59630 +" /> +<path d="M62280 59870 +L62280 59370 +L62470 59370 +L62510 59400 +L62540 59420 +L62560 59470 +L62560 59540 +L62540 59590 +L62510 59610 +L62470 59630 +L62280 59630 +" /> +<path d="M62730 59370 +L63040 59370 +L62870 59560 +L62940 59560 +L62990 59590 +L63010 59610 +L63040 59660 +L63040 59780 +L63010 59820 +L62990 59850 +L62940 59870 +L62800 59870 +L62750 59850 +L62730 59820 +" /> +<text x="60750" y="58900" +textLength="2420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">KP_R2</text> +<path d="M60890 58870 +L60890 58370 +" /> +<path d="M61180 58870 +L60970 58590 +" /> +<path d="M61180 58370 +L60890 58660 +" /> +<path d="M61390 58870 +L61390 58370 +L61580 58370 +L61630 58400 +L61660 58420 +L61680 58470 +L61680 58540 +L61660 58590 +L61630 58610 +L61580 58630 +L61390 58630 +" /> +<path d="M61780 58920 +L62160 58920 +" /> +<path d="M62560 58870 +L62390 58630 +" /> +<path d="M62280 58870 +L62280 58370 +L62470 58370 +L62510 58400 +L62540 58420 +L62560 58470 +L62560 58540 +L62540 58590 +L62510 58610 +L62470 58630 +L62280 58630 +" /> +<path d="M62750 58420 +L62780 58400 +L62820 58370 +L62940 58370 +L62990 58400 +L63010 58420 +L63040 58470 +L63040 58510 +L63010 58590 +L62730 58870 +L63040 58870 +" /> +<text x="60750" y="57900" +textLength="2420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">KP_R1</text> +<path d="M60890 57870 +L60890 57370 +" /> +<path d="M61180 57870 +L60970 57590 +" /> +<path d="M61180 57370 +L60890 57660 +" /> +<path d="M61390 57870 +L61390 57370 +L61580 57370 +L61630 57400 +L61660 57420 +L61680 57470 +L61680 57540 +L61660 57590 +L61630 57610 +L61580 57630 +L61390 57630 +" /> +<path d="M61780 57920 +L62160 57920 +" /> +<path d="M62560 57870 +L62390 57630 +" /> +<path d="M62280 57870 +L62280 57370 +L62470 57370 +L62510 57400 +L62540 57420 +L62560 57470 +L62560 57540 +L62540 57590 +L62510 57610 +L62470 57630 +L62280 57630 +" /> +<path d="M63040 57870 +L62750 57870 +" /> +<path d="M62890 57870 +L62890 57370 +L62850 57440 +L62800 57490 +L62750 57510 +" /> +<text x="64250" y="54900" +textLength="1630" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">SWO</text> +<path d="M64370 54850 +L64440 54870 +L64560 54870 +L64610 54850 +L64630 54820 +L64660 54780 +L64660 54730 +L64630 54680 +L64610 54660 +L64560 54630 +L64470 54610 +L64420 54590 +L64390 54560 +L64370 54510 +L64370 54470 +L64390 54420 +L64420 54400 +L64470 54370 +L64580 54370 +L64660 54400 +" /> +<path d="M64820 54370 +L64940 54870 +L65040 54510 +L65130 54870 +L65250 54370 +" /> +<path d="M65540 54370 +L65630 54370 +L65680 54400 +L65730 54440 +L65750 54540 +L65750 54700 +L65730 54800 +L65680 54850 +L65630 54870 +L65540 54870 +L65490 54850 +L65440 54800 +L65420 54700 +L65420 54540 +L65440 54440 +L65490 54400 +L65540 54370 +" /> +<text x="64250" y="47900" +textLength="1490" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">VDD</text> +<path d="M64320 47370 +L64490 47870 +L64660 47370 +" /> +<path d="M64820 47870 +L64820 47370 +L64940 47370 +L65010 47400 +L65060 47440 +L65080 47490 +L65110 47590 +L65110 47660 +L65080 47750 +L65060 47800 +L65010 47850 +L64940 47870 +L64820 47870 +" /> +<path d="M65320 47870 +L65320 47370 +L65440 47370 +L65510 47400 +L65560 47440 +L65580 47490 +L65610 47590 +L65610 47660 +L65580 47750 +L65560 47800 +L65510 47850 +L65440 47870 +L65320 47870 +" /> +<text x="60750" y="51900" +textLength="2420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">KP_C4</text> +<path d="M60890 51870 +L60890 51370 +" /> +<path d="M61180 51870 +L60970 51590 +" /> +<path d="M61180 51370 +L60890 51660 +" /> +<path d="M61390 51870 +L61390 51370 +L61580 51370 +L61630 51400 +L61660 51420 +L61680 51470 +L61680 51540 +L61660 51590 +L61630 51610 +L61580 51630 +L61390 51630 +" /> +<path d="M61780 51920 +L62160 51920 +" /> +<path d="M62560 51820 +L62540 51850 +L62470 51870 +L62420 51870 +L62350 51850 +L62300 51800 +L62280 51750 +L62250 51660 +L62250 51590 +L62280 51490 +L62300 51440 +L62350 51400 +L62420 51370 +L62470 51370 +L62540 51400 +L62560 51420 +" /> +<path d="M62990 51540 +L62990 51870 +" /> +<path d="M62870 51350 +L62750 51700 +L63060 51700 +" /> +<text x="60750" y="55900" +textLength="2420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">KP_C3</text> +<path d="M60890 55870 +L60890 55370 +" /> +<path d="M61180 55870 +L60970 55590 +" /> +<path d="M61180 55370 +L60890 55660 +" /> +<path d="M61390 55870 +L61390 55370 +L61580 55370 +L61630 55400 +L61660 55420 +L61680 55470 +L61680 55540 +L61660 55590 +L61630 55610 +L61580 55630 +L61390 55630 +" /> +<path d="M61780 55920 +L62160 55920 +" /> +<path d="M62560 55820 +L62540 55850 +L62470 55870 +L62420 55870 +L62350 55850 +L62300 55800 +L62280 55750 +L62250 55660 +L62250 55590 +L62280 55490 +L62300 55440 +L62350 55400 +L62420 55370 +L62470 55370 +L62540 55400 +L62560 55420 +" /> +<path d="M62730 55370 +L63040 55370 +L62870 55560 +L62940 55560 +L62990 55590 +L63010 55610 +L63040 55660 +L63040 55780 +L63010 55820 +L62990 55850 +L62940 55870 +L62800 55870 +L62750 55850 +L62730 55820 +" /> +<text x="86000" y="39150" +textLength="2420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">KP_C3</text> +<path d="M86140 39120 +L86140 38620 +" /> +<path d="M86430 39120 +L86220 38840 +" /> +<path d="M86430 38620 +L86140 38910 +" /> +<path d="M86640 39120 +L86640 38620 +L86830 38620 +L86880 38650 +L86910 38670 +L86930 38720 +L86930 38790 +L86910 38840 +L86880 38860 +L86830 38880 +L86640 38880 +" /> +<path d="M87030 39170 +L87410 39170 +" /> +<path d="M87810 39070 +L87790 39100 +L87720 39120 +L87670 39120 +L87600 39100 +L87550 39050 +L87530 39000 +L87500 38910 +L87500 38840 +L87530 38740 +L87550 38690 +L87600 38650 +L87670 38620 +L87720 38620 +L87790 38650 +L87810 38670 +" /> +<path d="M87980 38620 +L88290 38620 +L88120 38810 +L88190 38810 +L88240 38840 +L88260 38860 +L88290 38910 +L88290 39030 +L88260 39070 +L88240 39100 +L88190 39120 +L88050 39120 +L88000 39100 +L87980 39070 +" /> +<text x="43500" y="52900" +textLength="2420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">KP_C1</text> +<path d="M41230 52870 +L41230 52370 +" /> +<path d="M41510 52870 +L41300 52590 +" /> +<path d="M41510 52370 +L41230 52660 +" /> +<path d="M41730 52870 +L41730 52370 +L41920 52370 +L41970 52400 +L41990 52420 +L42010 52470 +L42010 52540 +L41990 52590 +L41970 52610 +L41920 52630 +L41730 52630 +" /> +<path d="M42110 52920 +L42490 52920 +" /> +<path d="M42890 52820 +L42870 52850 +L42800 52870 +L42750 52870 +L42680 52850 +L42630 52800 +L42610 52750 +L42580 52660 +L42580 52590 +L42610 52490 +L42630 52440 +L42680 52400 +L42750 52370 +L42800 52370 +L42870 52400 +L42890 52420 +" /> +<path d="M43370 52870 +L43080 52870 +" /> +<path d="M43230 52870 +L43230 52370 +L43180 52440 +L43130 52490 +L43080 52510 +" /> +<text x="82250" y="39150" +textLength="2420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">KP_C2</text> +<path d="M82390 39120 +L82390 38620 +" /> +<path d="M82680 39120 +L82470 38840 +" /> +<path d="M82680 38620 +L82390 38910 +" /> +<path d="M82890 39120 +L82890 38620 +L83080 38620 +L83130 38650 +L83160 38670 +L83180 38720 +L83180 38790 +L83160 38840 +L83130 38860 +L83080 38880 +L82890 38880 +" /> +<path d="M83280 39170 +L83660 39170 +" /> +<path d="M84060 39070 +L84040 39100 +L83970 39120 +L83920 39120 +L83850 39100 +L83800 39050 +L83780 39000 +L83750 38910 +L83750 38840 +L83780 38740 +L83800 38690 +L83850 38650 +L83920 38620 +L83970 38620 +L84040 38650 +L84060 38670 +" /> +<path d="M84250 38670 +L84280 38650 +L84320 38620 +L84440 38620 +L84490 38650 +L84510 38670 +L84540 38720 +L84540 38760 +L84510 38840 +L84230 39120 +L84540 39120 +" /> +<text x="64250" y="50150" +textLength="2510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">SWCLK</text> +<path d="M64370 50100 +L64440 50120 +L64560 50120 +L64610 50100 +L64630 50070 +L64660 50030 +L64660 49980 +L64630 49930 +L64610 49910 +L64560 49880 +L64470 49860 +L64420 49840 +L64390 49810 +L64370 49760 +L64370 49720 +L64390 49670 +L64420 49650 +L64470 49620 +L64580 49620 +L64660 49650 +" /> +<path d="M64820 49620 +L64940 50120 +L65040 49760 +L65130 50120 +L65250 49620 +" /> +<path d="M65730 50070 +L65700 50100 +L65630 50120 +L65580 50120 +L65510 50100 +L65470 50050 +L65440 50000 +L65420 49910 +L65420 49840 +L65440 49740 +L65470 49690 +L65510 49650 +L65580 49620 +L65630 49620 +L65700 49650 +L65730 49670 +" /> +<path d="M66180 50120 +L65940 50120 +L65940 49620 +" /> +<path d="M66350 50120 +L66350 49620 +" /> +<path d="M66630 50120 +L66420 49840 +" /> +<path d="M66630 49620 +L66350 49910 +" /> +<text x="64250" y="49400" +textLength="2370" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">SWDIO</text> +<path d="M64370 49350 +L64440 49370 +L64560 49370 +L64610 49350 +L64630 49320 +L64660 49280 +L64660 49230 +L64630 49180 +L64610 49160 +L64560 49130 +L64470 49110 +L64420 49090 +L64390 49060 +L64370 49010 +L64370 48970 +L64390 48920 +L64420 48900 +L64470 48870 +L64580 48870 +L64660 48900 +" /> +<path d="M64820 48870 +L64940 49370 +L65040 49010 +L65130 49370 +L65250 48870 +" /> +<path d="M65440 49370 +L65440 48870 +L65560 48870 +L65630 48900 +L65680 48940 +L65700 48990 +L65730 49090 +L65730 49160 +L65700 49250 +L65680 49300 +L65630 49350 +L65560 49370 +L65440 49370 +" /> +<path d="M65940 49370 +L65940 48870 +" /> +<path d="M66280 48870 +L66370 48870 +L66420 48900 +L66470 48940 +L66490 49040 +L66490 49200 +L66470 49300 +L66420 49350 +L66370 49370 +L66280 49370 +L66230 49350 +L66180 49300 +L66160 49200 +L66160 49040 +L66180 48940 +L66230 48900 +L66280 48870 +" /> +<text x="43500" y="51900" +textLength="2420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">KP_C2</text> +<path d="M41230 51870 +L41230 51370 +" /> +<path d="M41510 51870 +L41300 51590 +" /> +<path d="M41510 51370 +L41230 51660 +" /> +<path d="M41730 51870 +L41730 51370 +L41920 51370 +L41970 51400 +L41990 51420 +L42010 51470 +L42010 51540 +L41990 51590 +L41970 51610 +L41920 51630 +L41730 51630 +" /> +<path d="M42110 51920 +L42490 51920 +" /> +<path d="M42890 51820 +L42870 51850 +L42800 51870 +L42750 51870 +L42680 51850 +L42630 51800 +L42610 51750 +L42580 51660 +L42580 51590 +L42610 51490 +L42630 51440 +L42680 51400 +L42750 51370 +L42800 51370 +L42870 51400 +L42890 51420 +" /> +<path d="M43080 51420 +L43110 51400 +L43160 51370 +L43270 51370 +L43320 51400 +L43350 51420 +L43370 51470 +L43370 51510 +L43350 51590 +L43060 51870 +L43370 51870 +" /> +<text x="85500" y="28650" +textLength="1490" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">VDD</text> +<path d="M85570 28120 +L85740 28620 +L85910 28120 +" /> +<path d="M86070 28620 +L86070 28120 +L86190 28120 +L86260 28150 +L86310 28190 +L86330 28240 +L86360 28340 +L86360 28410 +L86330 28500 +L86310 28550 +L86260 28600 +L86190 28620 +L86070 28620 +" /> +<path d="M86570 28620 +L86570 28120 +L86690 28120 +L86760 28150 +L86810 28190 +L86830 28240 +L86860 28340 +L86860 28410 +L86830 28500 +L86810 28550 +L86760 28600 +L86690 28620 +L86570 28620 +" /> +<text x="104250" y="30150" +textLength="2920" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">DSP_DC</text> +<path d="M104390 30120 +L104390 29620 +L104510 29620 +L104580 29650 +L104630 29690 +L104660 29740 +L104680 29840 +L104680 29910 +L104660 30000 +L104630 30050 +L104580 30100 +L104510 30120 +L104390 30120 +" /> +<path d="M104870 30100 +L104940 30120 +L105060 30120 +L105110 30100 +L105130 30070 +L105160 30030 +L105160 29980 +L105130 29930 +L105110 29910 +L105060 29880 +L104970 29860 +L104920 29840 +L104890 29810 +L104870 29760 +L104870 29720 +L104890 29670 +L104920 29650 +L104970 29620 +L105080 29620 +L105160 29650 +" /> +<path d="M105370 30120 +L105370 29620 +L105560 29620 +L105610 29650 +L105630 29670 +L105660 29720 +L105660 29790 +L105630 29840 +L105610 29860 +L105560 29880 +L105370 29880 +" /> +<path d="M105750 30170 +L106130 30170 +" /> +<path d="M106250 30120 +L106250 29620 +L106370 29620 +L106440 29650 +L106490 29690 +L106510 29740 +L106540 29840 +L106540 29910 +L106510 30000 +L106490 30050 +L106440 30100 +L106370 30120 +L106250 30120 +" /> +<path d="M107040 30070 +L107010 30100 +L106940 30120 +L106890 30120 +L106820 30100 +L106780 30050 +L106750 30000 +L106730 29910 +L106730 29840 +L106750 29740 +L106780 29690 +L106820 29650 +L106890 29620 +L106940 29620 +L107010 29650 +L107040 29670 +" /> +<text x="99250" y="31150" +textLength="3270" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">~DSP_RST</text> +<path d="M96000 30480 +L96500 30480 +" /> +<path d="M96120 31120 +L96120 30620 +L96240 30620 +L96310 30650 +L96360 30690 +L96380 30740 +L96410 30840 +L96410 30910 +L96380 31000 +L96360 31050 +L96310 31100 +L96240 31120 +L96120 31120 +" /> +<path d="M96500 30480 +L96980 30480 +" /> +<path d="M96600 31100 +L96670 31120 +L96790 31120 +L96830 31100 +L96860 31070 +L96880 31030 +L96880 30980 +L96860 30930 +L96830 30910 +L96790 30880 +L96690 30860 +L96640 30840 +L96620 30810 +L96600 30760 +L96600 30720 +L96620 30670 +L96640 30650 +L96690 30620 +L96810 30620 +L96880 30650 +" /> +<path d="M96980 30480 +L97480 30480 +" /> +<path d="M97100 31120 +L97100 30620 +L97290 30620 +L97330 30650 +L97360 30670 +L97380 30720 +L97380 30790 +L97360 30840 +L97330 30860 +L97290 30880 +L97100 30880 +" /> +<path d="M97480 30480 +L97860 30480 +" /> +<path d="M97480 31170 +L97860 31170 +" /> +<path d="M97860 30480 +L98360 30480 +" /> +<path d="M98260 31120 +L98100 30880 +" /> +<path d="M97980 31120 +L97980 30620 +L98170 30620 +L98220 30650 +L98240 30670 +L98260 30720 +L98260 30790 +L98240 30840 +L98220 30860 +L98170 30880 +L97980 30880 +" /> +<path d="M98360 30480 +L98830 30480 +" /> +<path d="M98450 31100 +L98520 31120 +L98640 31120 +L98690 31100 +L98720 31070 +L98740 31030 +L98740 30980 +L98720 30930 +L98690 30910 +L98640 30880 +L98550 30860 +L98500 30840 +L98480 30810 +L98450 30760 +L98450 30720 +L98480 30670 +L98500 30650 +L98550 30620 +L98670 30620 +L98740 30650 +" /> +<path d="M98830 30480 +L99220 30480 +" /> +<path d="M98880 30620 +L99170 30620 +" /> +<path d="M99020 31120 +L99020 30620 +" /> +<text x="104250" y="31150" +textLength="2890" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">DSP_CS</text> +<path d="M104390 31120 +L104390 30620 +L104510 30620 +L104580 30650 +L104630 30690 +L104660 30740 +L104680 30840 +L104680 30910 +L104660 31000 +L104630 31050 +L104580 31100 +L104510 31120 +L104390 31120 +" /> +<path d="M104870 31100 +L104940 31120 +L105060 31120 +L105110 31100 +L105130 31070 +L105160 31030 +L105160 30980 +L105130 30930 +L105110 30910 +L105060 30880 +L104970 30860 +L104920 30840 +L104890 30810 +L104870 30760 +L104870 30720 +L104890 30670 +L104920 30650 +L104970 30620 +L105080 30620 +L105160 30650 +" /> +<path d="M105370 31120 +L105370 30620 +L105560 30620 +L105610 30650 +L105630 30670 +L105660 30720 +L105660 30790 +L105630 30840 +L105610 30860 +L105560 30880 +L105370 30880 +" /> +<path d="M105750 31170 +L106130 31170 +" /> +<path d="M106540 31070 +L106510 31100 +L106440 31120 +L106390 31120 +L106320 31100 +L106280 31050 +L106250 31000 +L106230 30910 +L106230 30840 +L106250 30740 +L106280 30690 +L106320 30650 +L106390 30620 +L106440 30620 +L106510 30650 +L106540 30670 +" /> +<path d="M106730 31100 +L106800 31120 +L106920 31120 +L106970 31100 +L106990 31070 +L107010 31030 +L107010 30980 +L106990 30930 +L106970 30910 +L106920 30880 +L106820 30860 +L106780 30840 +L106750 30810 +L106730 30760 +L106730 30720 +L106750 30670 +L106780 30650 +L106820 30620 +L106940 30620 +L107010 30650 +" /> +<text x="91000" y="13150" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">+5V</text> +<path d="M91140 12930 +L91530 12930 +" /> +<path d="M91330 13120 +L91330 12740 +" /> +<path d="M92000 12620 +L91760 12620 +L91740 12860 +L91760 12840 +L91810 12810 +L91930 12810 +L91980 12840 +L92000 12860 +L92030 12910 +L92030 13030 +L92000 13070 +L91980 13100 +L91930 13120 +L91810 13120 +L91760 13100 +L91740 13070 +" /> +<path d="M92170 12620 +L92330 13120 +L92500 12620 +" /> +<text x="57500" y="38900" +textLength="2920" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">DSP_DC</text> +<path d="M57640 38870 +L57640 38370 +L57760 38370 +L57830 38400 +L57880 38440 +L57910 38490 +L57930 38590 +L57930 38660 +L57910 38750 +L57880 38800 +L57830 38850 +L57760 38870 +L57640 38870 +" /> +<path d="M58120 38850 +L58190 38870 +L58310 38870 +L58360 38850 +L58380 38820 +L58410 38780 +L58410 38730 +L58380 38680 +L58360 38660 +L58310 38630 +L58220 38610 +L58170 38590 +L58140 38560 +L58120 38510 +L58120 38470 +L58140 38420 +L58170 38400 +L58220 38370 +L58330 38370 +L58410 38400 +" /> +<path d="M58620 38870 +L58620 38370 +L58810 38370 +L58860 38400 +L58880 38420 +L58910 38470 +L58910 38540 +L58880 38590 +L58860 38610 +L58810 38630 +L58620 38630 +" /> +<path d="M59000 38920 +L59380 38920 +" /> +<path d="M59500 38870 +L59500 38370 +L59620 38370 +L59690 38400 +L59740 38440 +L59760 38490 +L59790 38590 +L59790 38660 +L59760 38750 +L59740 38800 +L59690 38850 +L59620 38870 +L59500 38870 +" /> +<path d="M60290 38820 +L60260 38850 +L60190 38870 +L60140 38870 +L60070 38850 +L60030 38800 +L60000 38750 +L59980 38660 +L59980 38590 +L60000 38490 +L60030 38440 +L60070 38400 +L60140 38370 +L60190 38370 +L60260 38400 +L60290 38420 +" /> +<text x="74500" y="14150" +textLength="3660" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">+18V_FLT</text> +<path d="M74640 13930 +L75030 13930 +" /> +<path d="M74830 14120 +L74830 13740 +" /> +<path d="M75530 14120 +L75240 14120 +" /> +<path d="M75380 14120 +L75380 13620 +L75330 13690 +L75290 13740 +L75240 13760 +" /> +<path d="M75810 13840 +L75760 13810 +L75740 13790 +L75720 13740 +L75720 13720 +L75740 13670 +L75760 13650 +L75810 13620 +L75910 13620 +L75950 13650 +L75980 13670 +L76000 13720 +L76000 13740 +L75980 13790 +L75950 13810 +L75910 13840 +L75810 13840 +L75760 13860 +L75740 13880 +L75720 13930 +L75720 14030 +L75740 14070 +L75760 14100 +L75810 14120 +L75910 14120 +L75950 14100 +L75980 14070 +L76000 14030 +L76000 13930 +L75980 13880 +L75950 13860 +L75910 13840 +" /> +<path d="M76140 13620 +L76310 14120 +L76480 13620 +" /> +<path d="M76530 14170 +L76910 14170 +" /> +<path d="M77190 13860 +L77030 13860 +" /> +<path d="M77030 14120 +L77030 13620 +L77260 13620 +" /> +<path d="M77690 14120 +L77450 14120 +L77450 13620 +" /> +<path d="M77790 13620 +L78070 13620 +" /> +<path d="M77930 14120 +L77930 13620 +" /> +<text x="74750" y="39150" +textLength="2420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">KP_C0</text> +<path d="M74890 39120 +L74890 38620 +" /> +<path d="M75180 39120 +L74970 38840 +" /> +<path d="M75180 38620 +L74890 38910 +" /> +<path d="M75390 39120 +L75390 38620 +L75580 38620 +L75630 38650 +L75660 38670 +L75680 38720 +L75680 38790 +L75660 38840 +L75630 38860 +L75580 38880 +L75390 38880 +" /> +<path d="M75780 39170 +L76160 39170 +" /> +<path d="M76560 39070 +L76540 39100 +L76470 39120 +L76420 39120 +L76350 39100 +L76300 39050 +L76280 39000 +L76250 38910 +L76250 38840 +L76280 38740 +L76300 38690 +L76350 38650 +L76420 38620 +L76470 38620 +L76540 38650 +L76560 38670 +" /> +<path d="M76870 38620 +L76920 38620 +L76970 38650 +L76990 38670 +L77010 38720 +L77040 38810 +L77040 38930 +L77010 39030 +L76990 39070 +L76970 39100 +L76920 39120 +L76870 39120 +L76820 39100 +L76800 39070 +L76780 39030 +L76750 38930 +L76750 38810 +L76780 38720 +L76800 38670 +L76820 38650 +L76870 38620 +" /> +<text x="57500" y="37900" +textLength="3270" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">~DSP_RST</text> +<path d="M57530 37230 +L58030 37230 +" /> +<path d="M57640 37870 +L57640 37370 +L57760 37370 +L57830 37400 +L57880 37440 +L57910 37490 +L57930 37590 +L57930 37660 +L57910 37750 +L57880 37800 +L57830 37850 +L57760 37870 +L57640 37870 +" /> +<path d="M58030 37230 +L58500 37230 +" /> +<path d="M58120 37850 +L58190 37870 +L58310 37870 +L58360 37850 +L58380 37820 +L58410 37780 +L58410 37730 +L58380 37680 +L58360 37660 +L58310 37630 +L58220 37610 +L58170 37590 +L58140 37560 +L58120 37510 +L58120 37470 +L58140 37420 +L58170 37400 +L58220 37370 +L58330 37370 +L58410 37400 +" /> +<path d="M58500 37230 +L59000 37230 +" /> +<path d="M58620 37870 +L58620 37370 +L58810 37370 +L58860 37400 +L58880 37420 +L58910 37470 +L58910 37540 +L58880 37590 +L58860 37610 +L58810 37630 +L58620 37630 +" /> +<path d="M59000 37230 +L59380 37230 +" /> +<path d="M59000 37920 +L59380 37920 +" /> +<path d="M59380 37230 +L59880 37230 +" /> +<path d="M59790 37870 +L59620 37630 +" /> +<path d="M59500 37870 +L59500 37370 +L59690 37370 +L59740 37400 +L59760 37420 +L59790 37470 +L59790 37540 +L59760 37590 +L59740 37610 +L59690 37630 +L59500 37630 +" /> +<path d="M59880 37230 +L60360 37230 +" /> +<path d="M59980 37850 +L60050 37870 +L60170 37870 +L60220 37850 +L60240 37820 +L60260 37780 +L60260 37730 +L60240 37680 +L60220 37660 +L60170 37630 +L60070 37610 +L60030 37590 +L60000 37560 +L59980 37510 +L59980 37470 +L60000 37420 +L60030 37400 +L60070 37370 +L60190 37370 +L60260 37400 +" /> +<path d="M60360 37230 +L60740 37230 +" /> +<path d="M60410 37370 +L60690 37370 +" /> +<path d="M60550 37870 +L60550 37370 +" /> +<text x="57500" y="36900" +textLength="2890" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">DSP_CS</text> +<path d="M57640 36870 +L57640 36370 +L57760 36370 +L57830 36400 +L57880 36440 +L57910 36490 +L57930 36590 +L57930 36660 +L57910 36750 +L57880 36800 +L57830 36850 +L57760 36870 +L57640 36870 +" /> +<path d="M58120 36850 +L58190 36870 +L58310 36870 +L58360 36850 +L58380 36820 +L58410 36780 +L58410 36730 +L58380 36680 +L58360 36660 +L58310 36630 +L58220 36610 +L58170 36590 +L58140 36560 +L58120 36510 +L58120 36470 +L58140 36420 +L58170 36400 +L58220 36370 +L58330 36370 +L58410 36400 +" /> +<path d="M58620 36870 +L58620 36370 +L58810 36370 +L58860 36400 +L58880 36420 +L58910 36470 +L58910 36540 +L58880 36590 +L58860 36610 +L58810 36630 +L58620 36630 +" /> +<path d="M59000 36920 +L59380 36920 +" /> +<path d="M59790 36820 +L59760 36850 +L59690 36870 +L59640 36870 +L59570 36850 +L59530 36800 +L59500 36750 +L59480 36660 +L59480 36590 +L59500 36490 +L59530 36440 +L59570 36400 +L59640 36370 +L59690 36370 +L59760 36400 +L59790 36420 +" /> +<path d="M59980 36850 +L60050 36870 +L60170 36870 +L60220 36850 +L60240 36820 +L60260 36780 +L60260 36730 +L60240 36680 +L60220 36660 +L60170 36630 +L60070 36610 +L60030 36590 +L60000 36560 +L59980 36510 +L59980 36470 +L60000 36420 +L60030 36400 +L60070 36370 +L60190 36370 +L60260 36400 +" /> +<text x="99250" y="26150" +textLength="2660" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">DSP_DI</text> +<path d="M96740 26120 +L96740 25620 +L96860 25620 +L96930 25650 +L96980 25690 +L97000 25740 +L97020 25840 +L97020 25910 +L97000 26000 +L96980 26050 +L96930 26100 +L96860 26120 +L96740 26120 +" /> +<path d="M97220 26100 +L97290 26120 +L97410 26120 +L97450 26100 +L97480 26070 +L97500 26030 +L97500 25980 +L97480 25930 +L97450 25910 +L97410 25880 +L97310 25860 +L97260 25840 +L97240 25810 +L97220 25760 +L97220 25720 +L97240 25670 +L97260 25650 +L97310 25620 +L97430 25620 +L97500 25650 +" /> +<path d="M97720 26120 +L97720 25620 +L97910 25620 +L97950 25650 +L97980 25670 +L98000 25720 +L98000 25790 +L97980 25840 +L97950 25860 +L97910 25880 +L97720 25880 +" /> +<path d="M98100 26170 +L98480 26170 +" /> +<path d="M98600 26120 +L98600 25620 +L98720 25620 +L98790 25650 +L98830 25690 +L98860 25740 +L98880 25840 +L98880 25910 +L98860 26000 +L98830 26050 +L98790 26100 +L98720 26120 +L98600 26120 +" /> +<path d="M99100 26120 +L99100 25620 +" /> +<text x="11250" y="21150" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">+5V</text> +<path d="M11390 20930 +L11780 20930 +" /> +<path d="M11580 21120 +L11580 20740 +" /> +<path d="M12250 20620 +L12010 20620 +L11990 20860 +L12010 20840 +L12060 20810 +L12180 20810 +L12230 20840 +L12250 20860 +L12280 20910 +L12280 21030 +L12250 21070 +L12230 21100 +L12180 21120 +L12060 21120 +L12010 21100 +L11990 21070 +" /> +<path d="M12420 20620 +L12580 21120 +L12750 20620 +" /> +<text x="13250" y="10150" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">+5V</text> +<path d="M11810 9930 +L12190 9930 +" /> +<path d="M12000 10120 +L12000 9740 +" /> +<path d="M12670 9620 +L12430 9620 +L12410 9860 +L12430 9840 +L12480 9810 +L12600 9810 +L12640 9840 +L12670 9860 +L12690 9910 +L12690 10030 +L12670 10070 +L12640 10100 +L12600 10120 +L12480 10120 +L12430 10100 +L12410 10070 +" /> +<path d="M12830 9620 +L13000 10120 +L13170 9620 +" /> +<text x="85500" y="33650" +textLength="1630" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">SWO</text> +<path d="M85620 33600 +L85690 33620 +L85810 33620 +L85860 33600 +L85880 33570 +L85910 33530 +L85910 33480 +L85880 33430 +L85860 33410 +L85810 33380 +L85720 33360 +L85670 33340 +L85640 33310 +L85620 33260 +L85620 33220 +L85640 33170 +L85670 33150 +L85720 33120 +L85830 33120 +L85910 33150 +" /> +<path d="M86070 33120 +L86190 33620 +L86290 33260 +L86380 33620 +L86500 33120 +" /> +<path d="M86790 33120 +L86880 33120 +L86930 33150 +L86980 33190 +L87000 33290 +L87000 33450 +L86980 33550 +L86930 33600 +L86880 33620 +L86790 33620 +L86740 33600 +L86690 33550 +L86670 33450 +L86670 33290 +L86690 33190 +L86740 33150 +L86790 33120 +" /> +<text x="85500" y="32650" +textLength="1940" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">NRST</text> +<path d="M85640 32620 +L85640 32120 +L85930 32620 +L85930 32120 +" /> +<path d="M86450 32620 +L86290 32380 +" /> +<path d="M86170 32620 +L86170 32120 +L86360 32120 +L86410 32150 +L86430 32170 +L86450 32220 +L86450 32290 +L86430 32340 +L86410 32360 +L86360 32380 +L86170 32380 +" /> +<path d="M86640 32600 +L86720 32620 +L86830 32620 +L86880 32600 +L86910 32570 +L86930 32530 +L86930 32480 +L86910 32430 +L86880 32410 +L86830 32380 +L86740 32360 +L86690 32340 +L86670 32310 +L86640 32260 +L86640 32220 +L86670 32170 +L86690 32150 +L86740 32120 +L86860 32120 +L86930 32150 +" /> +<path d="M87070 32120 +L87360 32120 +" /> +<path d="M87220 32620 +L87220 32120 +" /> +<text x="38750" y="34900" +textLength="1940" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">NRST</text> +<path d="M38890 34870 +L38890 34370 +L39180 34870 +L39180 34370 +" /> +<path d="M39700 34870 +L39540 34630 +" /> +<path d="M39420 34870 +L39420 34370 +L39610 34370 +L39660 34400 +L39680 34420 +L39700 34470 +L39700 34540 +L39680 34590 +L39660 34610 +L39610 34630 +L39420 34630 +" /> +<path d="M39890 34850 +L39970 34870 +L40080 34870 +L40130 34850 +L40160 34820 +L40180 34780 +L40180 34730 +L40160 34680 +L40130 34660 +L40080 34630 +L39990 34610 +L39940 34590 +L39920 34560 +L39890 34510 +L39890 34470 +L39920 34420 +L39940 34400 +L39990 34370 +L40110 34370 +L40180 34400 +" /> +<path d="M40320 34370 +L40610 34370 +" /> +<path d="M40470 34870 +L40470 34370 +" /> +<text x="85500" y="29650" +textLength="2510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">SWCLK</text> +<path d="M85620 29600 +L85690 29620 +L85810 29620 +L85860 29600 +L85880 29570 +L85910 29530 +L85910 29480 +L85880 29430 +L85860 29410 +L85810 29380 +L85720 29360 +L85670 29340 +L85640 29310 +L85620 29260 +L85620 29220 +L85640 29170 +L85670 29150 +L85720 29120 +L85830 29120 +L85910 29150 +" /> +<path d="M86070 29120 +L86190 29620 +L86290 29260 +L86380 29620 +L86500 29120 +" /> +<path d="M86980 29570 +L86950 29600 +L86880 29620 +L86830 29620 +L86760 29600 +L86720 29550 +L86690 29500 +L86670 29410 +L86670 29340 +L86690 29240 +L86720 29190 +L86760 29150 +L86830 29120 +L86880 29120 +L86950 29150 +L86980 29170 +" /> +<path d="M87430 29620 +L87190 29620 +L87190 29120 +" /> +<path d="M87600 29620 +L87600 29120 +" /> +<path d="M87880 29620 +L87670 29340 +" /> +<path d="M87880 29120 +L87600 29410 +" /> +<text x="85500" y="31650" +textLength="2370" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">SWDIO</text> +<path d="M85620 31600 +L85690 31620 +L85810 31620 +L85860 31600 +L85880 31570 +L85910 31530 +L85910 31480 +L85880 31430 +L85860 31410 +L85810 31380 +L85720 31360 +L85670 31340 +L85640 31310 +L85620 31260 +L85620 31220 +L85640 31170 +L85670 31150 +L85720 31120 +L85830 31120 +L85910 31150 +" /> +<path d="M86070 31120 +L86190 31620 +L86290 31260 +L86380 31620 +L86500 31120 +" /> +<path d="M86690 31620 +L86690 31120 +L86810 31120 +L86880 31150 +L86930 31190 +L86950 31240 +L86980 31340 +L86980 31410 +L86950 31500 +L86930 31550 +L86880 31600 +L86810 31620 +L86690 31620 +" /> +<path d="M87190 31620 +L87190 31120 +" /> +<path d="M87530 31120 +L87620 31120 +L87670 31150 +L87720 31190 +L87740 31290 +L87740 31450 +L87720 31550 +L87670 31600 +L87620 31620 +L87530 31620 +L87480 31600 +L87430 31550 +L87410 31450 +L87410 31290 +L87430 31190 +L87480 31150 +L87530 31120 +" /> +<text x="8500" y="12150" +textLength="1420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">TXD</text> +<path d="M7160 11620 +L7440 11620 +" /> +<path d="M7300 12120 +L7300 11620 +" /> +<path d="M7560 11620 +L7890 12120 +" /> +<path d="M7890 11620 +L7560 12120 +" /> +<path d="M8080 12120 +L8080 11620 +L8200 11620 +L8270 11650 +L8320 11690 +L8350 11740 +L8370 11840 +L8370 11910 +L8350 12000 +L8320 12050 +L8270 12100 +L8200 12120 +L8080 12120 +" /> +<text x="78500" y="39150" +textLength="2420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">KP_C1</text> +<path d="M78640 39120 +L78640 38620 +" /> +<path d="M78930 39120 +L78720 38840 +" /> +<path d="M78930 38620 +L78640 38910 +" /> +<path d="M79140 39120 +L79140 38620 +L79330 38620 +L79380 38650 +L79410 38670 +L79430 38720 +L79430 38790 +L79410 38840 +L79380 38860 +L79330 38880 +L79140 38880 +" /> +<path d="M79530 39170 +L79910 39170 +" /> +<path d="M80310 39070 +L80290 39100 +L80220 39120 +L80170 39120 +L80100 39100 +L80050 39050 +L80030 39000 +L80000 38910 +L80000 38840 +L80030 38740 +L80050 38690 +L80100 38650 +L80170 38620 +L80220 38620 +L80290 38650 +L80310 38670 +" /> +<path d="M80790 39120 +L80500 39120 +" /> +<path d="M80640 39120 +L80640 38620 +L80600 38690 +L80550 38740 +L80500 38760 +" /> +<text x="30250" y="20150" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">+5V</text> +<path d="M30390 19930 +L30780 19930 +" /> +<path d="M30580 20120 +L30580 19740 +" /> +<path d="M31250 19620 +L31010 19620 +L30990 19860 +L31010 19840 +L31060 19810 +L31180 19810 +L31230 19840 +L31250 19860 +L31280 19910 +L31280 20030 +L31250 20070 +L31230 20100 +L31180 20120 +L31060 20120 +L31010 20100 +L30990 20070 +" /> +<path d="M31420 19620 +L31580 20120 +L31750 19620 +" /> +<text x="10500" y="53900" +textLength="1610" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">FIL2</text> +<path d="M10810 53610 +L10640 53610 +" /> +<path d="M10640 53870 +L10640 53370 +L10880 53370 +" /> +<path d="M11070 53870 +L11070 53370 +" /> +<path d="M11550 53870 +L11310 53870 +L11310 53370 +" /> +<path d="M11690 53420 +L11720 53400 +L11760 53370 +L11880 53370 +L11930 53400 +L11950 53420 +L11980 53470 +L11980 53510 +L11950 53590 +L11670 53870 +L11980 53870 +" /> +<text x="10500" y="52900" +textLength="2510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">BFPDO</text> +<path d="M10810 52610 +L10880 52630 +L10910 52660 +L10930 52700 +L10930 52780 +L10910 52820 +L10880 52850 +L10830 52870 +L10640 52870 +L10640 52370 +L10810 52370 +L10860 52400 +L10880 52420 +L10910 52470 +L10910 52510 +L10880 52560 +L10860 52590 +L10810 52610 +L10640 52610 +" /> +<path d="M11310 52610 +L11140 52610 +" /> +<path d="M11140 52870 +L11140 52370 +L11380 52370 +" /> +<path d="M11570 52870 +L11570 52370 +L11760 52370 +L11810 52400 +L11830 52420 +L11860 52470 +L11860 52540 +L11830 52590 +L11810 52610 +L11760 52630 +L11570 52630 +" /> +<path d="M12070 52870 +L12070 52370 +L12190 52370 +L12260 52400 +L12310 52440 +L12330 52490 +L12360 52590 +L12360 52660 +L12330 52750 +L12310 52800 +L12260 52850 +L12190 52870 +L12070 52870 +" /> +<path d="M12670 52370 +L12760 52370 +L12810 52400 +L12860 52440 +L12880 52540 +L12880 52700 +L12860 52800 +L12810 52850 +L12760 52870 +L12670 52870 +L12620 52850 +L12570 52800 +L12550 52700 +L12550 52540 +L12570 52440 +L12620 52400 +L12670 52370 +" /> +<text x="10500" y="46900" +textLength="2370" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">FPREF</text> +<path d="M10810 46610 +L10640 46610 +" /> +<path d="M10640 46870 +L10640 46370 +L10880 46370 +" /> +<path d="M11070 46870 +L11070 46370 +L11260 46370 +L11310 46400 +L11330 46420 +L11360 46470 +L11360 46540 +L11330 46590 +L11310 46610 +L11260 46630 +L11070 46630 +" /> +<path d="M11860 46870 +L11690 46630 +" /> +<path d="M11570 46870 +L11570 46370 +L11760 46370 +L11810 46400 +L11830 46420 +L11860 46470 +L11860 46540 +L11830 46590 +L11810 46610 +L11760 46630 +L11570 46630 +" /> +<path d="M12070 46610 +L12240 46610 +" /> +<path d="M12310 46870 +L12070 46870 +L12070 46370 +L12310 46370 +" /> +<path d="M12690 46610 +L12530 46610 +" /> +<path d="M12530 46870 +L12530 46370 +L12760 46370 +" /> +<text x="10500" y="50900" +textLength="2850" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">BFPRST</text> +<path d="M10810 50610 +L10880 50630 +L10910 50660 +L10930 50700 +L10930 50780 +L10910 50820 +L10880 50850 +L10830 50870 +L10640 50870 +L10640 50370 +L10810 50370 +L10860 50400 +L10880 50420 +L10910 50470 +L10910 50510 +L10880 50560 +L10860 50590 +L10810 50610 +L10640 50610 +" /> +<path d="M11310 50610 +L11140 50610 +" /> +<path d="M11140 50870 +L11140 50370 +L11380 50370 +" /> +<path d="M11570 50870 +L11570 50370 +L11760 50370 +L11810 50400 +L11830 50420 +L11860 50470 +L11860 50540 +L11830 50590 +L11810 50610 +L11760 50630 +L11570 50630 +" /> +<path d="M12360 50870 +L12190 50630 +" /> +<path d="M12070 50870 +L12070 50370 +L12260 50370 +L12310 50400 +L12330 50420 +L12360 50470 +L12360 50540 +L12330 50590 +L12310 50610 +L12260 50630 +L12070 50630 +" /> +<path d="M12550 50850 +L12620 50870 +L12740 50870 +L12790 50850 +L12810 50820 +L12830 50780 +L12830 50730 +L12810 50680 +L12790 50660 +L12740 50630 +L12640 50610 +L12600 50590 +L12570 50560 +L12550 50510 +L12550 50470 +L12570 50420 +L12600 50400 +L12640 50370 +L12760 50370 +L12830 50400 +" /> +<path d="M12980 50370 +L13260 50370 +" /> +<path d="M13120 50870 +L13120 50370 +" /> +<text x="10500" y="56900" +textLength="2230" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">BFPDI</text> +<path d="M10810 56610 +L10880 56630 +L10910 56660 +L10930 56700 +L10930 56780 +L10910 56820 +L10880 56850 +L10830 56870 +L10640 56870 +L10640 56370 +L10810 56370 +L10860 56400 +L10880 56420 +L10910 56470 +L10910 56510 +L10880 56560 +L10860 56590 +L10810 56610 +L10640 56610 +" /> +<path d="M11310 56610 +L11140 56610 +" /> +<path d="M11140 56870 +L11140 56370 +L11380 56370 +" /> +<path d="M11570 56870 +L11570 56370 +L11760 56370 +L11810 56400 +L11830 56420 +L11860 56470 +L11860 56540 +L11830 56590 +L11810 56610 +L11760 56630 +L11570 56630 +" /> +<path d="M12070 56870 +L12070 56370 +L12190 56370 +L12260 56400 +L12310 56440 +L12330 56490 +L12360 56590 +L12360 56660 +L12330 56750 +L12310 56800 +L12260 56850 +L12190 56870 +L12070 56870 +" /> +<path d="M12570 56870 +L12570 56370 +" /> +<text x="11250" y="6150" +textLength="2300" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">+3.3V</text> +<path d="M11390 5930 +L11780 5930 +" /> +<path d="M11580 6120 +L11580 5740 +" /> +<path d="M11970 5620 +L12280 5620 +L12110 5810 +L12180 5810 +L12230 5840 +L12250 5860 +L12280 5910 +L12280 6030 +L12250 6070 +L12230 6100 +L12180 6120 +L12040 6120 +L11990 6100 +L11970 6070 +" /> +<path d="M12490 6070 +L12510 6100 +L12490 6120 +L12470 6100 +L12490 6070 +L12490 6120 +" /> +<path d="M12680 5620 +L12990 5620 +L12820 5810 +L12890 5810 +L12940 5840 +L12970 5860 +L12990 5910 +L12990 6030 +L12970 6070 +L12940 6100 +L12890 6120 +L12750 6120 +L12700 6100 +L12680 6070 +" /> +<path d="M13130 5620 +L13300 6120 +L13470 5620 +" /> +<text x="64250" y="51150" +textLength="1420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">RST</text> +<path d="M64680 51120 +L64510 50880 +" /> +<path d="M64390 51120 +L64390 50620 +L64580 50620 +L64630 50650 +L64660 50670 +L64680 50720 +L64680 50790 +L64660 50840 +L64630 50860 +L64580 50880 +L64390 50880 +" /> +<path d="M64870 51100 +L64940 51120 +L65060 51120 +L65110 51100 +L65130 51070 +L65160 51030 +L65160 50980 +L65130 50930 +L65110 50910 +L65060 50880 +L64970 50860 +L64920 50840 +L64890 50810 +L64870 50760 +L64870 50720 +L64890 50670 +L64920 50650 +L64970 50620 +L65080 50620 +L65160 50650 +" /> +<path d="M65300 50620 +L65580 50620 +" /> +<path d="M65440 51120 +L65440 50620 +" /> +<text x="101000" y="51400" +textLength="2770" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">FPSTBY</text> +<path d="M98540 51110 +L98370 51110 +" /> +<path d="M98370 51370 +L98370 50870 +L98610 50870 +" /> +<path d="M98800 51370 +L98800 50870 +L98990 50870 +L99040 50900 +L99060 50920 +L99080 50970 +L99080 51040 +L99060 51090 +L99040 51110 +L98990 51130 +L98800 51130 +" /> +<path d="M99270 51350 +L99350 51370 +L99470 51370 +L99510 51350 +L99540 51320 +L99560 51280 +L99560 51230 +L99540 51180 +L99510 51160 +L99470 51130 +L99370 51110 +L99320 51090 +L99300 51060 +L99270 51010 +L99270 50970 +L99300 50920 +L99320 50900 +L99370 50870 +L99490 50870 +L99560 50900 +" /> +<path d="M99700 50870 +L99990 50870 +" /> +<path d="M99850 51370 +L99850 50870 +" /> +<path d="M100320 51110 +L100390 51130 +L100420 51160 +L100440 51200 +L100440 51280 +L100420 51320 +L100390 51350 +L100350 51370 +L100160 51370 +L100160 50870 +L100320 50870 +L100370 50900 +L100390 50920 +L100420 50970 +L100420 51010 +L100390 51060 +L100370 51090 +L100320 51110 +L100160 51110 +" /> +<path d="M100750 51130 +L100750 51370 +" /> +<path d="M100580 50870 +L100750 51130 +L100920 50870 +" /> +<text x="100000" y="39900" +textLength="1490" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">VDD</text> +<path d="M98580 39370 +L98750 39870 +L98920 39370 +" /> +<path d="M99080 39870 +L99080 39370 +L99200 39370 +L99270 39400 +L99320 39440 +L99350 39490 +L99370 39590 +L99370 39660 +L99350 39750 +L99320 39800 +L99270 39850 +L99200 39870 +L99080 39870 +" /> +<path d="M99580 39870 +L99580 39370 +L99700 39370 +L99770 39400 +L99820 39440 +L99850 39490 +L99870 39590 +L99870 39660 +L99850 39750 +L99820 39800 +L99770 39850 +L99700 39870 +L99580 39870 +" /> +<text x="108500" y="13150" +textLength="1490" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">VDD</text> +<path d="M108570 12620 +L108740 13120 +L108910 12620 +" /> +<path d="M109070 13120 +L109070 12620 +L109190 12620 +L109260 12650 +L109310 12690 +L109330 12740 +L109360 12840 +L109360 12910 +L109330 13000 +L109310 13050 +L109260 13100 +L109190 13120 +L109070 13120 +" /> +<path d="M109570 13120 +L109570 12620 +L109690 12620 +L109760 12650 +L109810 12690 +L109830 12740 +L109860 12840 +L109860 12910 +L109830 13000 +L109810 13050 +L109760 13100 +L109690 13120 +L109570 13120 +" /> +<text x="13250" y="9150" +textLength="2300" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">+3.3V</text> +<path d="M11100 8930 +L11480 8930 +" /> +<path d="M11290 9120 +L11290 8740 +" /> +<path d="M11670 8620 +L11980 8620 +L11810 8810 +L11880 8810 +L11930 8840 +L11950 8860 +L11980 8910 +L11980 9030 +L11950 9070 +L11930 9100 +L11880 9120 +L11740 9120 +L11690 9100 +L11670 9070 +" /> +<path d="M12190 9070 +L12220 9100 +L12190 9120 +L12170 9100 +L12190 9070 +L12190 9120 +" /> +<path d="M12380 8620 +L12690 8620 +L12520 8810 +L12600 8810 +L12640 8840 +L12670 8860 +L12690 8910 +L12690 9030 +L12670 9070 +L12640 9100 +L12600 9120 +L12450 9120 +L12410 9100 +L12380 9070 +" /> +<path d="M12830 8620 +L13000 9120 +L13170 8620 +" /> +<text x="89750" y="39150" +textLength="2420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">KP_C4</text> +<path d="M89890 39120 +L89890 38620 +" /> +<path d="M90180 39120 +L89970 38840 +" /> +<path d="M90180 38620 +L89890 38910 +" /> +<path d="M90390 39120 +L90390 38620 +L90580 38620 +L90630 38650 +L90660 38670 +L90680 38720 +L90680 38790 +L90660 38840 +L90630 38860 +L90580 38880 +L90390 38880 +" /> +<path d="M90780 39170 +L91160 39170 +" /> +<path d="M91560 39070 +L91540 39100 +L91470 39120 +L91420 39120 +L91350 39100 +L91300 39050 +L91280 39000 +L91250 38910 +L91250 38840 +L91280 38740 +L91300 38690 +L91350 38650 +L91420 38620 +L91470 38620 +L91540 38650 +L91560 38670 +" /> +<path d="M91990 38790 +L91990 39120 +" /> +<path d="M91870 38600 +L91750 38950 +L92060 38950 +" /> +<text x="39000" y="56900" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">RXD</text> +<path d="M37890 56870 +L37730 56630 +" /> +<path d="M37610 56870 +L37610 56370 +L37800 56370 +L37850 56400 +L37870 56420 +L37890 56470 +L37890 56540 +L37870 56590 +L37850 56610 +L37800 56630 +L37610 56630 +" /> +<path d="M38060 56370 +L38390 56870 +" /> +<path d="M38390 56370 +L38060 56870 +" /> +<path d="M38580 56870 +L38580 56370 +L38700 56370 +L38770 56400 +L38820 56440 +L38850 56490 +L38870 56590 +L38870 56660 +L38850 56750 +L38820 56800 +L38770 56850 +L38700 56870 +L38580 56870 +" /> +<text x="39000" y="55900" +textLength="1420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">TXD</text> +<path d="M37660 55370 +L37940 55370 +" /> +<path d="M37800 55870 +L37800 55370 +" /> +<path d="M38060 55370 +L38390 55870 +" /> +<path d="M38390 55370 +L38060 55870 +" /> +<path d="M38580 55870 +L38580 55370 +L38700 55370 +L38770 55400 +L38820 55440 +L38850 55490 +L38870 55590 +L38870 55660 +L38850 55750 +L38820 55800 +L38770 55850 +L38700 55870 +L38580 55870 +" /> +<text x="30000" y="6650" +textLength="2300" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">+3.3V</text> +<path d="M30140 6430 +L30530 6430 +" /> +<path d="M30330 6620 +L30330 6240 +" /> +<path d="M30720 6120 +L31030 6120 +L30860 6310 +L30930 6310 +L30980 6340 +L31000 6360 +L31030 6410 +L31030 6530 +L31000 6570 +L30980 6600 +L30930 6620 +L30790 6620 +L30740 6600 +L30720 6570 +" /> +<path d="M31240 6570 +L31260 6600 +L31240 6620 +L31220 6600 +L31240 6570 +L31240 6620 +" /> +<path d="M31430 6120 +L31740 6120 +L31570 6310 +L31640 6310 +L31690 6340 +L31720 6360 +L31740 6410 +L31740 6530 +L31720 6570 +L31690 6600 +L31640 6620 +L31500 6620 +L31450 6600 +L31430 6570 +" /> +<path d="M31880 6120 +L32050 6620 +L32220 6120 +" /> +<text x="57500" y="41900" +textLength="2660" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">DSP_DI</text> +<path d="M57640 41870 +L57640 41370 +L57760 41370 +L57830 41400 +L57880 41440 +L57910 41490 +L57930 41590 +L57930 41660 +L57910 41750 +L57880 41800 +L57830 41850 +L57760 41870 +L57640 41870 +" /> +<path d="M58120 41850 +L58190 41870 +L58310 41870 +L58360 41850 +L58380 41820 +L58410 41780 +L58410 41730 +L58380 41680 +L58360 41660 +L58310 41630 +L58220 41610 +L58170 41590 +L58140 41560 +L58120 41510 +L58120 41470 +L58140 41420 +L58170 41400 +L58220 41370 +L58330 41370 +L58410 41400 +" /> +<path d="M58620 41870 +L58620 41370 +L58810 41370 +L58860 41400 +L58880 41420 +L58910 41470 +L58910 41540 +L58880 41590 +L58860 41610 +L58810 41630 +L58620 41630 +" /> +<path d="M59000 41920 +L59380 41920 +" /> +<path d="M59500 41870 +L59500 41370 +L59620 41370 +L59690 41400 +L59740 41440 +L59760 41490 +L59790 41590 +L59790 41660 +L59760 41750 +L59740 41800 +L59690 41850 +L59620 41870 +L59500 41870 +" /> +<path d="M60000 41870 +L60000 41370 +" /> +<text x="57500" y="40900" +textLength="1870" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">MISO</text> +<path d="M57640 40870 +L57640 40370 +L57810 40730 +L57980 40370 +L57980 40870 +" /> +<path d="M58220 40870 +L58220 40370 +" /> +<path d="M58430 40850 +L58500 40870 +L58620 40870 +L58670 40850 +L58690 40820 +L58720 40780 +L58720 40730 +L58690 40680 +L58670 40660 +L58620 40630 +L58530 40610 +L58480 40590 +L58450 40560 +L58430 40510 +L58430 40470 +L58450 40420 +L58480 40400 +L58530 40370 +L58640 40370 +L58720 40400 +" /> +<path d="M59030 40370 +L59120 40370 +L59170 40400 +L59220 40440 +L59240 40540 +L59240 40700 +L59220 40800 +L59170 40850 +L59120 40870 +L59030 40870 +L58980 40850 +L58930 40800 +L58910 40700 +L58910 40540 +L58930 40440 +L58980 40400 +L59030 40370 +" /> +<text x="57500" y="39900" +textLength="3800" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">DSP_SCLK</text> +<path d="M57640 39870 +L57640 39370 +L57760 39370 +L57830 39400 +L57880 39440 +L57910 39490 +L57930 39590 +L57930 39660 +L57910 39750 +L57880 39800 +L57830 39850 +L57760 39870 +L57640 39870 +" /> +<path d="M58120 39850 +L58190 39870 +L58310 39870 +L58360 39850 +L58380 39820 +L58410 39780 +L58410 39730 +L58380 39680 +L58360 39660 +L58310 39630 +L58220 39610 +L58170 39590 +L58140 39560 +L58120 39510 +L58120 39470 +L58140 39420 +L58170 39400 +L58220 39370 +L58330 39370 +L58410 39400 +" /> +<path d="M58620 39870 +L58620 39370 +L58810 39370 +L58860 39400 +L58880 39420 +L58910 39470 +L58910 39540 +L58880 39590 +L58860 39610 +L58810 39630 +L58620 39630 +" /> +<path d="M59000 39920 +L59380 39920 +" /> +<path d="M59480 39850 +L59550 39870 +L59670 39870 +L59720 39850 +L59740 39820 +L59760 39780 +L59760 39730 +L59740 39680 +L59720 39660 +L59670 39630 +L59570 39610 +L59530 39590 +L59500 39560 +L59480 39510 +L59480 39470 +L59500 39420 +L59530 39400 +L59570 39370 +L59690 39370 +L59760 39400 +" /> +<path d="M60260 39820 +L60240 39850 +L60170 39870 +L60120 39870 +L60050 39850 +L60000 39800 +L59980 39750 +L59950 39660 +L59950 39590 +L59980 39490 +L60000 39440 +L60050 39400 +L60120 39370 +L60170 39370 +L60240 39400 +L60260 39420 +" /> +<path d="M60720 39870 +L60480 39870 +L60480 39370 +" /> +<path d="M60880 39870 +L60880 39370 +" /> +<path d="M61170 39870 +L60950 39590 +" /> +<path d="M61170 39370 +L60880 39660 +" /> +<text x="31750" y="13150" +textLength="1420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">RST</text> +<path d="M32180 13120 +L32010 12880 +" /> +<path d="M31890 13120 +L31890 12620 +L32080 12620 +L32130 12650 +L32160 12670 +L32180 12720 +L32180 12790 +L32160 12840 +L32130 12860 +L32080 12880 +L31890 12880 +" /> +<path d="M32370 13100 +L32440 13120 +L32560 13120 +L32610 13100 +L32630 13070 +L32660 13030 +L32660 12980 +L32630 12930 +L32610 12910 +L32560 12880 +L32470 12860 +L32420 12840 +L32390 12810 +L32370 12760 +L32370 12720 +L32390 12670 +L32420 12650 +L32470 12620 +L32580 12620 +L32660 12650 +" /> +<path d="M32800 12620 +L33080 12620 +" /> +<path d="M32940 13120 +L32940 12620 +" /> +<text x="31750" y="16150" +textLength="2850" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">BFPRST</text> +<path d="M32060 15860 +L32130 15880 +L32160 15910 +L32180 15950 +L32180 16030 +L32160 16070 +L32130 16100 +L32080 16120 +L31890 16120 +L31890 15620 +L32060 15620 +L32110 15650 +L32130 15670 +L32160 15720 +L32160 15760 +L32130 15810 +L32110 15840 +L32060 15860 +L31890 15860 +" /> +<path d="M32560 15860 +L32390 15860 +" /> +<path d="M32390 16120 +L32390 15620 +L32630 15620 +" /> +<path d="M32820 16120 +L32820 15620 +L33010 15620 +L33060 15650 +L33080 15670 +L33110 15720 +L33110 15790 +L33080 15840 +L33060 15860 +L33010 15880 +L32820 15880 +" /> +<path d="M33610 16120 +L33440 15880 +" /> +<path d="M33320 16120 +L33320 15620 +L33510 15620 +L33560 15650 +L33580 15670 +L33610 15720 +L33610 15790 +L33580 15840 +L33560 15860 +L33510 15880 +L33320 15880 +" /> +<path d="M33800 16100 +L33870 16120 +L33990 16120 +L34040 16100 +L34060 16070 +L34080 16030 +L34080 15980 +L34060 15930 +L34040 15910 +L33990 15880 +L33890 15860 +L33850 15840 +L33820 15810 +L33800 15760 +L33800 15720 +L33820 15670 +L33850 15650 +L33890 15620 +L34010 15620 +L34080 15650 +" /> +<path d="M34230 15620 +L34510 15620 +" /> +<path d="M34370 16120 +L34370 15620 +" /> +<text x="14500" y="67400" +textLength="1490" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">VDD</text> +<path d="M14570 66870 +L14740 67370 +L14910 66870 +" /> +<path d="M15070 67370 +L15070 66870 +L15190 66870 +L15260 66900 +L15310 66940 +L15330 66990 +L15360 67090 +L15360 67160 +L15330 67250 +L15310 67300 +L15260 67350 +L15190 67370 +L15070 67370 +" /> +<path d="M15570 67370 +L15570 66870 +L15690 66870 +L15760 66900 +L15810 66940 +L15830 66990 +L15860 67090 +L15860 67160 +L15830 67250 +L15810 67300 +L15760 67350 +L15690 67370 +L15570 67370 +" /> +<text x="8250" y="16150" +textLength="2510" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">BFPDO</text> +<path d="M6050 15860 +L6120 15880 +L6140 15910 +L6170 15950 +L6170 16030 +L6140 16070 +L6120 16100 +L6070 16120 +L5880 16120 +L5880 15620 +L6050 15620 +L6100 15650 +L6120 15670 +L6140 15720 +L6140 15760 +L6120 15810 +L6100 15840 +L6050 15860 +L5880 15860 +" /> +<path d="M6550 15860 +L6380 15860 +" /> +<path d="M6380 16120 +L6380 15620 +L6620 15620 +" /> +<path d="M6810 16120 +L6810 15620 +L7000 15620 +L7050 15650 +L7070 15670 +L7100 15720 +L7100 15790 +L7070 15840 +L7050 15860 +L7000 15880 +L6810 15880 +" /> +<path d="M7310 16120 +L7310 15620 +L7430 15620 +L7500 15650 +L7550 15690 +L7570 15740 +L7600 15840 +L7600 15910 +L7570 16000 +L7550 16050 +L7500 16100 +L7430 16120 +L7310 16120 +" /> +<path d="M7910 15620 +L8000 15620 +L8050 15650 +L8100 15690 +L8120 15790 +L8120 15950 +L8100 16050 +L8050 16100 +L8000 16120 +L7910 16120 +L7860 16100 +L7810 16050 +L7790 15950 +L7790 15790 +L7810 15690 +L7860 15650 +L7910 15620 +" /> +<text x="8500" y="13150" +textLength="1540" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">RXD</text> +<path d="M7390 13120 +L7230 12880 +" /> +<path d="M7110 13120 +L7110 12620 +L7300 12620 +L7350 12650 +L7370 12670 +L7390 12720 +L7390 12790 +L7370 12840 +L7350 12860 +L7300 12880 +L7110 12880 +" /> +<path d="M7560 12620 +L7890 13120 +" /> +<path d="M7890 12620 +L7560 13120 +" /> +<path d="M8080 13120 +L8080 12620 +L8200 12620 +L8270 12650 +L8320 12690 +L8350 12740 +L8370 12840 +L8370 12910 +L8350 13000 +L8320 13050 +L8270 13100 +L8200 13120 +L8080 13120 +" /> +<text x="100000" y="38900" +textLength="1820" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">RE_A</text> +<path d="M98610 38870 +L98440 38630 +" /> +<path d="M98320 38870 +L98320 38370 +L98510 38370 +L98560 38400 +L98580 38420 +L98610 38470 +L98610 38540 +L98580 38590 +L98560 38610 +L98510 38630 +L98320 38630 +" /> +<path d="M98820 38610 +L98990 38610 +" /> +<path d="M99060 38870 +L98820 38870 +L98820 38370 +L99060 38370 +" /> +<path d="M99160 38920 +L99540 38920 +" /> +<path d="M99630 38730 +L99870 38730 +" /> +<path d="M99580 38870 +L99750 38370 +L99920 38870 +" /> +<text x="93250" y="48650" +textLength="2420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">KP_R1</text> +<path d="M93390 48620 +L93390 48120 +" /> +<path d="M93680 48620 +L93470 48340 +" /> +<path d="M93680 48120 +L93390 48410 +" /> +<path d="M93890 48620 +L93890 48120 +L94080 48120 +L94130 48150 +L94160 48170 +L94180 48220 +L94180 48290 +L94160 48340 +L94130 48360 +L94080 48380 +L93890 48380 +" /> +<path d="M94280 48670 +L94660 48670 +" /> +<path d="M95060 48620 +L94890 48380 +" /> +<path d="M94780 48620 +L94780 48120 +L94970 48120 +L95010 48150 +L95040 48170 +L95060 48220 +L95060 48290 +L95040 48340 +L95010 48360 +L94970 48380 +L94780 48380 +" /> +<path d="M95540 48620 +L95250 48620 +" /> +<path d="M95390 48620 +L95390 48120 +L95350 48190 +L95300 48240 +L95250 48260 +" /> +<text x="93250" y="44150" +textLength="2420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">KP_R0</text> +<path d="M93390 44120 +L93390 43620 +" /> +<path d="M93680 44120 +L93470 43840 +" /> +<path d="M93680 43620 +L93390 43910 +" /> +<path d="M93890 44120 +L93890 43620 +L94080 43620 +L94130 43650 +L94160 43670 +L94180 43720 +L94180 43790 +L94160 43840 +L94130 43860 +L94080 43880 +L93890 43880 +" /> +<path d="M94280 44170 +L94660 44170 +" /> +<path d="M95060 44120 +L94890 43880 +" /> +<path d="M94780 44120 +L94780 43620 +L94970 43620 +L95010 43650 +L95040 43670 +L95060 43720 +L95060 43790 +L95040 43840 +L95010 43860 +L94970 43880 +L94780 43880 +" /> +<path d="M95370 43620 +L95420 43620 +L95470 43650 +L95490 43670 +L95510 43720 +L95540 43810 +L95540 43930 +L95510 44030 +L95490 44070 +L95470 44100 +L95420 44120 +L95370 44120 +L95320 44100 +L95300 44070 +L95280 44030 +L95250 43930 +L95250 43810 +L95280 43720 +L95300 43670 +L95320 43650 +L95370 43620 +" /> +<text x="93250" y="52650" +textLength="2420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">KP_R2</text> +<path d="M93390 52620 +L93390 52120 +" /> +<path d="M93680 52620 +L93470 52340 +" /> +<path d="M93680 52120 +L93390 52410 +" /> +<path d="M93890 52620 +L93890 52120 +L94080 52120 +L94130 52150 +L94160 52170 +L94180 52220 +L94180 52290 +L94160 52340 +L94130 52360 +L94080 52380 +L93890 52380 +" /> +<path d="M94280 52670 +L94660 52670 +" /> +<path d="M95060 52620 +L94890 52380 +" /> +<path d="M94780 52620 +L94780 52120 +L94970 52120 +L95010 52150 +L95040 52170 +L95060 52220 +L95060 52290 +L95040 52340 +L95010 52360 +L94970 52380 +L94780 52380 +" /> +<path d="M95250 52170 +L95280 52150 +L95320 52120 +L95440 52120 +L95490 52150 +L95510 52170 +L95540 52220 +L95540 52260 +L95510 52340 +L95230 52620 +L95540 52620 +" /> +<text x="50500" y="29400" +textLength="1490" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">VDD</text> +<path d="M50570 28870 +L50740 29370 +L50910 28870 +" /> +<path d="M51070 29370 +L51070 28870 +L51190 28870 +L51260 28900 +L51310 28940 +L51330 28990 +L51360 29090 +L51360 29160 +L51330 29250 +L51310 29300 +L51260 29350 +L51190 29370 +L51070 29370 +" /> +<path d="M51570 29370 +L51570 28870 +L51690 28870 +L51760 28900 +L51810 28940 +L51830 28990 +L51860 29090 +L51860 29160 +L51830 29250 +L51810 29300 +L51760 29350 +L51690 29370 +L51570 29370 +" /> +<text x="93250" y="57150" +textLength="2420" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">KP_R3</text> +<path d="M93390 57120 +L93390 56620 +" /> +<path d="M93680 57120 +L93470 56840 +" /> +<path d="M93680 56620 +L93390 56910 +" /> +<path d="M93890 57120 +L93890 56620 +L94080 56620 +L94130 56650 +L94160 56670 +L94180 56720 +L94180 56790 +L94160 56840 +L94130 56860 +L94080 56880 +L93890 56880 +" /> +<path d="M94280 57170 +L94660 57170 +" /> +<path d="M95060 57120 +L94890 56880 +" /> +<path d="M94780 57120 +L94780 56620 +L94970 56620 +L95010 56650 +L95040 56670 +L95060 56720 +L95060 56790 +L95040 56840 +L95010 56860 +L94970 56880 +L94780 56880 +" /> +<path d="M95230 56620 +L95540 56620 +L95370 56810 +L95440 56810 +L95490 56840 +L95510 56860 +L95540 56910 +L95540 57030 +L95510 57070 +L95490 57100 +L95440 57120 +L95300 57120 +L95250 57100 +L95230 57070 +" /> +<text x="104250" y="24150" +textLength="1580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">+5V</text> +<path d="M104390 23930 +L104780 23930 +" /> +<path d="M104580 24120 +L104580 23740 +" /> +<path d="M105250 23620 +L105010 23620 +L104990 23860 +L105010 23840 +L105060 23810 +L105180 23810 +L105230 23840 +L105250 23860 +L105280 23910 +L105280 24030 +L105250 24070 +L105230 24100 +L105180 24120 +L105060 24120 +L105010 24100 +L104990 24070 +" /> +<path d="M105420 23620 +L105580 24120 +L105750 23620 +" /> +<text x="60750" y="45900" +textLength="1180" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">D-</text> +<path d="M60890 45870 +L60890 45370 +L61010 45370 +L61080 45400 +L61130 45440 +L61160 45490 +L61180 45590 +L61180 45660 +L61160 45750 +L61130 45800 +L61080 45850 +L61010 45870 +L60890 45870 +" /> +<path d="M61390 45680 +L61780 45680 +" /> +<text x="60750" y="46900" +textLength="1180" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">D+</text> +<path d="M60890 46870 +L60890 46370 +L61010 46370 +L61080 46400 +L61130 46440 +L61160 46490 +L61180 46590 +L61180 46660 +L61160 46750 +L61130 46800 +L61080 46850 +L61010 46870 +L60890 46870 +" /> +<path d="M61390 46680 +L61780 46680 +" /> +<path d="M61580 46870 +L61580 46490 +" /> +<text x="33000" y="67400" +textLength="1490" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">VDD</text> +<path d="M33070 66870 +L33240 67370 +L33410 66870 +" /> +<path d="M33570 67370 +L33570 66870 +L33690 66870 +L33760 66900 +L33810 66940 +L33830 66990 +L33860 67090 +L33860 67160 +L33830 67250 +L33810 67300 +L33760 67350 +L33690 67370 +L33570 67370 +" /> +<path d="M34070 67370 +L34070 66870 +L34190 66870 +L34260 66900 +L34310 66940 +L34330 66990 +L34360 67090 +L34360 67160 +L34330 67250 +L34310 67300 +L34260 67350 +L34190 67370 +L34070 67370 +" /> +<text x="62000" y="34900" +textLength="1890" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">RE_B</text> +<path d="M62430 34870 +L62260 34630 +" /> +<path d="M62140 34870 +L62140 34370 +L62330 34370 +L62380 34400 +L62410 34420 +L62430 34470 +L62430 34540 +L62410 34590 +L62380 34610 +L62330 34630 +L62140 34630 +" /> +<path d="M62640 34610 +L62810 34610 +" /> +<path d="M62880 34870 +L62640 34870 +L62640 34370 +L62880 34370 +" /> +<path d="M62980 34920 +L63360 34920 +" /> +<path d="M63640 34610 +L63720 34630 +L63740 34660 +L63760 34700 +L63760 34780 +L63740 34820 +L63720 34850 +L63670 34870 +L63480 34870 +L63480 34370 +L63640 34370 +L63690 34400 +L63720 34420 +L63740 34470 +L63740 34510 +L63720 34560 +L63690 34590 +L63640 34610 +L63480 34610 +" /> +<text x="62000" y="35900" +textLength="1820" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">RE_A</text> +<path d="M62430 35870 +L62260 35630 +" /> +<path d="M62140 35870 +L62140 35370 +L62330 35370 +L62380 35400 +L62410 35420 +L62430 35470 +L62430 35540 +L62410 35590 +L62380 35610 +L62330 35630 +L62140 35630 +" /> +<path d="M62640 35610 +L62810 35610 +" /> +<path d="M62880 35870 +L62640 35870 +L62640 35370 +L62880 35370 +" /> +<path d="M62980 35920 +L63360 35920 +" /> +<path d="M63450 35730 +L63690 35730 +" /> +<path d="M63410 35870 +L63570 35370 +L63740 35870 +" /> +<text x="100000" y="40900" +textLength="1890" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">RE_B</text> +<path d="M98540 40870 +L98370 40630 +" /> +<path d="M98250 40870 +L98250 40370 +L98440 40370 +L98490 40400 +L98510 40420 +L98540 40470 +L98540 40540 +L98510 40590 +L98490 40610 +L98440 40630 +L98250 40630 +" /> +<path d="M98750 40610 +L98920 40610 +" /> +<path d="M98990 40870 +L98750 40870 +L98750 40370 +L98990 40370 +" /> +<path d="M99080 40920 +L99470 40920 +" /> +<path d="M99750 40610 +L99820 40630 +L99850 40660 +L99870 40700 +L99870 40780 +L99850 40820 +L99820 40850 +L99770 40870 +L99580 40870 +L99580 40370 +L99750 40370 +L99800 40400 +L99820 40420 +L99850 40470 +L99850 40510 +L99820 40560 +L99800 40590 +L99750 40610 +L99580 40610 +" /> +<text x="10500" y="57900" +textLength="3180" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">GND_FLT</text> +<path d="M10910 57400 +L10860 57370 +L10790 57370 +L10720 57400 +L10670 57440 +L10640 57490 +L10620 57590 +L10620 57660 +L10640 57750 +L10670 57800 +L10720 57850 +L10790 57870 +L10830 57870 +L10910 57850 +L10930 57820 +L10930 57660 +L10830 57660 +" /> +<path d="M11140 57870 +L11140 57370 +L11430 57870 +L11430 57370 +" /> +<path d="M11670 57870 +L11670 57370 +L11790 57370 +L11860 57400 +L11910 57440 +L11930 57490 +L11950 57590 +L11950 57660 +L11930 57750 +L11910 57800 +L11860 57850 +L11790 57870 +L11670 57870 +" /> +<path d="M12050 57920 +L12430 57920 +" /> +<path d="M12720 57610 +L12550 57610 +" /> +<path d="M12550 57870 +L12550 57370 +L12790 57370 +" /> +<path d="M13220 57870 +L12980 57870 +L12980 57370 +" /> +<path d="M13310 57370 +L13600 57370 +" /> +<path d="M13450 57870 +L13450 57370 +" /> +<text x="10500" y="49900" +textLength="3180" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">GND_FLT</text> +<path d="M10910 49400 +L10860 49370 +L10790 49370 +L10720 49400 +L10670 49440 +L10640 49490 +L10620 49590 +L10620 49660 +L10640 49750 +L10670 49800 +L10720 49850 +L10790 49870 +L10830 49870 +L10910 49850 +L10930 49820 +L10930 49660 +L10830 49660 +" /> +<path d="M11140 49870 +L11140 49370 +L11430 49870 +L11430 49370 +" /> +<path d="M11670 49870 +L11670 49370 +L11790 49370 +L11860 49400 +L11910 49440 +L11930 49490 +L11950 49590 +L11950 49660 +L11930 49750 +L11910 49800 +L11860 49850 +L11790 49870 +L11670 49870 +" /> +<path d="M12050 49920 +L12430 49920 +" /> +<path d="M12720 49610 +L12550 49610 +" /> +<path d="M12550 49870 +L12550 49370 +L12790 49370 +" /> +<path d="M13220 49870 +L12980 49870 +L12980 49370 +" /> +<path d="M13310 49370 +L13600 49370 +" /> +<path d="M13450 49870 +L13450 49370 +" /> +<text x="10500" y="54900" +textLength="3180" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">GND_FLT</text> +<path d="M10910 54400 +L10860 54370 +L10790 54370 +L10720 54400 +L10670 54440 +L10640 54490 +L10620 54590 +L10620 54660 +L10640 54750 +L10670 54800 +L10720 54850 +L10790 54870 +L10830 54870 +L10910 54850 +L10930 54820 +L10930 54660 +L10830 54660 +" /> +<path d="M11140 54870 +L11140 54370 +L11430 54870 +L11430 54370 +" /> +<path d="M11670 54870 +L11670 54370 +L11790 54370 +L11860 54400 +L11910 54440 +L11930 54490 +L11950 54590 +L11950 54660 +L11930 54750 +L11910 54800 +L11860 54850 +L11790 54870 +L11670 54870 +" /> +<path d="M12050 54920 +L12430 54920 +" /> +<path d="M12720 54610 +L12550 54610 +" /> +<path d="M12550 54870 +L12550 54370 +L12790 54370 +" /> +<path d="M13220 54870 +L12980 54870 +L12980 54370 +" /> +<path d="M13310 54370 +L13600 54370 +" /> +<path d="M13450 54870 +L13450 54370 +" /> +<text x="17250" y="33150" +textLength="1180" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">D-</text> +<path d="M17390 33120 +L17390 32620 +L17510 32620 +L17580 32650 +L17630 32690 +L17660 32740 +L17680 32840 +L17680 32910 +L17660 33000 +L17630 33050 +L17580 33100 +L17510 33120 +L17390 33120 +" /> +<path d="M17890 32930 +L18280 32930 +" /> +<text x="10500" y="51900" +textLength="3370" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">-18V_FP</text> +<path d="M10640 51680 +L11030 51680 +" /> +<path d="M11530 51870 +L11240 51870 +" /> +<path d="M11380 51870 +L11380 51370 +L11330 51440 +L11290 51490 +L11240 51510 +" /> +<path d="M11810 51590 +L11760 51560 +L11740 51540 +L11720 51490 +L11720 51470 +L11740 51420 +L11760 51400 +L11810 51370 +L11910 51370 +L11950 51400 +L11980 51420 +L12000 51470 +L12000 51490 +L11980 51540 +L11950 51560 +L11910 51590 +L11810 51590 +L11760 51610 +L11740 51630 +L11720 51680 +L11720 51780 +L11740 51820 +L11760 51850 +L11810 51870 +L11910 51870 +L11950 51850 +L11980 51820 +L12000 51780 +L12000 51680 +L11980 51630 +L11950 51610 +L11910 51590 +" /> +<path d="M12140 51370 +L12310 51870 +L12480 51370 +" /> +<path d="M12530 51920 +L12910 51920 +" /> +<path d="M13190 51610 +L13030 51610 +" /> +<path d="M13030 51870 +L13030 51370 +L13260 51370 +" /> +<path d="M13450 51870 +L13450 51370 +L13640 51370 +L13690 51400 +L13720 51420 +L13740 51470 +L13740 51540 +L13720 51590 +L13690 51610 +L13640 51630 +L13450 51630 +" /> +<text x="10500" y="48900" +textLength="2770" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">FPSTBY</text> +<path d="M10810 48610 +L10640 48610 +" /> +<path d="M10640 48870 +L10640 48370 +L10880 48370 +" /> +<path d="M11070 48870 +L11070 48370 +L11260 48370 +L11310 48400 +L11330 48420 +L11360 48470 +L11360 48540 +L11330 48590 +L11310 48610 +L11260 48630 +L11070 48630 +" /> +<path d="M11550 48850 +L11620 48870 +L11740 48870 +L11790 48850 +L11810 48820 +L11830 48780 +L11830 48730 +L11810 48680 +L11790 48660 +L11740 48630 +L11640 48610 +L11600 48590 +L11570 48560 +L11550 48510 +L11550 48470 +L11570 48420 +L11600 48400 +L11640 48370 +L11760 48370 +L11830 48400 +" /> +<path d="M11980 48370 +L12260 48370 +" /> +<path d="M12120 48870 +L12120 48370 +" /> +<path d="M12600 48610 +L12670 48630 +L12690 48660 +L12720 48700 +L12720 48780 +L12690 48820 +L12670 48850 +L12620 48870 +L12430 48870 +L12430 48370 +L12600 48370 +L12640 48400 +L12670 48420 +L12690 48470 +L12690 48510 +L12670 48560 +L12640 48590 +L12600 48610 +L12430 48610 +" /> +<path d="M13030 48630 +L13030 48870 +" /> +<path d="M12860 48370 +L13030 48630 +L13190 48370 +" /> +<text x="106250" y="13150" +textLength="2300" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">+3.3V</text> +<path d="M106390 12930 +L106780 12930 +" /> +<path d="M106580 13120 +L106580 12740 +" /> +<path d="M106970 12620 +L107280 12620 +L107110 12810 +L107180 12810 +L107230 12840 +L107250 12860 +L107280 12910 +L107280 13030 +L107250 13070 +L107230 13100 +L107180 13120 +L107040 13120 +L106990 13100 +L106970 13070 +" /> +<path d="M107490 13070 +L107510 13100 +L107490 13120 +L107470 13100 +L107490 13070 +L107490 13120 +" /> +<path d="M107680 12620 +L107990 12620 +L107820 12810 +L107890 12810 +L107940 12840 +L107970 12860 +L107990 12910 +L107990 13030 +L107970 13070 +L107940 13100 +L107890 13120 +L107750 13120 +L107700 13100 +L107680 13070 +" /> +<path d="M108130 12620 +L108300 13120 +L108470 12620 +" /> +<text x="10500" y="55900" +textLength="3660" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">+18V_FLT</text> +<path d="M10640 55680 +L11030 55680 +" /> +<path d="M10830 55870 +L10830 55490 +" /> +<path d="M11530 55870 +L11240 55870 +" /> +<path d="M11380 55870 +L11380 55370 +L11330 55440 +L11290 55490 +L11240 55510 +" /> +<path d="M11810 55590 +L11760 55560 +L11740 55540 +L11720 55490 +L11720 55470 +L11740 55420 +L11760 55400 +L11810 55370 +L11910 55370 +L11950 55400 +L11980 55420 +L12000 55470 +L12000 55490 +L11980 55540 +L11950 55560 +L11910 55590 +L11810 55590 +L11760 55610 +L11740 55630 +L11720 55680 +L11720 55780 +L11740 55820 +L11760 55850 +L11810 55870 +L11910 55870 +L11950 55850 +L11980 55820 +L12000 55780 +L12000 55680 +L11980 55630 +L11950 55610 +L11910 55590 +" /> +<path d="M12140 55370 +L12310 55870 +L12480 55370 +" /> +<path d="M12530 55920 +L12910 55920 +" /> +<path d="M13190 55610 +L13030 55610 +" /> +<path d="M13030 55870 +L13030 55370 +L13260 55370 +" /> +<path d="M13690 55870 +L13450 55870 +L13450 55370 +" /> +<path d="M13790 55370 +L14070 55370 +" /> +<path d="M13930 55870 +L13930 55370 +" /> +<text x="10500" y="47900" +textLength="1610" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">FIL1</text> +<path d="M10810 47610 +L10640 47610 +" /> +<path d="M10640 47870 +L10640 47370 +L10880 47370 +" /> +<path d="M11070 47870 +L11070 47370 +" /> +<path d="M11550 47870 +L11310 47870 +L11310 47370 +" /> +<path d="M11980 47870 +L11690 47870 +" /> +<path d="M11830 47870 +L11830 47370 +L11790 47440 +L11740 47490 +L11690 47510 +" /> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<text x="78250" y="15150" +textLength="3180" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">18V (in)</text> +<path d="M75480 15120 +L75190 15120 +" /> +<path d="M75330 15120 +L75330 14620 +L75290 14690 +L75240 14740 +L75190 14760 +" /> +<path d="M75760 14840 +L75720 14810 +L75690 14790 +L75670 14740 +L75670 14720 +L75690 14670 +L75720 14650 +L75760 14620 +L75860 14620 +L75910 14650 +L75930 14670 +L75950 14720 +L75950 14740 +L75930 14790 +L75910 14810 +L75860 14840 +L75760 14840 +L75720 14860 +L75690 14880 +L75670 14930 +L75670 15030 +L75690 15070 +L75720 15100 +L75760 15120 +L75860 15120 +L75910 15100 +L75930 15070 +L75950 15030 +L75950 14930 +L75930 14880 +L75910 14860 +L75860 14840 +" /> +<path d="M76100 14620 +L76260 15120 +L76430 14620 +" /> +<path d="M77120 15310 +L77100 15290 +L77050 15220 +L77020 15170 +L77000 15100 +L76980 14980 +L76980 14880 +L77000 14760 +L77020 14690 +L77050 14650 +L77100 14570 +L77120 14550 +" /> +<path d="M77310 15120 +L77310 14790 +" /> +<path d="M77310 14620 +L77290 14650 +L77310 14670 +L77330 14650 +L77310 14620 +L77310 14670 +" /> +<path d="M77550 14790 +L77550 15120 +" /> +<path d="M77550 14840 +L77570 14810 +L77620 14790 +L77690 14790 +L77740 14810 +L77760 14860 +L77760 15120 +" /> +<path d="M77950 15310 +L77980 15290 +L78020 15220 +L78050 15170 +L78070 15100 +L78100 14980 +L78100 14880 +L78070 14760 +L78050 14690 +L78020 14650 +L77980 14570 +L77950 14550 +" /> +<text x="14750" y="43150" +textLength="7660" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">Main unit connector</text> +<path d="M7240 43120 +L7240 42620 +L7410 42980 +L7570 42620 +L7570 43120 +" /> +<path d="M8020 43120 +L8020 42860 +L8000 42810 +L7950 42790 +L7860 42790 +L7810 42810 +" /> +<path d="M8020 43100 +L7980 43120 +L7860 43120 +L7810 43100 +L7790 43050 +L7790 43000 +L7810 42950 +L7860 42930 +L7980 42930 +L8020 42910 +" /> +<path d="M8260 43120 +L8260 42790 +" /> +<path d="M8260 42620 +L8240 42650 +L8260 42670 +L8290 42650 +L8260 42620 +L8260 42670 +" /> +<path d="M8500 42790 +L8500 43120 +" /> +<path d="M8500 42840 +L8520 42810 +L8570 42790 +L8640 42790 +L8690 42810 +L8710 42860 +L8710 43120 +" /> +<path d="M9550 42790 +L9550 43120 +" /> +<path d="M9330 42790 +L9330 43050 +L9360 43100 +L9410 43120 +L9480 43120 +L9520 43100 +L9550 43070 +" /> +<path d="M9790 42790 +L9790 43120 +" /> +<path d="M9790 42840 +L9810 42810 +L9860 42790 +L9930 42790 +L9980 42810 +L10000 42860 +L10000 43120 +" /> +<path d="M10240 43120 +L10240 42790 +" /> +<path d="M10240 42620 +L10210 42650 +L10240 42670 +L10260 42650 +L10240 42620 +L10240 42670 +" /> +<path d="M10410 42790 +L10600 42790 +" /> +<path d="M10480 42620 +L10480 43050 +L10500 43100 +L10550 43120 +L10600 43120 +" /> +<path d="M11360 43100 +L11310 43120 +L11210 43120 +L11170 43100 +L11140 43070 +L11120 43030 +L11120 42880 +L11140 42840 +L11170 42810 +L11210 42790 +L11310 42790 +L11360 42810 +" /> +<path d="M11640 43120 +L11600 43100 +L11570 43070 +L11550 43030 +L11550 42880 +L11570 42840 +L11600 42810 +L11640 42790 +L11710 42790 +L11760 42810 +L11790 42840 +L11810 42880 +L11810 43030 +L11790 43070 +L11760 43100 +L11710 43120 +L11640 43120 +" /> +<path d="M12020 42790 +L12020 43120 +" /> +<path d="M12020 42840 +L12050 42810 +L12100 42790 +L12170 42790 +L12210 42810 +L12240 42860 +L12240 43120 +" /> +<path d="M12480 42790 +L12480 43120 +" /> +<path d="M12480 42840 +L12500 42810 +L12550 42790 +L12620 42790 +L12670 42810 +L12690 42860 +L12690 43120 +" /> +<path d="M13120 43100 +L13070 43120 +L12980 43120 +L12930 43100 +L12910 43050 +L12910 42860 +L12930 42810 +L12980 42790 +L13070 42790 +L13120 42810 +L13140 42860 +L13140 42910 +L12910 42950 +" /> +<path d="M13570 43100 +L13520 43120 +L13430 43120 +L13380 43100 +L13360 43070 +L13330 43030 +L13330 42880 +L13360 42840 +L13380 42810 +L13430 42790 +L13520 42790 +L13570 42810 +" /> +<path d="M13720 42790 +L13910 42790 +" /> +<path d="M13790 42620 +L13790 43050 +L13810 43100 +L13860 43120 +L13910 43120 +" /> +<path d="M14140 43120 +L14100 43100 +L14070 43070 +L14050 43030 +L14050 42880 +L14070 42840 +L14100 42810 +L14140 42790 +L14210 42790 +L14260 42810 +L14290 42840 +L14310 42880 +L14310 43030 +L14290 43070 +L14260 43100 +L14210 43120 +L14140 43120 +" /> +<path d="M14520 43120 +L14520 42790 +" /> +<path d="M14520 42880 +L14550 42840 +L14570 42810 +L14620 42790 +L14670 42790 +" /> +<text x="35000" y="22400" +textLength="12010" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">Level converter (5V <-> 3.3V)</text> +<path d="M23370 22370 +L23130 22370 +L23130 21870 +" /> +<path d="M23730 22350 +L23680 22370 +L23580 22370 +L23540 22350 +L23510 22300 +L23510 22110 +L23540 22060 +L23580 22040 +L23680 22040 +L23730 22060 +L23750 22110 +L23750 22160 +L23510 22200 +" /> +<path d="M23920 22040 +L24040 22370 +L24160 22040 +" /> +<path d="M24540 22350 +L24490 22370 +L24390 22370 +L24350 22350 +L24320 22300 +L24320 22110 +L24350 22060 +L24390 22040 +L24490 22040 +L24540 22060 +L24560 22110 +L24560 22160 +L24320 22200 +" /> +<path d="M24850 22370 +L24800 22350 +L24770 22300 +L24770 21870 +" /> +<path d="M25630 22350 +L25580 22370 +L25490 22370 +L25440 22350 +L25420 22320 +L25390 22280 +L25390 22130 +L25420 22090 +L25440 22060 +L25490 22040 +L25580 22040 +L25630 22060 +" /> +<path d="M25920 22370 +L25870 22350 +L25850 22320 +L25820 22280 +L25820 22130 +L25850 22090 +L25870 22060 +L25920 22040 +L25990 22040 +L26040 22060 +L26060 22090 +L26080 22130 +L26080 22280 +L26060 22320 +L26040 22350 +L25990 22370 +L25920 22370 +" /> +<path d="M26300 22040 +L26300 22370 +" /> +<path d="M26300 22090 +L26320 22060 +L26370 22040 +L26440 22040 +L26490 22060 +L26510 22110 +L26510 22370 +" /> +<path d="M26700 22040 +L26820 22370 +L26940 22040 +" /> +<path d="M27320 22350 +L27270 22370 +L27180 22370 +L27130 22350 +L27110 22300 +L27110 22110 +L27130 22060 +L27180 22040 +L27270 22040 +L27320 22060 +L27350 22110 +L27350 22160 +L27110 22200 +" /> +<path d="M27560 22370 +L27560 22040 +" /> +<path d="M27560 22130 +L27580 22090 +L27610 22060 +L27660 22040 +L27700 22040 +" /> +<path d="M27800 22040 +L27990 22040 +" /> +<path d="M27870 21870 +L27870 22300 +L27890 22350 +L27940 22370 +L27990 22370 +" /> +<path d="M28350 22350 +L28300 22370 +L28200 22370 +L28160 22350 +L28130 22300 +L28130 22110 +L28160 22060 +L28200 22040 +L28300 22040 +L28350 22060 +L28370 22110 +L28370 22160 +L28130 22200 +" /> +<path d="M28580 22370 +L28580 22040 +" /> +<path d="M28580 22130 +L28610 22090 +L28630 22060 +L28680 22040 +L28730 22040 +" /> +<path d="M29420 22560 +L29390 22540 +L29350 22470 +L29320 22420 +L29300 22350 +L29270 22230 +L29270 22130 +L29300 22010 +L29320 21940 +L29350 21900 +L29390 21820 +L29420 21800 +" /> +<path d="M29850 21870 +L29610 21870 +L29580 22110 +L29610 22090 +L29660 22060 +L29770 22060 +L29820 22090 +L29850 22110 +L29870 22160 +L29870 22280 +L29850 22320 +L29820 22350 +L29770 22370 +L29660 22370 +L29610 22350 +L29580 22320 +" /> +<path d="M30010 21870 +L30180 22370 +L30350 21870 +" /> +<path d="M31270 22040 +L30890 22180 +L31270 22320 +" /> +<path d="M31510 22180 +L31890 22180 +" /> +<path d="M32130 22040 +L32510 22180 +L32130 22320 +" /> +<path d="M33080 21870 +L33390 21870 +L33230 22060 +L33300 22060 +L33350 22090 +L33370 22110 +L33390 22160 +L33390 22280 +L33370 22320 +L33350 22350 +L33300 22370 +L33160 22370 +L33110 22350 +L33080 22320 +" /> +<path d="M33610 22320 +L33630 22350 +L33610 22370 +L33580 22350 +L33610 22320 +L33610 22370 +" /> +<path d="M33800 21870 +L34110 21870 +L33940 22060 +L34010 22060 +L34060 22090 +L34080 22110 +L34110 22160 +L34110 22280 +L34080 22320 +L34060 22350 +L34010 22370 +L33870 22370 +L33820 22350 +L33800 22320 +" /> +<path d="M34250 21870 +L34420 22370 +L34580 21870 +" /> +<path d="M34700 22560 +L34730 22540 +L34770 22470 +L34800 22420 +L34820 22350 +L34850 22230 +L34850 22130 +L34820 22010 +L34800 21940 +L34770 21900 +L34730 21820 +L34700 21800 +" /> +<text x="24500" y="38900" +textLength="8390" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">USB port (DFU, UART)</text> +<path d="M16250 38370 +L16250 38780 +L16270 38820 +L16300 38850 +L16350 38870 +L16440 38870 +L16490 38850 +L16510 38820 +L16540 38780 +L16540 38370 +" /> +<path d="M16750 38850 +L16820 38870 +L16940 38870 +L16990 38850 +L17010 38820 +L17040 38780 +L17040 38730 +L17010 38680 +L16990 38660 +L16940 38630 +L16850 38610 +L16800 38590 +L16770 38560 +L16750 38510 +L16750 38470 +L16770 38420 +L16800 38400 +L16850 38370 +L16960 38370 +L17040 38400 +" /> +<path d="M17420 38610 +L17490 38630 +L17510 38660 +L17540 38700 +L17540 38780 +L17510 38820 +L17490 38850 +L17440 38870 +L17250 38870 +L17250 38370 +L17420 38370 +L17460 38400 +L17490 38420 +L17510 38470 +L17510 38510 +L17490 38560 +L17460 38590 +L17420 38610 +L17250 38610 +" /> +<path d="M18130 38540 +L18130 39040 +" /> +<path d="M18130 38560 +L18180 38540 +L18270 38540 +L18320 38560 +L18350 38590 +L18370 38630 +L18370 38780 +L18350 38820 +L18320 38850 +L18270 38870 +L18180 38870 +L18130 38850 +" /> +<path d="M18660 38870 +L18610 38850 +L18580 38820 +L18560 38780 +L18560 38630 +L18580 38590 +L18610 38560 +L18660 38540 +L18730 38540 +L18770 38560 +L18800 38590 +L18820 38630 +L18820 38780 +L18800 38820 +L18770 38850 +L18730 38870 +L18660 38870 +" /> +<path d="M19040 38870 +L19040 38540 +" /> +<path d="M19040 38630 +L19060 38590 +L19080 38560 +L19130 38540 +L19180 38540 +" /> +<path d="M19270 38540 +L19460 38540 +" /> +<path d="M19350 38370 +L19350 38800 +L19370 38850 +L19420 38870 +L19460 38870 +" /> +<path d="M20160 39060 +L20130 39040 +L20080 38970 +L20060 38920 +L20040 38850 +L20010 38730 +L20010 38630 +L20040 38510 +L20060 38440 +L20080 38400 +L20130 38320 +L20160 38300 +" /> +<path d="M20350 38870 +L20350 38370 +L20460 38370 +L20540 38400 +L20580 38440 +L20610 38490 +L20630 38590 +L20630 38660 +L20610 38750 +L20580 38800 +L20540 38850 +L20460 38870 +L20350 38870 +" /> +<path d="M21010 38610 +L20850 38610 +" /> +<path d="M20850 38870 +L20850 38370 +L21080 38370 +" /> +<path d="M21270 38370 +L21270 38780 +L21300 38820 +L21320 38850 +L21370 38870 +L21470 38870 +L21510 38850 +L21540 38820 +L21560 38780 +L21560 38370 +" /> +<path d="M21820 38850 +L21820 38870 +L21800 38920 +L21770 38940 +" /> +<path d="M22420 38370 +L22420 38780 +L22440 38820 +L22470 38850 +L22510 38870 +L22610 38870 +L22660 38850 +L22680 38820 +L22700 38780 +L22700 38370 +" /> +<path d="M22920 38730 +L23160 38730 +" /> +<path d="M22870 38870 +L23040 38370 +L23200 38870 +" /> +<path d="M23660 38870 +L23490 38630 +" /> +<path d="M23370 38870 +L23370 38370 +L23560 38370 +L23610 38400 +L23630 38420 +L23660 38470 +L23660 38540 +L23630 38590 +L23610 38610 +L23560 38630 +L23370 38630 +" /> +<path d="M23800 38370 +L24080 38370 +" /> +<path d="M23940 38870 +L23940 38370 +" /> +<path d="M24200 39060 +L24230 39040 +L24270 38970 +L24300 38920 +L24320 38850 +L24350 38730 +L24350 38630 +L24320 38510 +L24300 38440 +L24270 38400 +L24230 38320 +L24200 38300 +" /> +<text x="87000" y="35650" +textLength="3490" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">SWD port</text> +<path d="M83630 35600 +L83700 35620 +L83820 35620 +L83870 35600 +L83890 35570 +L83920 35530 +L83920 35480 +L83890 35430 +L83870 35410 +L83820 35380 +L83730 35360 +L83680 35340 +L83660 35310 +L83630 35260 +L83630 35220 +L83660 35170 +L83680 35150 +L83730 35120 +L83850 35120 +L83920 35150 +" /> +<path d="M84080 35120 +L84200 35620 +L84300 35260 +L84390 35620 +L84510 35120 +" /> +<path d="M84700 35620 +L84700 35120 +L84820 35120 +L84890 35150 +L84940 35190 +L84970 35240 +L84990 35340 +L84990 35410 +L84970 35500 +L84940 35550 +L84890 35600 +L84820 35620 +L84700 35620 +" /> +<path d="M85580 35290 +L85580 35790 +" /> +<path d="M85580 35310 +L85630 35290 +L85730 35290 +L85770 35310 +L85800 35340 +L85820 35380 +L85820 35530 +L85800 35570 +L85770 35600 +L85730 35620 +L85630 35620 +L85580 35600 +" /> +<path d="M86110 35620 +L86060 35600 +L86040 35570 +L86010 35530 +L86010 35380 +L86040 35340 +L86060 35310 +L86110 35290 +L86180 35290 +L86230 35310 +L86250 35340 +L86270 35380 +L86270 35530 +L86250 35570 +L86230 35600 +L86180 35620 +L86110 35620 +" /> +<path d="M86490 35620 +L86490 35290 +" /> +<path d="M86490 35380 +L86510 35340 +L86540 35310 +L86580 35290 +L86630 35290 +" /> +<path d="M86730 35290 +L86920 35290 +" /> +<path d="M86800 35120 +L86800 35550 +L86820 35600 +L86870 35620 +L86920 35620 +" /> +<text x="109250" y="33650" +textLength="14610" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">OLED display (SSD1322, 256x64, SPI)</text> +<path d="M94880 33120 +L94980 33120 +L95020 33150 +L95070 33190 +L95100 33290 +L95100 33450 +L95070 33550 +L95020 33600 +L94980 33620 +L94880 33620 +L94830 33600 +L94790 33550 +L94760 33450 +L94760 33290 +L94790 33190 +L94830 33150 +L94880 33120 +" /> +<path d="M95550 33620 +L95310 33620 +L95310 33120 +" /> +<path d="M95720 33360 +L95880 33360 +" /> +<path d="M95950 33620 +L95720 33620 +L95720 33120 +L95950 33120 +" /> +<path d="M96170 33620 +L96170 33120 +L96290 33120 +L96360 33150 +L96410 33190 +L96430 33240 +L96450 33340 +L96450 33410 +L96430 33500 +L96410 33550 +L96360 33600 +L96290 33620 +L96170 33620 +" /> +<path d="M97260 33620 +L97260 33120 +" /> +<path d="M97260 33600 +L97220 33620 +L97120 33620 +L97070 33600 +L97050 33570 +L97020 33530 +L97020 33380 +L97050 33340 +L97070 33310 +L97120 33290 +L97220 33290 +L97260 33310 +" /> +<path d="M97500 33620 +L97500 33290 +" /> +<path d="M97500 33120 +L97480 33150 +L97500 33170 +L97520 33150 +L97500 33120 +L97500 33170 +" /> +<path d="M97720 33600 +L97760 33620 +L97860 33620 +L97910 33600 +L97930 33550 +L97930 33530 +L97910 33480 +L97860 33450 +L97790 33450 +L97740 33430 +L97720 33380 +L97720 33360 +L97740 33310 +L97790 33290 +L97860 33290 +L97910 33310 +" /> +<path d="M98140 33290 +L98140 33790 +" /> +<path d="M98140 33310 +L98190 33290 +L98290 33290 +L98330 33310 +L98360 33340 +L98380 33380 +L98380 33530 +L98360 33570 +L98330 33600 +L98290 33620 +L98190 33620 +L98140 33600 +" /> +<path d="M98670 33620 +L98620 33600 +L98600 33550 +L98600 33120 +" /> +<path d="M99070 33620 +L99070 33360 +L99050 33310 +L99000 33290 +L98910 33290 +L98860 33310 +" /> +<path d="M99070 33600 +L99020 33620 +L98910 33620 +L98860 33600 +L98830 33550 +L98830 33500 +L98860 33450 +L98910 33430 +L99020 33430 +L99070 33410 +" /> +<path d="M99260 33290 +L99380 33620 +" /> +<path d="M99500 33290 +L99380 33620 +L99330 33740 +L99310 33760 +L99260 33790 +" /> +<path d="M100220 33810 +L100190 33790 +L100140 33720 +L100120 33670 +L100100 33600 +L100070 33480 +L100070 33380 +L100100 33260 +L100120 33190 +L100140 33150 +L100190 33070 +L100220 33050 +" /> +<path d="M100380 33600 +L100450 33620 +L100570 33620 +L100620 33600 +L100640 33570 +L100670 33530 +L100670 33480 +L100640 33430 +L100620 33410 +L100570 33380 +L100480 33360 +L100430 33340 +L100410 33310 +L100380 33260 +L100380 33220 +L100410 33170 +L100430 33150 +L100480 33120 +L100600 33120 +L100670 33150 +" /> +<path d="M100860 33600 +L100930 33620 +L101050 33620 +L101100 33600 +L101120 33570 +L101140 33530 +L101140 33480 +L101120 33430 +L101100 33410 +L101050 33380 +L100950 33360 +L100910 33340 +L100880 33310 +L100860 33260 +L100860 33220 +L100880 33170 +L100910 33150 +L100950 33120 +L101070 33120 +L101140 33150 +" /> +<path d="M101360 33620 +L101360 33120 +L101480 33120 +L101550 33150 +L101600 33190 +L101620 33240 +L101640 33340 +L101640 33410 +L101620 33500 +L101600 33550 +L101550 33600 +L101480 33620 +L101360 33620 +" /> +<path d="M102120 33620 +L101830 33620 +" /> +<path d="M101980 33620 +L101980 33120 +L101930 33190 +L101880 33240 +L101830 33260 +" /> +<path d="M102290 33120 +L102600 33120 +L102430 33310 +L102500 33310 +L102550 33340 +L102570 33360 +L102600 33410 +L102600 33530 +L102570 33570 +L102550 33600 +L102500 33620 +L102360 33620 +L102310 33600 +L102290 33570 +" /> +<path d="M102790 33170 +L102810 33150 +L102860 33120 +L102980 33120 +L103020 33150 +L103050 33170 +L103070 33220 +L103070 33260 +L103050 33340 +L102760 33620 +L103070 33620 +" /> +<path d="M103260 33170 +L103290 33150 +L103330 33120 +L103450 33120 +L103500 33150 +L103520 33170 +L103550 33220 +L103550 33260 +L103520 33340 +L103240 33620 +L103550 33620 +" /> +<path d="M103790 33600 +L103790 33620 +L103760 33670 +L103740 33690 +" /> +<path d="M104360 33170 +L104380 33150 +L104430 33120 +L104550 33120 +L104600 33150 +L104620 33170 +L104640 33220 +L104640 33260 +L104620 33340 +L104330 33620 +L104640 33620 +" /> +<path d="M105100 33120 +L104860 33120 +L104830 33360 +L104860 33340 +L104910 33310 +L105020 33310 +L105070 33340 +L105100 33360 +L105120 33410 +L105120 33530 +L105100 33570 +L105070 33600 +L105020 33620 +L104910 33620 +L104860 33600 +L104830 33570 +" /> +<path d="M105550 33120 +L105450 33120 +L105410 33150 +L105380 33170 +L105330 33240 +L105310 33340 +L105310 33530 +L105330 33570 +L105360 33600 +L105410 33620 +L105500 33620 +L105550 33600 +L105570 33570 +L105600 33530 +L105600 33410 +L105570 33360 +L105550 33340 +L105500 33310 +L105410 33310 +L105360 33340 +L105330 33360 +L105310 33410 +" /> +<path d="M105760 33620 +L106020 33290 +" /> +<path d="M105760 33290 +L106020 33620 +" /> +<path d="M106430 33120 +L106330 33120 +L106290 33150 +L106260 33170 +L106220 33240 +L106190 33340 +L106190 33530 +L106220 33570 +L106240 33600 +L106290 33620 +L106380 33620 +L106430 33600 +L106450 33570 +L106480 33530 +L106480 33410 +L106450 33360 +L106430 33340 +L106380 33310 +L106290 33310 +L106240 33340 +L106220 33360 +L106190 33410 +" /> +<path d="M106910 33290 +L106910 33620 +" /> +<path d="M106790 33100 +L106670 33450 +L106980 33450 +" /> +<path d="M107190 33600 +L107190 33620 +L107170 33670 +L107140 33690 +" /> +<path d="M107760 33600 +L107830 33620 +L107950 33620 +L108000 33600 +L108020 33570 +L108050 33530 +L108050 33480 +L108020 33430 +L108000 33410 +L107950 33380 +L107860 33360 +L107810 33340 +L107790 33310 +L107760 33260 +L107760 33220 +L107790 33170 +L107810 33150 +L107860 33120 +L107980 33120 +L108050 33150 +" /> +<path d="M108260 33620 +L108260 33120 +L108450 33120 +L108500 33150 +L108520 33170 +L108550 33220 +L108550 33290 +L108520 33340 +L108500 33360 +L108450 33380 +L108260 33380 +" /> +<path d="M108760 33620 +L108760 33120 +" /> +<path d="M108950 33810 +L108980 33790 +L109020 33720 +L109050 33670 +L109070 33600 +L109100 33480 +L109100 33380 +L109070 33260 +L109050 33190 +L109020 33150 +L108980 33070 +L108950 33050 +" /> +<text x="106500" y="9650" +textLength="8160" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">5V -> 3.3V (150mA)</text> +<path d="M98730 9120 +L98490 9120 +L98470 9360 +L98490 9340 +L98540 9310 +L98660 9310 +L98700 9340 +L98730 9360 +L98750 9410 +L98750 9530 +L98730 9570 +L98700 9600 +L98660 9620 +L98540 9620 +L98490 9600 +L98470 9570 +" /> +<path d="M98890 9120 +L99060 9620 +L99230 9120 +" /> +<path d="M99770 9430 +L100160 9430 +" /> +<path d="M100390 9290 +L100770 9430 +L100390 9570 +" /> +<path d="M101350 9120 +L101660 9120 +L101490 9310 +L101560 9310 +L101610 9340 +L101630 9360 +L101660 9410 +L101660 9530 +L101630 9570 +L101610 9600 +L101560 9620 +L101420 9620 +L101370 9600 +L101350 9570 +" /> +<path d="M101870 9570 +L101890 9600 +L101870 9620 +L101850 9600 +L101870 9570 +L101870 9620 +" /> +<path d="M102060 9120 +L102370 9120 +L102200 9310 +L102270 9310 +L102320 9340 +L102350 9360 +L102370 9410 +L102370 9530 +L102350 9570 +L102320 9600 +L102270 9620 +L102130 9620 +L102080 9600 +L102060 9570 +" /> +<path d="M102510 9120 +L102680 9620 +L102850 9120 +" /> +<path d="M103540 9810 +L103510 9790 +L103470 9720 +L103440 9670 +L103420 9600 +L103390 9480 +L103390 9380 +L103420 9260 +L103440 9190 +L103470 9150 +L103510 9070 +L103540 9050 +" /> +<path d="M103990 9620 +L103700 9620 +" /> +<path d="M103850 9620 +L103850 9120 +L103800 9190 +L103750 9240 +L103700 9260 +" /> +<path d="M104440 9120 +L104200 9120 +L104180 9360 +L104200 9340 +L104250 9310 +L104370 9310 +L104420 9340 +L104440 9360 +L104470 9410 +L104470 9530 +L104440 9570 +L104420 9600 +L104370 9620 +L104250 9620 +L104200 9600 +L104180 9570 +" /> +<path d="M104770 9120 +L104820 9120 +L104870 9150 +L104890 9170 +L104920 9220 +L104940 9310 +L104940 9430 +L104920 9530 +L104890 9570 +L104870 9600 +L104820 9620 +L104770 9620 +L104730 9600 +L104700 9570 +L104680 9530 +L104660 9430 +L104660 9310 +L104680 9220 +L104700 9170 +L104730 9150 +L104770 9120 +" /> +<path d="M105160 9620 +L105160 9290 +" /> +<path d="M105160 9340 +L105180 9310 +L105230 9290 +L105300 9290 +L105350 9310 +L105370 9360 +L105370 9620 +" /> +<path d="M105370 9360 +L105390 9310 +L105440 9290 +L105510 9290 +L105560 9310 +L105580 9360 +L105580 9620 +" /> +<path d="M105800 9480 +L106040 9480 +" /> +<path d="M105750 9620 +L105920 9120 +L106080 9620 +" /> +<path d="M106200 9810 +L106230 9790 +L106270 9720 +L106300 9670 +L106320 9600 +L106350 9480 +L106350 9380 +L106320 9260 +L106300 9190 +L106270 9150 +L106230 9070 +L106200 9050 +" /> +<text x="44250" y="7150" +textLength="5750" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">Power supplies</text> +<path d="M38640 7120 +L38640 6620 +L38830 6620 +L38880 6650 +L38910 6670 +L38930 6720 +L38930 6790 +L38910 6840 +L38880 6860 +L38830 6880 +L38640 6880 +" /> +<path d="M39220 7120 +L39170 7100 +L39140 7070 +L39120 7030 +L39120 6880 +L39140 6840 +L39170 6810 +L39220 6790 +L39290 6790 +L39330 6810 +L39360 6840 +L39380 6880 +L39380 7030 +L39360 7070 +L39330 7100 +L39290 7120 +L39220 7120 +" /> +<path d="M39550 6790 +L39640 7120 +L39740 6880 +L39830 7120 +L39930 6790 +" /> +<path d="M40310 7100 +L40260 7120 +L40170 7120 +L40120 7100 +L40100 7050 +L40100 6860 +L40120 6810 +L40170 6790 +L40260 6790 +L40310 6810 +L40330 6860 +L40330 6910 +L40100 6950 +" /> +<path d="M40550 7120 +L40550 6790 +" /> +<path d="M40550 6880 +L40570 6840 +L40600 6810 +L40640 6790 +L40690 6790 +" /> +<path d="M41220 7100 +L41260 7120 +L41360 7120 +L41410 7100 +L41430 7050 +L41430 7030 +L41410 6980 +L41360 6950 +L41290 6950 +L41240 6930 +L41220 6880 +L41220 6860 +L41240 6810 +L41290 6790 +L41360 6790 +L41410 6810 +" /> +<path d="M41860 6790 +L41860 7120 +" /> +<path d="M41640 6790 +L41640 7050 +L41670 7100 +L41720 7120 +L41790 7120 +L41830 7100 +L41860 7070 +" /> +<path d="M42100 6790 +L42100 7290 +" /> +<path d="M42100 6810 +L42140 6790 +L42240 6790 +L42290 6810 +L42310 6840 +L42330 6880 +L42330 7030 +L42310 7070 +L42290 7100 +L42240 7120 +L42140 7120 +L42100 7100 +" /> +<path d="M42550 6790 +L42550 7290 +" /> +<path d="M42550 6810 +L42600 6790 +L42690 6790 +L42740 6810 +L42760 6840 +L42790 6880 +L42790 7030 +L42760 7070 +L42740 7100 +L42690 7120 +L42600 7120 +L42550 7100 +" /> +<path d="M43070 7120 +L43020 7100 +L43000 7050 +L43000 6620 +" /> +<path d="M43260 7120 +L43260 6790 +" /> +<path d="M43260 6620 +L43240 6650 +L43260 6670 +L43290 6650 +L43260 6620 +L43260 6670 +" /> +<path d="M43690 7100 +L43640 7120 +L43550 7120 +L43500 7100 +L43480 7050 +L43480 6860 +L43500 6810 +L43550 6790 +L43640 6790 +L43690 6810 +L43720 6860 +L43720 6910 +L43480 6950 +" /> +<path d="M43910 7100 +L43950 7120 +L44050 7120 +L44100 7100 +L44120 7050 +L44120 7030 +L44100 6980 +L44050 6950 +L43980 6950 +L43930 6930 +L43910 6880 +L43910 6860 +L43930 6810 +L43980 6790 +L44050 6790 +L44100 6810 +" /> +<text x="76250" y="11400" +textLength="7920" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">18V -> 5V (500mA)</text> +<path d="M68740 11370 +L68450 11370 +" /> +<path d="M68600 11370 +L68600 10870 +L68550 10940 +L68500 10990 +L68450 11010 +" /> +<path d="M69020 11090 +L68980 11060 +L68950 11040 +L68930 10990 +L68930 10970 +L68950 10920 +L68980 10900 +L69020 10870 +L69120 10870 +L69170 10900 +L69190 10920 +L69220 10970 +L69220 10990 +L69190 11040 +L69170 11060 +L69120 11090 +L69020 11090 +L68980 11110 +L68950 11130 +L68930 11180 +L68930 11280 +L68950 11320 +L68980 11350 +L69020 11370 +L69120 11370 +L69170 11350 +L69190 11320 +L69220 11280 +L69220 11180 +L69190 11130 +L69170 11110 +L69120 11090 +" /> +<path d="M69360 10870 +L69520 11370 +L69690 10870 +" /> +<path d="M70240 11180 +L70620 11180 +" /> +<path d="M70860 11040 +L71240 11180 +L70860 11320 +" /> +<path d="M72100 10870 +L71860 10870 +L71830 11110 +L71860 11090 +L71910 11060 +L72020 11060 +L72070 11090 +L72100 11110 +L72120 11160 +L72120 11280 +L72100 11320 +L72070 11350 +L72020 11370 +L71910 11370 +L71860 11350 +L71830 11320 +" /> +<path d="M72260 10870 +L72430 11370 +L72600 10870 +" /> +<path d="M73290 11560 +L73260 11540 +L73220 11470 +L73190 11420 +L73170 11350 +L73140 11230 +L73140 11130 +L73170 11010 +L73190 10940 +L73220 10900 +L73260 10820 +L73290 10800 +" /> +<path d="M73720 10870 +L73480 10870 +L73450 11110 +L73480 11090 +L73520 11060 +L73640 11060 +L73690 11090 +L73720 11110 +L73740 11160 +L73740 11280 +L73720 11320 +L73690 11350 +L73640 11370 +L73520 11370 +L73480 11350 +L73450 11320 +" /> +<path d="M74050 10870 +L74100 10870 +L74140 10900 +L74170 10920 +L74190 10970 +L74220 11060 +L74220 11180 +L74190 11280 +L74170 11320 +L74140 11350 +L74100 11370 +L74050 11370 +L74000 11350 +L73980 11320 +L73950 11280 +L73930 11180 +L73930 11060 +L73950 10970 +L73980 10920 +L74000 10900 +L74050 10870 +" /> +<path d="M74520 10870 +L74570 10870 +L74620 10900 +L74640 10920 +L74670 10970 +L74690 11060 +L74690 11180 +L74670 11280 +L74640 11320 +L74620 11350 +L74570 11370 +L74520 11370 +L74480 11350 +L74450 11320 +L74430 11280 +L74410 11180 +L74410 11060 +L74430 10970 +L74450 10920 +L74480 10900 +L74520 10870 +" /> +<path d="M74910 11370 +L74910 11040 +" /> +<path d="M74910 11090 +L74930 11060 +L74980 11040 +L75050 11040 +L75100 11060 +L75120 11110 +L75120 11370 +" /> +<path d="M75120 11110 +L75140 11060 +L75190 11040 +L75260 11040 +L75310 11060 +L75330 11110 +L75330 11370 +" /> +<path d="M75550 11230 +L75790 11230 +" /> +<path d="M75500 11370 +L75670 10870 +L75830 11370 +" /> +<path d="M75950 11560 +L75980 11540 +L76020 11470 +L76050 11420 +L76070 11350 +L76100 11230 +L76100 11130 +L76070 11010 +L76050 10940 +L76020 10900 +L75980 10820 +L75950 10800 +" /> +<text x="69750" y="35900" +textLength="5460" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="end" opacity="0">Rotary encode</text> +<path d="M64720 35870 +L64550 35630 +" /> +<path d="M64430 35870 +L64430 35370 +L64620 35370 +L64670 35400 +L64690 35420 +L64720 35470 +L64720 35540 +L64690 35590 +L64670 35610 +L64620 35630 +L64430 35630 +" /> +<path d="M65000 35870 +L64950 35850 +L64930 35820 +L64910 35780 +L64910 35630 +L64930 35590 +L64950 35560 +L65000 35540 +L65070 35540 +L65120 35560 +L65140 35590 +L65170 35630 +L65170 35780 +L65140 35820 +L65120 35850 +L65070 35870 +L65000 35870 +" /> +<path d="M65310 35540 +L65500 35540 +" /> +<path d="M65380 35370 +L65380 35800 +L65410 35850 +L65450 35870 +L65500 35870 +" /> +<path d="M65880 35870 +L65880 35610 +L65860 35560 +L65810 35540 +L65720 35540 +L65670 35560 +" /> +<path d="M65880 35850 +L65830 35870 +L65720 35870 +L65670 35850 +L65640 35800 +L65640 35750 +L65670 35700 +L65720 35680 +L65830 35680 +L65880 35660 +" /> +<path d="M66120 35870 +L66120 35540 +" /> +<path d="M66120 35630 +L66140 35590 +L66170 35560 +L66220 35540 +L66260 35540 +" /> +<path d="M66380 35540 +L66500 35870 +" /> +<path d="M66620 35540 +L66500 35870 +L66450 35990 +L66430 36010 +L66380 36040 +" /> +<path d="M67380 35850 +L67330 35870 +L67240 35870 +L67190 35850 +L67170 35800 +L67170 35610 +L67190 35560 +L67240 35540 +L67330 35540 +L67380 35560 +L67410 35610 +L67410 35660 +L67170 35700 +" /> +<path d="M67620 35540 +L67620 35870 +" /> +<path d="M67620 35590 +L67640 35560 +L67690 35540 +L67760 35540 +L67810 35560 +L67830 35610 +L67830 35870 +" /> +<path d="M68290 35850 +L68240 35870 +L68140 35870 +L68100 35850 +L68070 35820 +L68050 35780 +L68050 35630 +L68070 35590 +L68100 35560 +L68140 35540 +L68240 35540 +L68290 35560 +" /> +<path d="M68570 35870 +L68520 35850 +L68500 35820 +L68480 35780 +L68480 35630 +L68500 35590 +L68520 35560 +L68570 35540 +L68640 35540 +L68690 35560 +L68720 35590 +L68740 35630 +L68740 35780 +L68720 35820 +L68690 35850 +L68640 35870 +L68570 35870 +" /> +<path d="M69170 35870 +L69170 35370 +" /> +<path d="M69170 35850 +L69120 35870 +L69020 35870 +L68980 35850 +L68950 35820 +L68930 35780 +L68930 35630 +L68950 35590 +L68980 35560 +L69020 35540 +L69120 35540 +L69170 35560 +" /> +<path d="M69600 35850 +L69550 35870 +L69450 35870 +L69410 35850 +L69380 35800 +L69380 35610 +L69410 35560 +L69450 35540 +L69550 35540 +L69600 35560 +L69620 35610 +L69620 35660 +L69380 35700 +" /> +<text x="64000" y="53650" +textLength="2730" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">Keypad</text> +<path d="M64140 53620 +L64140 53120 +" /> +<path d="M64430 53620 +L64220 53340 +" /> +<path d="M64430 53120 +L64140 53410 +" /> +<path d="M64830 53600 +L64790 53620 +L64690 53620 +L64640 53600 +L64620 53550 +L64620 53360 +L64640 53310 +L64690 53290 +L64790 53290 +L64830 53310 +L64860 53360 +L64860 53410 +L64620 53450 +" /> +<path d="M65030 53290 +L65140 53620 +" /> +<path d="M65260 53290 +L65140 53620 +L65100 53740 +L65070 53760 +L65030 53790 +" /> +<path d="M65450 53290 +L65450 53790 +" /> +<path d="M65450 53310 +L65500 53290 +L65600 53290 +L65640 53310 +L65670 53340 +L65690 53380 +L65690 53530 +L65670 53570 +L65640 53600 +L65600 53620 +L65500 53620 +L65450 53600 +" /> +<path d="M66120 53620 +L66120 53360 +L66100 53310 +L66050 53290 +L65950 53290 +L65910 53310 +" /> +<path d="M66120 53600 +L66070 53620 +L65950 53620 +L65910 53600 +L65880 53550 +L65880 53500 +L65910 53450 +L65950 53430 +L66070 53430 +L66120 53410 +" /> +<path d="M66570 53620 +L66570 53120 +" /> +<path d="M66570 53600 +L66530 53620 +L66430 53620 +L66380 53600 +L66360 53570 +L66330 53530 +L66330 53380 +L66360 53340 +L66380 53310 +L66430 53290 +L66530 53290 +L66570 53310 +" /> +<text x="62500" y="46150" +textLength="1560" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">USB</text> +<path d="M62640 45620 +L62640 46030 +L62670 46070 +L62690 46100 +L62740 46120 +L62830 46120 +L62880 46100 +L62910 46070 +L62930 46030 +L62930 45620 +" /> +<path d="M63140 46100 +L63220 46120 +L63330 46120 +L63380 46100 +L63410 46070 +L63430 46030 +L63430 45980 +L63410 45930 +L63380 45910 +L63330 45880 +L63240 45860 +L63190 45840 +L63170 45810 +L63140 45760 +L63140 45720 +L63170 45670 +L63190 45650 +L63240 45620 +L63360 45620 +L63430 45650 +" /> +<path d="M63810 45860 +L63880 45880 +L63910 45910 +L63930 45950 +L63930 46030 +L63910 46070 +L63880 46100 +L63830 46120 +L63640 46120 +L63640 45620 +L63810 45620 +L63860 45650 +L63880 45670 +L63910 45720 +L63910 45760 +L63880 45810 +L63860 45840 +L63810 45860 +L63640 45860 +" /> +<text x="60250" y="40900" +textLength="6580" font-size="660" lengthAdjust="spacingAndGlyphs" +text-anchor="start" opacity="0">=> OLED display</text> +<path d="M60390 40610 +L60780 40610 +" /> +<path d="M60780 40750 +L60390 40750 +" /> +<path d="M61010 40540 +L61390 40680 +L61010 40820 +" /> +<path d="M62110 40370 +L62200 40370 +L62250 40400 +L62300 40440 +L62320 40540 +L62320 40700 +L62300 40800 +L62250 40850 +L62200 40870 +L62110 40870 +L62060 40850 +L62010 40800 +L61990 40700 +L61990 40540 +L62010 40440 +L62060 40400 +L62110 40370 +" /> +<path d="M62780 40870 +L62540 40870 +L62540 40370 +" /> +<path d="M62940 40610 +L63110 40610 +" /> +<path d="M63180 40870 +L62940 40870 +L62940 40370 +L63180 40370 +" /> +<path d="M63390 40870 +L63390 40370 +L63510 40370 +L63580 40400 +L63630 40440 +L63660 40490 +L63680 40590 +L63680 40660 +L63660 40750 +L63630 40800 +L63580 40850 +L63510 40870 +L63390 40870 +" /> +<path d="M64490 40870 +L64490 40370 +" /> +<path d="M64490 40850 +L64440 40870 +L64350 40870 +L64300 40850 +L64280 40820 +L64250 40780 +L64250 40630 +L64280 40590 +L64300 40560 +L64350 40540 +L64440 40540 +L64490 40560 +" /> +<path d="M64730 40870 +L64730 40540 +" /> +<path d="M64730 40370 +L64700 40400 +L64730 40420 +L64750 40400 +L64730 40370 +L64730 40420 +" /> +<path d="M64940 40850 +L64990 40870 +L65080 40870 +L65130 40850 +L65160 40800 +L65160 40780 +L65130 40730 +L65080 40700 +L65010 40700 +L64970 40680 +L64940 40630 +L64940 40610 +L64970 40560 +L65010 40540 +L65080 40540 +L65130 40560 +" /> +<path d="M65370 40540 +L65370 41040 +" /> +<path d="M65370 40560 +L65420 40540 +L65510 40540 +L65560 40560 +L65580 40590 +L65610 40630 +L65610 40780 +L65580 40820 +L65560 40850 +L65510 40870 +L65420 40870 +L65370 40850 +" /> +<path d="M65890 40870 +L65850 40850 +L65820 40800 +L65820 40370 +" /> +<path d="M66300 40870 +L66300 40610 +L66280 40560 +L66230 40540 +L66130 40540 +L66080 40560 +" /> +<path d="M66300 40850 +L66250 40870 +L66130 40870 +L66080 40850 +L66060 40800 +L66060 40750 +L66080 40700 +L66130 40680 +L66250 40680 +L66300 40660 +" /> +<path d="M66490 40540 +L66610 40870 +" /> +<path d="M66730 40540 +L66610 40870 +L66560 40990 +L66540 41010 +L66490 41040 +" /> +</g> +<g style="fill:#0000C2; fill-opacity:0.0; +stroke:#0000C2; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:0.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="59250" cy="47000" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="88000" cy="52750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="88000" cy="57250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="14500" cy="67500" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="14500" cy="73250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="18250" cy="73250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="50500" cy="69750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="29500" cy="16250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="49500" cy="69750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="18250" cy="67500" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="29250" cy="13250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="51500" cy="31750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="50500" cy="31750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="18000" cy="28250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="91750" cy="48750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="10500" cy="6250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="98250" cy="28250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="10500" cy="21250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="98250" cy="29250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="105250" cy="28250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="106250" cy="13250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="51500" cy="69750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="10500" cy="16250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="52500" cy="31750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="86000" cy="46750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="74750" cy="46750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="74750" cy="50750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="78500" cy="46750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="82250" cy="46750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="82250" cy="50750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="78500" cy="50750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="80500" cy="57250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="80500" cy="52750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="80500" cy="48750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="80500" cy="44250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="74750" cy="42250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="78500" cy="42250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="86000" cy="50750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="67000" cy="13250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="84250" cy="44250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="84250" cy="48750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="84250" cy="52750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="84250" cy="57250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="88000" cy="48750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="88000" cy="44250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="82250" cy="42250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="28000" cy="17250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="86000" cy="42250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="89750" cy="42250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="28000" cy="18250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="91750" cy="44250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="38750" cy="35000" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="67000" cy="17500" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="67000" cy="14250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="70750" cy="14250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="67000" cy="21250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="70750" cy="21250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="41000" cy="46000" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="41000" cy="49250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="36000" cy="49250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="91000" cy="13250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="87250" cy="17250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="87250" cy="13250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="22500" cy="31250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="9500" cy="15250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="33000" cy="73250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="38750" cy="42000" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="42000" cy="37000" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="42000" cy="42000" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="49500" cy="31750" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="24750" cy="67500" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="24750" cy="73250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="37000" cy="35000" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="42000" cy="29500" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="36000" cy="47500" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="39750" cy="47500" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="95000" cy="13250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="21500" cy="67500" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="10500" cy="13250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="9500" cy="12250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:0; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:100; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<circle cx="21500" cy="73250" r="200" /> +</g> +<g style="fill:#008400; fill-opacity:1.0; +stroke:#008400; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#000084; fill-opacity:1.0; +stroke:#000084; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +</g> +<g style="fill:#000084; fill-opacity:0.0; +stroke:#000084; stroke-width:60; stroke-opacity:1; +stroke-linecap:round; stroke-linejoin:round;"> +<path d="M43260 49760 +L43740 50240 +" /> +<path d="M43740 49760 +L43260 50240 +" /> +<path d="M17010 34010 +L17490 34490 +" /> +<path d="M17490 34010 +L17010 34490 +" /> +<path d="M43260 54760 +L43740 55240 +" /> +<path d="M43740 54760 +L43260 55240 +" /> +<path d="M43260 57760 +L43740 58240 +" /> +<path d="M43740 57760 +L43260 58240 +" /> +<path d="M43260 58760 +L43740 59240 +" /> +<path d="M43740 58760 +L43260 59240 +" /> +<path d="M43260 59760 +L43740 60240 +" /> +<path d="M43740 59760 +L43260 60240 +" /> +<path d="M104010 26010 +L104490 26490 +" /> +<path d="M104490 26010 +L104010 26490 +" /> +<path d="M99010 25010 +L99490 25490 +" /> +<path d="M99490 25010 +L99010 25490 +" /> +<path d="M43260 61760 +L43740 62240 +" /> +<path d="M43740 61760 +L43260 62240 +" /> +<path d="M43260 62760 +L43740 63240 +" /> +<path d="M43740 62760 +L43260 63240 +" /> +<path d="M43260 63760 +L43740 64240 +" /> +<path d="M43740 63760 +L43260 64240 +" /> +<path d="M43260 64760 +L43740 65240 +" /> +<path d="M43740 64760 +L43260 65240 +" /> +<path d="M43260 65760 +L43740 66240 +" /> +<path d="M43740 65760 +L43260 66240 +" /> +<path d="M60510 52760 +L60990 53240 +" /> +<path d="M60990 52760 +L60510 53240 +" /> +<path d="M57260 61760 +L57740 62240 +" /> +<path d="M57740 61760 +L57260 62240 +" /> +<path d="M57260 43760 +L57740 44240 +" /> +<path d="M57740 43760 +L57260 44240 +" /> +<path d="M57260 42760 +L57740 43240 +" /> +<path d="M57740 42760 +L57260 43240 +" /> +<path d="M57260 40760 +L57740 41240 +" /> +<path d="M57740 40760 +L57260 41240 +" /> +<path d="M10260 51760 +L10740 52240 +" /> +<path d="M10740 51760 +L10260 52240 +" /> +<path d="M10260 53760 +L10740 54240 +" /> +<path d="M10740 53760 +L10260 54240 +" /> +<path d="M10260 47760 +L10740 48240 +" /> +<path d="M10740 47760 +L10260 48240 +" /> +<path d="M10260 46760 +L10740 47240 +" /> +<path d="M10740 46760 +L10260 47240 +" /> +<path d="M57260 60760 +L57740 61240 +" /> +<path d="M57740 60760 +L57260 61240 +" /> +<path d="M57260 44760 +L57740 45240 +" /> +<path d="M57740 44760 +L57260 45240 +" /> +<path d="M57260 62760 +L57740 63240 +" /> +<path d="M57740 62760 +L57260 63240 +" /> +<path d="M57260 63760 +L57740 64240 +" /> +<path d="M57740 63760 +L57260 64240 +" /> +<path d="M57260 64760 +L57740 65240 +" /> +<path d="M57740 64760 +L57260 65240 +" /> +<path d="M57260 65760 +L57740 66240 +" /> +<path d="M57740 65760 +L57260 66240 +" /> +<path d="M57260 66760 +L57740 67240 +" /> +<path d="M57740 66760 +L57260 67240 +" /> +<path d="M43260 66760 +L43740 67240 +" /> +<path d="M43740 66760 +L43260 67240 +" /> +<path d="M60510 53760 +L60990 54240 +" /> +<path d="M60990 53760 +L60510 54240 +" /> +</g> +</svg>