summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@chimrod.com>2018-05-09 08:16:05 +0200
committerSébastien Dailly <sebastien@chimrod.com>2018-05-09 08:16:05 +0200
commit3fc344bdae8cbfaaf7d49d13ef2e021e1a974770 (patch)
tree592e426e96ac592b8c7b4148f0f90ee6ac78727e
Initial commit
-rw-r--r--.gitignore2
-rw-r--r--Makefile55
-rwxr-xr-xcontent/5mm_Red_LED.jpgbin0 -> 36844 bytes
-rw-r--r--content/ARDUINO_UNO_DIP_01.pngbin0 -> 894550 bytes
-rwxr-xr-xcontent/L293D_Motor_Driver.jpgbin0 -> 168565 bytes
-rw-r--r--content/LM1117.jpgbin0 -> 26901 bytes
-rwxr-xr-xcontent/Sharp_GP2Y0A21YK.jpgbin0 -> 30416 bytes
-rw-r--r--content/USB-2-0-B-MALE-TO-5.jpgbin0 -> 18681 bytes
-rw-r--r--content/arduino_l293d.qet746
-rw-r--r--content/arduino_l293d.svg4164
-rw-r--r--content/arduino_ohmetre.qet634
-rw-r--r--content/arduino_ohmetre.svg1303
-rw-r--r--content/attiny_programater.qet625
-rw-r--r--content/attiny_programatter.svg5019
-rw-r--r--content/big_nokia_5110_montage.jpgbin0 -> 488454 bytes
-rwxr-xr-xcontent/capteur_infra.qet543
-rwxr-xr-xcontent/capteur_infra.svg1390
-rwxr-xr-xcontent/cligo_led.qet743
-rw-r--r--content/cligo_led.svg1273
-rw-r--r--content/condensateur.jpgbin0 -> 19446 bytes
-rw-r--r--content/l293d.svg851
-rw-r--r--content/nokia_5110.qet851
-rw-r--r--content/nokia_5110.svg4031
-rw-r--r--content/nokia_5110_montage.jpgbin0 -> 54645 bytes
-rw-r--r--content/ohm.py24
-rwxr-xr-xcontent/piezzo_buzzer.jpgbin0 -> 28105 bytes
-rw-r--r--content/polarity.svg115
-rw-r--r--content/pont_diviseur.qet333
-rw-r--r--content/pont_diviseur.svg549
-rw-r--r--content/s-l500.jpgbin0 -> 26132 bytes
-rw-r--r--notes_arduino.rst1260
-rwxr-xr-xresources/CaviarDreams.ttfbin0 -> 58864 bytes
-rw-r--r--resources/admonitions.tex36
-rwxr-xr-xresources/colors.tex5
-rw-r--r--resources/figures.tex20
-rwxr-xr-xresources/header_footer.tex44
-rwxr-xr-xresources/language.tex8
-rwxr-xr-xresources/modules11
-rwxr-xr-xresources/nowidows.tex2
-rw-r--r--resources/preamble.tex51
-rwxr-xr-xresources/title_style.tex67
-rwxr-xr-xresources/units.rst16
-rwxr-xr-xresources/zz_ref.tex35
43 files changed, 24806 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..44a77b6
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+tmp/
+*.pdf
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..530980f
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,55 @@
+TEX=xelatex
+SOURCE=.
+
+SRC =$(wildcard *.rst)
+SVG =$(wildcard content/*.svg)
+
+PDFS = $(SRC:.rst=.pdf)
+INCLUDED_PDF = $(SVG:.svg=.pdf)
+
+all: $(PDFS)
+
+BIBS =$(wildcard *.bib)
+
+DIR = $(sort $(shell find $(SOURCE) -name '*.rst' -print))
+SOURCES = $(sort $(wildcard resources/*.tex))
+
+null :=
+space := $(null) #
+comma := ,
+TEX_STYLE := $(subst $(space),$(comma),$(strip $(SOURCES)))
+TEX_BIBS := $(subst $(space),$(comma),$(strip $(BIBS)))
+
+PACK = $(shell sed -e 's/\#.*$$//' -e '/^$$/d' resources/modules)
+PACKAGES := $(subst $(space),$(comma),$(strip $(PACK)))
+
+tmp:
+ mkdir tmp
+
+# Image generation
+content/%.pdf: content/%.svg
+ inkscape -D -z --export-pdf=$@ $<
+
+%.pdf: %.dot
+ dot -Tpdf $< | ps2pdf - $@
+
+# Generate the latex file from rst
+tmp/%.tex: %.rst $(INCLUDED_PDF) $(SOURCES)| tmp
+ rst2latex --no-section-subtitles --no-section-numbering --table-style=borderless --use-latex-citations --use-latex-docinfo --documentclass=article --documentoption=12pt,A4,table --syntax-highlight=short --stylesheet=$(PACKAGES),$(TEX_STYLE) $< $@
+ sed -i -e 's/continued on next page/suite sur la page suivante/;s|^%$$||' $@
+ sed -i -e 's/longtable\*/mytable/g' $@
+ sed -i -e 's/p{[0-9]\.[0-9]*\\DUtablewidth}/X/g' $@
+ sed -i -e 's/admonition-/admonition/g' $@
+
+# Generate each pdf with latex
+tmp/%.pdf: tmp/%.tex $(BIBS) | tmp
+ $(TEX) -output-directory tmp $<
+ #bibtex tmp/$*.aux && $(TEX) -output-directory tmp $< || echo "no bib"
+ while grep 'Rerun to get ' tmp/$*.log ; do $(TEX) -output-directory tmp $< ; done
+
+# Put the pdf in the right place
+%.pdf: tmp/%.pdf | tmp
+ cp $< $@
+
+clean:
+ rm -r tmp
diff --git a/content/5mm_Red_LED.jpg b/content/5mm_Red_LED.jpg
new file mode 100755
index 0000000..230eccb
--- /dev/null
+++ b/content/5mm_Red_LED.jpg
Binary files differ
diff --git a/content/ARDUINO_UNO_DIP_01.png b/content/ARDUINO_UNO_DIP_01.png
new file mode 100644
index 0000000..5dcd36f
--- /dev/null
+++ b/content/ARDUINO_UNO_DIP_01.png
Binary files differ
diff --git a/content/L293D_Motor_Driver.jpg b/content/L293D_Motor_Driver.jpg
new file mode 100755
index 0000000..ba161e8
--- /dev/null
+++ b/content/L293D_Motor_Driver.jpg
Binary files differ
diff --git a/content/LM1117.jpg b/content/LM1117.jpg
new file mode 100644
index 0000000..23bfe1b
--- /dev/null
+++ b/content/LM1117.jpg
Binary files differ
diff --git a/content/Sharp_GP2Y0A21YK.jpg b/content/Sharp_GP2Y0A21YK.jpg
new file mode 100755
index 0000000..4b5ec2b
--- /dev/null
+++ b/content/Sharp_GP2Y0A21YK.jpg
Binary files differ
diff --git a/content/USB-2-0-B-MALE-TO-5.jpg b/content/USB-2-0-B-MALE-TO-5.jpg
new file mode 100644
index 0000000..2448e4b
--- /dev/null
+++ b/content/USB-2-0-B-MALE-TO-5.jpg
Binary files differ
diff --git a/content/arduino_l293d.qet b/content/arduino_l293d.qet
new file mode 100644
index 0000000..0bfc348
--- /dev/null
+++ b/content/arduino_l293d.qet
@@ -0,0 +1,746 @@
+<project version="0.5" title="" folioSheetQuantity="0">
+ <properties/>
+ <newdiagrams>
+ <border rowsize="80" displayrows="true" cols="17" colsize="60" rows="8" displaycols="true"/>
+ <inset author="" date="null" folio="%id/%total" filename="" displayAt="bottom" title=""/>
+ <conductors onetextperfolio="0" numsize="7" horizrotatetext="0" type="multi" tension-protocol="" displaytext="1" num="_" vertirotatetext="270" function=""/>
+ <report label="%f-%l%c"/>
+ <xrefs>
+ <xref type="commutator" showpowerctc="false" switchprefix="" displayhas="cross" delayprefix="" snapto="label" powerprefix=""/>
+ <xref type="protection" showpowerctc="false" switchprefix="" displayhas="cross" delayprefix="" snapto="label" powerprefix=""/>
+ <xref type="coil" showpowerctc="false" switchprefix="" displayhas="cross" delayprefix="" snapto="label" powerprefix=""/>
+ </xrefs>
+ <conductors_autonums/>
+ </newdiagrams>
+ <diagram author="" rowsize="80" version="0.5" displayrows="true" order="1" date="null" folio="%id/%total" cols="17" colsize="60" filename="" displayAt="bottom" rows="8" title="" displaycols="true" height="660">
+ <defaultconductor onetextperfolio="0" numsize="7" horizrotatetext="0" type="multi" tension-protocol="" displaytext="1" num="_" vertirotatetext="270" function=""/>
+ <elements>
+ <element type="embed://import/10_electric/20_manufacturers_articles/arduino/arduino_uno.elmt" x="530" y="590" uuid="{52cd1669-3b4b-4d27-8572-b0b11f71209d}" orientation="3">
+ <terminals>
+ <terminal x="146" y="210" name="_" nameHidden="0" number="_" id="0" orientation="1"/>
+ <terminal x="146" y="50" name="_" nameHidden="0" number="_" id="1" orientation="1"/>
+ <terminal x="146" y="60" name="_" nameHidden="0" number="_" id="2" orientation="1"/>
+ <terminal x="146" y="70" name="_" nameHidden="0" number="_" id="3" orientation="1"/>
+ <terminal x="146" y="40" name="_" nameHidden="0" number="_" id="4" orientation="1"/>
+ <terminal x="-6" y="80" name="_" nameHidden="0" number="_" id="5" orientation="3"/>
+ <terminal x="-6" y="90" name="_" nameHidden="0" number="_" id="6" orientation="3"/>
+ <terminal x="-6" y="100" name="_" nameHidden="0" number="_" id="7" orientation="3"/>
+ <terminal x="-6" y="110" name="_" nameHidden="0" number="_" id="8" orientation="3"/>
+ <terminal x="-6" y="120" name="_" nameHidden="0" number="_" id="9" orientation="3"/>
+ <terminal x="-6" y="170" name="_" nameHidden="0" number="_" id="10" orientation="3"/>
+ <terminal x="-6" y="180" name="_" nameHidden="0" number="_" id="11" orientation="3"/>
+ <terminal x="-6" y="190" name="_" nameHidden="0" number="_" id="12" orientation="3"/>
+ <terminal x="-6" y="200" name="_" nameHidden="0" number="_" id="13" orientation="3"/>
+ <terminal x="-6" y="210" name="_" nameHidden="0" number="_" id="14" orientation="3"/>
+ <terminal x="146" y="200" name="_" nameHidden="0" number="_" id="15" orientation="1"/>
+ <terminal x="146" y="190" name="_" nameHidden="0" number="_" id="16" orientation="1"/>
+ <terminal x="146" y="180" name="_" nameHidden="0" number="_" id="17" orientation="1"/>
+ <terminal x="-6" y="70" name="_" nameHidden="0" number="_" id="18" orientation="3"/>
+ <terminal x="-6" y="160" name="_" nameHidden="0" number="_" id="19" orientation="3"/>
+ <terminal x="146" y="130" name="_" nameHidden="0" number="_" id="20" orientation="1"/>
+ <terminal x="146" y="140" name="_" nameHidden="0" number="_" id="21" orientation="1"/>
+ <terminal x="146" y="150" name="_" nameHidden="0" number="_" id="22" orientation="1"/>
+ <terminal x="146" y="160" name="_" nameHidden="0" number="_" id="23" orientation="1"/>
+ <terminal x="146" y="170" name="_" nameHidden="0" number="_" id="24" orientation="1"/>
+ <terminal x="146" y="80" name="_" nameHidden="0" number="_" id="25" orientation="1"/>
+ <terminal x="146" y="90" name="_" nameHidden="0" number="_" id="26" orientation="1"/>
+ <terminal x="146" y="120" name="_" nameHidden="0" number="_" id="27" orientation="1"/>
+ <terminal x="146" y="110" name="_" nameHidden="0" number="_" id="28" orientation="1"/>
+ <terminal x="146" y="100" name="_" nameHidden="0" number="_" id="29" orientation="1"/>
+ <terminal x="-6" y="130" name="_" nameHidden="0" number="_" id="30" orientation="3"/>
+ <terminal x="-6" y="140" name="_" nameHidden="0" number="_" id="31" orientation="3"/>
+ <terminal x="10" y="-16" name="_" nameHidden="0" number="_" id="32" orientation="0"/>
+ <terminal x="110" y="-16" name="_" nameHidden="0" number="_" id="33" orientation="0"/>
+ </terminals>
+ <inputs>
+ <input text="3.3V" x="-3" y="104" userx="11.7266" usery="89.2734" userrotation="-270"/>
+ <input text="3.3V" x="-3" y="104" userx="11.7266" usery="89.2734" userrotation="-270"/>
+ <input text="GND" x="-3" y="124" userx="10.1641" usery="110.836" userrotation="-270"/>
+ <input text="GND" x="-3" y="124" userx="10.1641" usery="110.836" userrotation="-270"/>
+ <input text="GND" x="-3" y="133" userx="10.1641" usery="119.836" userrotation="-270"/>
+ <input text="GND" x="-3" y="133" userx="10.1641" usery="119.836" userrotation="-270"/>
+ <input text="Vin" x="-2" y="144" userx="9.17969" usery="132.82" userrotation="-270"/>
+ <input text="Vin" x="-2" y="144" userx="9.17969" usery="132.82" userrotation="-270"/>
+ <input text="ANALOG IN" x="17" y="169" userx="40.5625" usery="192.563" userrotation="-180"/>
+ <input text="ANALOG IN" x="17" y="169" userx="40.5625" usery="192.563" userrotation="-180"/>
+ <input text="POWER" x="18" y="112" userx="34.9531" usery="128.953" userrotation="-180"/>
+ <input text="POWER" x="18" y="112" userx="34.9531" usery="128.953" userrotation="-180"/>
+ <input text="RESET" x="-3" y="93" userx="13.7969" usery="76.2031" userrotation="-270"/>
+ <input text="RESET" x="-3" y="93" userx="13.7969" usery="76.2031" userrotation="-270"/>
+ <input text="5V" x="-3" y="114" userx="7.4375" usery="103.563" userrotation="-270"/>
+ <input text="5V" x="-3" y="114" userx="7.4375" usery="103.563" userrotation="-270"/>
+ <input text="IO ref" x="-3" y="84" userx="13.9766" usery="67.0234" userrotation="-270"/>
+ <input text="IO ref" x="-3" y="84" userx="13.9766" usery="67.0234" userrotation="-270"/>
+ <input text="RX" x="90" y="66" userx="97.9453" usery="73.9453" userrotation="-180"/>
+ <input text="RX" x="90" y="66" userx="97.9453" usery="73.9453" userrotation="-180"/>
+ <input text="L" x="108" y="69" userx="113.391" usery="74.3906" userrotation="-180"/>
+ <input text="L" x="108" y="69" userx="113.391" usery="74.3906" userrotation="-180"/>
+ <input text="A5" x="-2" y="214" userx="7.9375" usery="204.063" userrotation="-270"/>
+ <input text="A5" x="-2" y="214" userx="7.9375" usery="204.063" userrotation="-270"/>
+ <input text="A4" x="-2" y="204" userx="7.9375" usery="194.063" userrotation="-270"/>
+ <input text="A4" x="-2" y="204" userx="7.9375" usery="194.063" userrotation="-270"/>
+ <input text="A3" x="-2" y="194" userx="7.9375" usery="184.063" userrotation="-270"/>
+ <input text="A3" x="-2" y="194" userx="7.9375" usery="184.063" userrotation="-270"/>
+ <input text="A0" x="-2" y="164" userx="7.9375" usery="154.063" userrotation="-270"/>
+ <input text="A0" x="-2" y="164" userx="7.9375" usery="154.063" userrotation="-270"/>
+ <input text="A2" x="-2" y="184" userx="7.9375" usery="174.063" userrotation="-270"/>
+ <input text="A2" x="-2" y="184" userx="7.9375" usery="174.063" userrotation="-270"/>
+ <input text="A1" x="-2" y="174" userx="7.9375" usery="164.063" userrotation="-270"/>
+ <input text="A1" x="-2" y="174" userx="7.9375" usery="164.063" userrotation="-270"/>
+ <input text="~9" x="128" y="123" userx="138.625" usery="112.375" userrotation="-270"/>
+ <input text="~9" x="128" y="123" userx="138.625" usery="112.375" userrotation="-270"/>
+ <input text="12" x="130" y="94" userx="139.719" usery="84.2813" userrotation="-270"/>
+ <input text="12" x="130" y="94" userx="139.719" usery="84.2813" userrotation="-270"/>
+ <input text="~10" x="122" y="114" userx="135.484" usery="100.516" userrotation="-270"/>
+ <input text="~10" x="122" y="114" userx="135.484" usery="100.516" userrotation="-270"/>
+ <input text="TX->1" x="114" y="204" userx="132.063" usery="185.938" userrotation="-270"/>
+ <input text="TX->1" x="114" y="204" userx="132.063" usery="185.938" userrotation="-270"/>
+ <input text="RX&lt;-0" x="114" y="214" userx="132.445" usery="195.555" userrotation="-270"/>
+ <input text="RX&lt;-0" x="114" y="214" userx="132.445" usery="195.555" userrotation="-270"/>
+ <input text="~11" x="123" y="104" userx="136.484" usery="90.5156" userrotation="-270"/>
+ <input text="~11" x="123" y="104" userx="136.484" usery="90.5156" userrotation="-270"/>
+ <input text="8" x="136" y="133" userx="142.859" usery="126.141" userrotation="-270"/>
+ <input text="8" x="136" y="133" userx="142.859" usery="126.141" userrotation="-270"/>
+ <input text="4" x="136" y="173" userx="142.859" usery="166.141" userrotation="-270"/>
+ <input text="4" x="136" y="173" userx="142.859" usery="166.141" userrotation="-270"/>
+ <input text="7" x="136" y="144" userx="142.859" usery="137.141" userrotation="-270"/>
+ <input text="7" x="136" y="144" userx="142.859" usery="137.141" userrotation="-270"/>
+ <input text="~3" x="128" y="183" userx="138.625" usery="172.375" userrotation="-270"/>
+ <input text="~3" x="128" y="183" userx="138.625" usery="172.375" userrotation="-270"/>
+ <input text="2" x="136" y="193" userx="142.859" usery="186.141" userrotation="-270"/>
+ <input text="2" x="136" y="193" userx="142.859" usery="186.141" userrotation="-270"/>
+ <input text="13" x="130" y="83" userx="139.719" usery="73.2813" userrotation="-270"/>
+ <input text="13" x="130" y="83" userx="139.719" usery="73.2813" userrotation="-270"/>
+ <input text="DIGITAL (PWM~)" x="117" y="131" userx="150.266" usery="164.266" userrotation="-180"/>
+ <input text="DIGITAL (PWM~)" x="117" y="131" userx="150.266" usery="164.266" userrotation="-180"/>
+ <input text="~5" x="128" y="163" userx="138.625" usery="152.375" userrotation="-270"/>
+ <input text="~5" x="128" y="163" userx="138.625" usery="152.375" userrotation="-270"/>
+ <input text="~6" x="128" y="154" userx="138.625" usery="143.375" userrotation="-270"/>
+ <input text="~6" x="128" y="154" userx="138.625" usery="143.375" userrotation="-270"/>
+ <input text="AREF" x="118" y="63" userx="133.625" usery="47.375" userrotation="-270"/>
+ <input text="AREF" x="118" y="63" userx="133.625" usery="47.375" userrotation="-270"/>
+ <input text="GND" x="121" y="73" userx="135.305" usery="58.6953" userrotation="-270"/>
+ <input text="GND" x="121" y="73" userx="135.305" usery="58.6953" userrotation="-270"/>
+ <input text="ARDUINO" x="88" y="87" userx="113.172" usery="112.172" userrotation="-180"/>
+ <input text="ARDUINO" x="88" y="87" userx="113.172" usery="112.172" userrotation="-180"/>
+ <input text="UNO" x="95" y="145" userx="112.594" usery="162.594" userrotation="-180"/>
+ <input text="UNO" x="95" y="145" userx="112.594" usery="162.594" userrotation="-180"/>
+ <input text="TX" x="98" y="66" userx="105.734" usery="73.7344" userrotation="-180"/>
+ <input text="TX" x="98" y="66" userx="105.734" usery="73.7344" userrotation="-180"/>
+ <input text="AIMEL" x="51" y="135" userx="36.4063" usery="120.406" userrotation="0"/>
+ <input text="AIMEL" x="51" y="135" userx="36.4063" usery="120.406" userrotation="0"/>
+ <input text="MADE IN ITALY" x="78" y="169" userx="93.0313" usery="184.031" userrotation="-180"/>
+ <input text="MADE IN ITALY" x="78" y="169" userx="93.0313" usery="184.031" userrotation="-180"/>
+ <input text="" x="-40" y="10"/>
+ </inputs>
+ </element>
+ <element type="embed://import/10_electric/10_allpole/391_consumers&amp;actuators/10_engines/moteur_dc.elmt" x="500" y="290" uuid="{671adf48-93b9-4807-8bff-a6855443f03f}" orientation="0">
+ <terminals>
+ <terminal x="0" y="-26" name="_" nameHidden="0" number="_" id="34" orientation="0"/>
+ <terminal x="0" y="26" name="_" nameHidden="0" number="_" id="35" orientation="2"/>
+ </terminals>
+ <inputs>
+ <input text="M" x="-8.5" y="7" userx="4.125" usery="-5.625" userrotation="-270"/>
+ <input text="M" x="-8.5" y="7" userx="4.125" usery="-5.625" userrotation="-270"/>
+ <input text="Moteur 1" x="20" y="5" userx="-30" usery="30" userrotation="270"/>
+ </inputs>
+ </element>
+ <element type="embed://import/10_electric/10_allpole/391_consumers&amp;actuators/10_engines/moteur_dc.elmt" x="760" y="260" uuid="{a6200116-14fa-4e60-ac3c-d602f44de0c2}" orientation="0">
+ <terminals>
+ <terminal x="0" y="-26" name="_" nameHidden="0" number="_" id="36" orientation="0"/>
+ <terminal x="0" y="26" name="_" nameHidden="0" number="_" id="37" orientation="2"/>
+ </terminals>
+ <inputs>
+ <input text="M" x="-8.5" y="7" userx="4.125" usery="-5.625" userrotation="-270"/>
+ <input text="M" x="-8.5" y="7" userx="4.125" usery="-5.625" userrotation="-270"/>
+ <input text="Moteur 2" x="20" y="5" userx="-30" usery="30" userrotation="270"/>
+ </inputs>
+ </element>
+ <element type="embed://import/l293d.elmt" x="630" y="290" uuid="{0ed1a770-98c2-4cc5-8c9f-0a7c317cb5d1}" orientation="0">
+ <terminals>
+ <terminal x="-27" y="-40" name="_" nameHidden="0" number="_" id="38" orientation="3"/>
+ <terminal x="26" y="10" name="_" nameHidden="0" number="_" id="39" orientation="1"/>
+ <terminal x="26" y="-40" name="_" nameHidden="0" number="_" id="40" orientation="1"/>
+ <terminal x="-27" y="30" name="_" nameHidden="0" number="_" id="41" orientation="3"/>
+ <terminal x="-27" y="0" name="_" nameHidden="0" number="_" id="42" orientation="3"/>
+ <terminal x="-27" y="-20" name="_" nameHidden="0" number="_" id="43" orientation="3"/>
+ <terminal x="-27" y="-10" name="_" nameHidden="0" number="_" id="44" orientation="3"/>
+ <terminal x="26" y="30" name="_" nameHidden="0" number="_" id="45" orientation="1"/>
+ <terminal x="-27" y="-30" name="_" nameHidden="0" number="_" id="46" orientation="3"/>
+ <terminal x="26" y="-10" name="_" nameHidden="0" number="_" id="47" orientation="1"/>
+ <terminal x="26" y="20" name="_" nameHidden="0" number="_" id="48" orientation="1"/>
+ <terminal x="26" y="0" name="_" nameHidden="0" number="_" id="49" orientation="1"/>
+ <terminal x="26" y="-30" name="_" nameHidden="0" number="_" id="50" orientation="1"/>
+ <terminal x="-27" y="20" name="_" nameHidden="0" number="_" id="51" orientation="3"/>
+ <terminal x="26" y="-20" name="_" nameHidden="0" number="_" id="52" orientation="1"/>
+ <terminal x="-27" y="10" name="_" nameHidden="0" number="_" id="53" orientation="3"/>
+ </terminals>
+ <inputs>
+ <input text="GROUND" x="-18" y="-16" userx="-5.00781" usery="-3.00781" userrotation="-180"/>
+ <input text="GROUND" x="-18" y="-16" userx="-5.00781" usery="-3.00781" userrotation="-180"/>
+ <input text="8" x="-26.3" y="28.5285" userx="-20.0734" usery="22.3019" userrotation="90"/>
+ <input text="8" x="-26.3" y="28.5285" userx="-20.0734" usery="22.3019" userrotation="90"/>
+ <input text="9" x="23" y="27" userx="29.2266" usery="20.7734" userrotation="90"/>
+ <input text="9" x="23" y="27" userx="29.2266" usery="20.7734" userrotation="90"/>
+ <input text="10" x="23" y="17" userx="31.4531" usery="8.54688" userrotation="90"/>
+ <input text="10" x="23" y="17" userx="31.4531" usery="8.54688" userrotation="90"/>
+ <input text="11" x="23" y="7" userx="31.4531" usery="-1.45313" userrotation="90"/>
+ <input text="11" x="23" y="7" userx="31.4531" usery="-1.45313" userrotation="90"/>
+ <input text="12" x="23" y="-3" userx="31.4531" usery="-11.4531" userrotation="90"/>
+ <input text="12" x="23" y="-3" userx="31.4531" usery="-11.4531" userrotation="90"/>
+ <input text="13" x="23" y="-13" userx="31.4531" usery="-21.4531" userrotation="90"/>
+ <input text="13" x="23" y="-13" userx="31.4531" usery="-21.4531" userrotation="90"/>
+ <input text="5" x="-26.3" y="-1.59074" userx="-20.0734" usery="-7.8173" userrotation="90"/>
+ <input text="5" x="-26.3" y="-1.59074" userx="-20.0734" usery="-7.8173" userrotation="90"/>
+ <input text="1" x="-26.3" y="-41.8541" userx="-20.0734" usery="-48.0807" userrotation="90"/>
+ <input text="1" x="-26.3" y="-41.8541" userx="-20.0734" usery="-48.0807" userrotation="90"/>
+ <input text="4" x="-27" y="-11.1566" userx="-20.2734" usery="-17.8832" userrotation="90"/>
+ <input text="4" x="-27" y="-11.1566" userx="-20.2734" usery="-17.8832" userrotation="90"/>
+ <input text="7" x="-26.3" y="18.5409" userx="-20.0734" usery="12.3143" userrotation="90"/>
+ <input text="7" x="-26.3" y="18.5409" userx="-20.0734" usery="12.3143" userrotation="90"/>
+ <input text="16" x="23" y="-43" userx="31.9531" usery="-51.9531" userrotation="90"/>
+ <input text="16" x="23" y="-43" userx="31.9531" usery="-51.9531" userrotation="90"/>
+ <input text="6" x="-26" y="8.3968" userx="-19.2734" usery="1.67024" userrotation="90"/>
+ <input text="6" x="-26" y="8.3968" userx="-19.2734" usery="1.67024" userrotation="90"/>
+ <input text="3" x="-26.3" y="-21.3007" userx="-20.0734" usery="-27.5273" userrotation="90"/>
+ <input text="3" x="-26.3" y="-21.3007" userx="-20.0734" usery="-27.5273" userrotation="90"/>
+ <input text="2" x="-26.3" y="-31.8666" userx="-20.0734" usery="-38.0932" userrotation="90"/>
+ <input text="2" x="-26.3" y="-31.8666" userx="-20.0734" usery="-38.0932" userrotation="90"/>
+ <input text="" x="-20" y="-63" userx="-20" usery="-60"/>
+ <input text="14" x="22" y="-23" userx="30.9531" usery="-31.9531" userrotation="90"/>
+ <input text="14" x="22" y="-23" userx="30.9531" usery="-31.9531" userrotation="90"/>
+ <input text="15" x="23" y="-33" userx="31.4531" usery="-41.4531" userrotation="90"/>
+ <input text="15" x="23" y="-33" userx="31.4531" usery="-41.4531" userrotation="90"/>
+ <input text="3A" x="12" y="22" userx="19.7891" usery="14.2109" userrotation="90"/>
+ <input text="3A" x="12" y="22" userx="19.7891" usery="14.2109" userrotation="90"/>
+ <input text="3Y" x="13" y="12" userx="20.1094" usery="4.89063" userrotation="90"/>
+ <input text="3Y" x="13" y="12" userx="20.1094" usery="4.89063" userrotation="90"/>
+ <input text="1Y" x="-19" y="-18" userx="-11.8906" usery="-25.1094" userrotation="90"/>
+ <input text="1Y" x="-19" y="-18" userx="-11.8906" usery="-25.1094" userrotation="90"/>
+ <input text="1A" x="-19" y="-28" userx="-11.2109" usery="-35.7891" userrotation="90"/>
+ <input text="1A" x="-19" y="-28" userx="-11.2109" usery="-35.7891" userrotation="90"/>
+ <input text="1,2EN" x="-19" y="-38" userx="-7.59375" usery="-49.4063" userrotation="90"/>
+ <input text="1,2EN" x="-19" y="-38" userx="-7.59375" usery="-49.4063" userrotation="90"/>
+ <input text="VCC1" x="6" y="-38" userx="16.7734" usery="-48.7734" userrotation="90"/>
+ <input text="VCC1" x="6" y="-38" userx="16.7734" usery="-48.7734" userrotation="90"/>
+ <input text="4A" x="12" y="-28" userx="19.7891" usery="-35.7891" userrotation="90"/>
+ <input text="4A" x="12" y="-28" userx="19.7891" usery="-35.7891" userrotation="90"/>
+ <input text="4Y" x="13" y="-18" userx="20.1094" usery="-25.1094" userrotation="90"/>
+ <input text="4Y" x="13" y="-18" userx="20.1094" usery="-25.1094" userrotation="90"/>
+ <input text="GROUND" x="18" y="4" userx="5.00781" usery="-8.99219" userrotation="0"/>
+ <input text="GROUND" x="18" y="4" userx="5.00781" usery="-8.99219" userrotation="0"/>
+ <input text="3,4EN" x="5" y="33" userx="16.4063" usery="21.5938" userrotation="90"/>
+ <input text="3,4EN" x="5" y="33" userx="16.4063" usery="21.5938" userrotation="90"/>
+ <input text="VCC2" x="-19" y="32" userx="-8.22656" usery="21.2266" userrotation="90"/>
+ <input text="VCC2" x="-19" y="32" userx="-8.22656" usery="21.2266" userrotation="90"/>
+ <input text="2A" x="-19" y="22" userx="-11.2109" usery="14.2109" userrotation="90"/>
+ <input text="2A" x="-19" y="22" userx="-11.2109" usery="14.2109" userrotation="90"/>
+ <input text="2Y" x="-19" y="12" userx="-11.8906" usery="4.89063" userrotation="90"/>
+ <input text="2Y" x="-19" y="12" userx="-11.8906" usery="4.89063" userrotation="90"/>
+ <input text="L293D" x="4" y="12" userx="-17.7734" usery="-9.77344" userrotation="0"/>
+ <input text="L293D" x="4" y="12" userx="-17.7734" usery="-9.77344" userrotation="0"/>
+ </inputs>
+ </element>
+ </elements>
+ <conductors>
+ <conductor onetextperfolio="0" numsize="7" horizrotatetext="0" rotation="270" x="-20" type="multi" y="-80" tension-protocol="" displaytext="1" num="" vertirotatetext="270" terminal1="34" terminal2="43" function="">
+ <segment length="-9" orientation="vertical"/>
+ <segment length="40" orientation="horizontal"/>
+ <segment length="19" orientation="vertical"/>
+ <segment length="50" orientation="horizontal"/>
+ <segment length="9" orientation="horizontal"/>
+ </conductor>
+ <conductor onetextperfolio="0" numsize="7" horizrotatetext="0" rotation="270" x="0" type="multi" color="#0000ff" y="0" tension-protocol="" displaytext="1" num="Avant M2" vertirotatetext="270" terminal1="50" userx="720" terminal2="16" usery="380" function="">
+ <segment length="9" orientation="horizontal"/>
+ <segment length="51" orientation="horizontal"/>
+ <segment length="171" orientation="vertical"/>
+ <segment length="9" orientation="vertical"/>
+ </conductor>
+ <conductor onetextperfolio="0" numsize="7" horizrotatetext="0" rotation="180" x="-20" type="multi" y="-80" tension-protocol="" displaytext="1" num="" vertirotatetext="270" terminal1="53" terminal2="35" function="">
+ <segment length="0" orientation="horizontal"/>
+ <segment length="-49.5" orientation="horizontal"/>
+ <segment length="34" orientation="vertical"/>
+ <segment length="-49.5" orientation="horizontal"/>
+ <segment length="-14" orientation="vertical"/>
+ </conductor>
+ <conductor onetextperfolio="0" numsize="7" horizrotatetext="0" rotation="270" x="0" type="multi" color="#005500" y="0" tension-protocol="" displaytext="1" num="Arriere M2" vertirotatetext="270" terminal1="48" userx="760" terminal2="24" usery="390" function="">
+ <segment length="9" orientation="horizontal"/>
+ <segment length="91" orientation="horizontal"/>
+ <segment length="100" orientation="vertical"/>
+ <segment length="-60" orientation="horizontal"/>
+ <segment length="21" orientation="vertical"/>
+ <segment length="9" orientation="vertical"/>
+ </conductor>
+ <conductor onetextperfolio="0" numsize="7" horizrotatetext="0" rotation="180" x="-20" type="multi" y="-80" tension-protocol="" displaytext="1" num="" vertirotatetext="270" terminal1="37" terminal2="39" function="">
+ <segment length="9" orientation="vertical"/>
+ <segment length="1" orientation="vertical"/>
+ <segment length="-91" orientation="horizontal"/>
+ <segment length="-9" orientation="horizontal"/>
+ </conductor>
+ <conductor onetextperfolio="0" numsize="7" horizrotatetext="0" rotation="0" x="0" type="multi" color="#ffaa00" y="0" tension-protocol="" displaytext="1" num="Vitesse M1" vertirotatetext="270" terminal1="38" userx="510" terminal2="23" usery="230" function="">
+ <segment length="-9" orientation="horizontal"/>
+ <segment length="-30" orientation="horizontal"/>
+ <segment length="170" orientation="vertical"/>
+ <segment length="130" orientation="horizontal"/>
+ <segment length="11" orientation="vertical"/>
+ <segment length="9" orientation="vertical"/>
+ </conductor>
+ <conductor onetextperfolio="0" numsize="7" horizrotatetext="0" rotation="270" x="0" type="multi" color="#ffaa00" y="0" tension-protocol="" displaytext="1" num="Vitesse M2" vertirotatetext="270" terminal1="45" userx="690" terminal2="17" usery="400" function="">
+ <segment length="9" orientation="horizontal"/>
+ <segment length="41" orientation="horizontal"/>
+ <segment length="111" orientation="vertical"/>
+ <segment length="9" orientation="vertical"/>
+ </conductor>
+ <conductor onetextperfolio="0" numsize="7" horizrotatetext="0" rotation="180" x="-20" type="multi" y="-80" tension-protocol="" displaytext="1" num="" vertirotatetext="270" terminal1="52" terminal2="36" function=""/>
+ <conductor onetextperfolio="0" numsize="7" horizrotatetext="0" rotation="270" x="0" type="multi" color="#0000ff" y="0" tension-protocol="" displaytext="1" num="Avant M1" vertirotatetext="270" terminal1="46" userx="570" terminal2="21" usery="400" function="">
+ <segment length="-9" orientation="horizontal"/>
+ <segment length="-20" orientation="horizontal"/>
+ <segment length="150" orientation="vertical"/>
+ <segment length="100" orientation="horizontal"/>
+ <segment length="21" orientation="vertical"/>
+ <segment length="9" orientation="vertical"/>
+ </conductor>
+ <conductor onetextperfolio="0" numsize="7" horizrotatetext="0" rotation="270" x="0" type="multi" color="#005500" y="0" tension-protocol="" displaytext="1" num="Arriere M1" vertirotatetext="270" terminal1="51" terminal2="20" function="">
+ <segment length="-9" orientation="horizontal"/>
+ <segment length="90" orientation="vertical"/>
+ <segment length="70" orientation="horizontal"/>
+ <segment length="31" orientation="vertical"/>
+ <segment length="9" orientation="vertical"/>
+ </conductor>
+ <conductor onetextperfolio="0" numsize="7" horizrotatetext="0" x="0" type="multi" y="0" tension-protocol="" displaytext="1" num="" vertirotatetext="270" terminal1="40" terminal2="8" function="">
+ <segment length="9" orientation="horizontal"/>
+ <segment length="-40" orientation="vertical"/>
+ <segment length="121" orientation="horizontal"/>
+ <segment length="410" orientation="vertical"/>
+ <segment length="-150" orientation="horizontal"/>
+ <segment length="-11" orientation="vertical"/>
+ <segment length="-9" orientation="vertical"/>
+ </conductor>
+ </conductors>
+ </diagram>
+ <collection>
+ <category name="import">
+ <names>
+ <name lang="el">Εισηγμένα στοιχεία</name>
+ <name lang="pl">Elementy importowane</name>
+ <name lang="en">Imported elements</name>
+ <name lang="fr">Éléments importés</name>
+ <name lang="ru">Импортированные элементы</name>
+ <name lang="es">Elementos importados</name>
+ <name lang="nl">Elementen geïmporteerd</name>
+ <name lang="pt">elementos importados</name>
+ <name lang="ca">Elements importats</name>
+ <name lang="de">Importierte elemente</name>
+ <name lang="cs">Zavedené prvky</name>
+ <name lang="it">Elementi importati</name>
+ <name lang="hr">Uvezeni elementi</name>
+ <name lang="ro">Elemente importate</name>
+ </names>
+ <category name="10_electric">
+ <names>
+ <name lang="el">Ηλεκτρικά</name>
+ <name lang="pl">Elektrotechnika</name>
+ <name lang="en">Electric</name>
+ <name lang="fr">Electrique</name>
+ <name lang="ru">Электротехника</name>
+ <name lang="nl">Elektrotechniek</name>
+ <name lang="de">Elektrik</name>
+ <name lang="it">Elettrica</name>
+ <name lang="cs">Elektrotechnika</name>
+ </names>
+ <category name="20_manufacturers_articles">
+ <names>
+ <name lang="el">Κατασκευαστές υλικού</name>
+ <name lang="pl">Urządzenia producentów</name>
+ <name lang="en">Manufacturers articles</name>
+ <name lang="fr">Articles constructeurs</name>
+ <name lang="ru">База изделий производителей</name>
+ <name lang="de">Herstellerartikel</name>
+ <name lang="it">Marchi produttori</name>
+ </names>
+ <category name="arduino">
+ <names>
+ <name lang="en">Arduino</name>
+ <name lang="cs">Arduino</name>
+ </names>
+ <element name="arduino_uno.elmt">
+ <definition version="0.5" type="element" width="190" link_type="simple" hotspot_x="25" hotspot_y="35" orientation="dyyy" height="270">
+ <uuid uuid="{adc899b2-6c00-4fcf-a605-6427cc667d01}"/>
+ <names>
+ <name lang="pl">Arduino Uno</name>
+ <name lang="nl">Arduino Uno</name>
+ <name lang="fr">Arduino Uno</name>
+ <name lang="en">Arduino Uno</name>
+ <name lang="cs">Arduino Uno</name>
+ <name lang="it">Arduino Uno</name>
+ </names>
+ <informations>ezza</informations>
+ <description>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="95" y="-30" width="35" antialias="false" height="45"/>
+ <circle style="line-style:normal;line-weight:normal;filling:none;color:black" x="-17" y="19" diameter="12" antialias="true"/>
+ <text text="3.3V" x="-3" y="104" size="7"/>
+ <text text="GND" x="-3" y="124" size="6"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="94" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="136" width="2" antialias="false" height="5"/>
+ <text text="GND" x="-3" y="133" size="6"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="158" width="2" antialias="false" height="5"/>
+ <text text="Vin" x="-2" y="144" size="7"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="186" width="2" antialias="false" height="5"/>
+ <text rotation="90" text="ANALOG IN" x="17" y="169" size="5"/>
+ <text rotation="90" text="POWER" x="18" y="112" size="5"/>
+ <text text="RESET" x="-3" y="93" size="6"/>
+ <text text="5V" x="-3" y="114" size="7"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="158" width="2" antialias="false" height="5"/>
+ <text text="IO ref" x="-3" y="84" size="7"/>
+ <circle style="line-style:dotted;line-weight:thin;filling:none;color:black" x="1.7044" y="13.7044" diameter="20.5913" antialias="true"/>
+ <polygon y1="-14" y2="221" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="223" y4="230" y5="230" y6="220" x1="-20" y7="220" x2="-20" y8="-14" x3="-10" y9="-14" x4="0" x5="105" x6="120" closed="false" x7="160" x8="160" x9="160" antialias="false"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="179" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="165" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="73" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="179" width="2" antialias="false" height="5"/>
+ <circle style="line-style:normal;line-weight:normal;filling:none;color:black" x="97.75" y="76.75" diameter="2.5" antialias="true"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="136" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="73" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="186" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="101" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="151" width="2" antialias="false" height="5"/>
+ <circle style="line-style:normal;line-weight:normal;filling:none;color:black" x="108.75" y="76.75" diameter="2.5" antialias="true"/>
+ <text rotation="90" text="RX" x="90" y="66" size="4"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="94" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="101" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="165" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="115" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="115" width="2" antialias="false" height="5"/>
+ <text rotation="90" text="L" x="108" y="69" size="4"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="193" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="80" width="2" antialias="false" height="5"/>
+ <rect style="line-style:dotted;line-weight:thin;filling:none;color:black" x="108" y="75" width="4" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="151" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="80" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="66" width="2" antialias="false" height="5"/>
+ <rect style="line-style:dotted;line-weight:thin;filling:none;color:black" x="97" y="75" width="4" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="66" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="193" width="2" antialias="false" height="5"/>
+ <circle style="line-style:normal;line-weight:normal;filling:none;color:black" x="91" y="216" diameter="12" antialias="true"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="143" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="143" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="122" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="122" width="2" antialias="false" height="5"/>
+ <circle style="line-style:normal;line-weight:normal;filling:none;color:black" x="145" y="19" diameter="12" antialias="true"/>
+ <circle style="line-style:normal;line-weight:normal;filling:none;color:black" x="11" y="216" diameter="12" antialias="true"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="108" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="108" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="172" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="76" y="206" width="8" antialias="false" height="18"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="129" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="129" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="87" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="87" width="2" antialias="false" height="5"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="66" y="206" width="8" antialias="false" height="18"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="68" y="218" width="4" antialias="false" height="4"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="128" y="28" width="4" antialias="false" height="4"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="78" y="208" width="4" antialias="false" height="4"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="58" y="218" width="4" antialias="false" height="4"/>
+ <ellipse style="line-style:normal;line-weight:normal;filling:none;color:black" x="99" y="108" width="11" antialias="true" height="15"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="144" y="34" width="12" antialias="false" height="182"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="68" y="208" width="4" antialias="false" height="4"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="78" y="218" width="4" antialias="false" height="4"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="128" y="38" width="4" antialias="false" height="4"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="116" y="36" width="18" antialias="false" height="8"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="104" y="112" width="1" antialias="false" height="8"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="128" y="48" width="4" antialias="false" height="4"/>
+ <text text="A5" x="-2" y="214" size="7"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="116" y="26" width="18" antialias="false" height="8"/>
+ <text text="A4" x="-2" y="204" size="7"/>
+ <text text="A3" x="-2" y="194" size="7"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="118" y="38" width="4" antialias="false" height="4"/>
+ <text text="A0" x="-2" y="164" size="7"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="118" y="48" width="4" antialias="false" height="4"/>
+ <text text="A2" x="-2" y="184" size="7"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="118" y="28" width="4" antialias="false" height="4"/>
+ <text text="A1" x="-2" y="174" size="7"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="116" y="46" width="18" antialias="false" height="8"/>
+ <text text="~9" x="128" y="123" size="7"/>
+ <text text="12" x="130" y="94" size="7"/>
+ <text text="~10" x="122" y="114" size="7"/>
+ <text text="TX->1" x="114" y="204" size="7"/>
+ <text text="RX&lt;-0" x="114" y="214" size="7"/>
+ <text text="~11" x="123" y="104" size="7"/>
+ <text text="8" x="136" y="133" size="7"/>
+ <text text="4" x="136" y="173" size="7"/>
+ <text text="7" x="136" y="144" size="7"/>
+ <text text="~3" x="128" y="183" size="7"/>
+ <text text="2" x="136" y="193" size="7"/>
+ <text text="13" x="130" y="83" size="7"/>
+ <text rotation="90" text="DIGITAL (PWM~)" x="117" y="131" size="5"/>
+ <text text="~5" x="128" y="163" size="7"/>
+ <text text="~6" x="128" y="154" size="7"/>
+ <text text="AREF" x="118" y="63" size="7"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="167" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-16" y="64" width="12" antialias="false" height="82"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="177" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="47" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="157" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="57" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="37" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="167" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="147" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="137" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="197" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="127" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="207" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="97" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="107" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="187" width="6" antialias="false" height="6"/>
+ <arc style="line-style:normal;line-weight:normal;filling:none;color:black" x="-20" start="-180" y="-20" width="12" angle="-90" antialias="false" height="12"/>
+ <arc style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" start="90" y="-20" width="12" angle="-90" antialias="false" height="12"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="58" y="208" width="4" antialias="false" height="4"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="187" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="87" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="117" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="77" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="197" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="97" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="177" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="107" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="87" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="67" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="157" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="77" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="207" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="67" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="127" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="137" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="117" width="6" antialias="false" height="6"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-16" y="154" width="12" antialias="false" height="62"/>
+ <text text="GND" x="121" y="73" size="7"/>
+ <line y1="135" y2="135" x1="146" x2="154" style="line-style:dotted;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="213" y2="79" x1="113" x2="113" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <text rotation="90" text="ARDUINO" x="88" y="87" size="7"/>
+ <ellipse style="line-style:normal;line-weight:normal;filling:none;color:black" x="99" y="93" width="11" antialias="true" height="15"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="104" y="97" width="1" antialias="false" height="8"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="101" y="115" width="7" antialias="false" height="1"/>
+ <ellipse style="line-style:dashed;line-weight:thin;filling:none;color:black" x="89" y="143" width="21" antialias="true" height="32"/>
+ <text rotation="90" text="UNO" x="95" y="145" size="9"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="56" y="206" width="8" antialias="false" height="18"/>
+ <circle style="line-style:dotted;line-weight:thin;filling:none;color:black" x="145" y="-8" diameter="10" antialias="true"/>
+ <rect style="line-style:dashed;line-weight:thin;filling:none;color:black" x="141" y="-11" width="17" antialias="false" height="16"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="1" y="-29" width="20" antialias="false" height="31"/>
+ <line y1="-22" y2="-22" x1="1" x2="21" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="6" y="2" width="10" antialias="false" height="1"/>
+ <line y1="-20" y2="-20" x1="-13" x2="1" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <circle style="line-style:normal;line-weight:normal;filling:none;color:black" x="89.75" y="76.75" diameter="2.5" antialias="true"/>
+ <rect style="line-style:dotted;line-weight:thin;filling:none;color:black" x="89" y="75" width="4" antialias="false" height="6"/>
+ <text rotation="90" text="TX" x="98" y="66" size="4"/>
+ <text rotation="270" text="AIMEL" x="51" y="135" size="5"/>
+ <line y1="131" y2="117" x1="45" x2="45" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <rect style="line-style:dotted;line-weight:thin;filling:none;color:black" x="37" y="65" width="32" antialias="false" height="137"/>
+ <rect style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="172" width="2" antialias="false" height="5"/>
+ <line y1="97" y2="145" x1="26" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="155" y2="213" x1="26" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <ellipse style="line-style:dashed;line-weight:thin;filling:none;color:black" x="68" y="19" width="9" antialias="true" height="22"/>
+ <circle style="line-style:dotted;line-weight:thin;filling:none;color:black" x="1.70437" y="40.7044" diameter="20.5913" antialias="true"/>
+ <rect style="line-style:dashed;line-weight:thin;filling:none;color:black" x="51" y="-12" width="16" antialias="false" height="8"/>
+ <text rotation="90" text="MADE IN ITALY" x="78" y="169" size="2"/>
+ <line y1="-20" y2="-20" x1="22" x2="94" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="-20" y2="-20" x1="154" x2="131" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <input rotate="true" text="_" tagg="label" x="-40" y="10" size="9"/>
+ <terminal x="150" y="210" orientation="e"/>
+ <terminal x="150" y="50" orientation="e"/>
+ <terminal x="150" y="60" orientation="e"/>
+ <terminal x="150" y="70" orientation="e"/>
+ <terminal x="150" y="40" orientation="e"/>
+ <terminal x="-10" y="80" orientation="w"/>
+ <terminal x="-10" y="90" orientation="w"/>
+ <terminal x="-10" y="100" orientation="w"/>
+ <terminal x="-10" y="110" orientation="w"/>
+ <terminal x="-10" y="120" orientation="w"/>
+ <terminal x="-10" y="170" orientation="w"/>
+ <terminal x="-10" y="180" orientation="w"/>
+ <terminal x="-10" y="190" orientation="w"/>
+ <terminal x="-10" y="200" orientation="w"/>
+ <terminal x="-10" y="210" orientation="w"/>
+ <terminal x="150" y="200" orientation="e"/>
+ <terminal x="150" y="190" orientation="e"/>
+ <terminal x="150" y="180" orientation="e"/>
+ <terminal x="-10" y="70" orientation="w"/>
+ <terminal x="-10" y="160" orientation="w"/>
+ <terminal x="150" y="130" orientation="e"/>
+ <terminal x="150" y="140" orientation="e"/>
+ <terminal x="150" y="150" orientation="e"/>
+ <terminal x="150" y="160" orientation="e"/>
+ <terminal x="150" y="170" orientation="e"/>
+ <terminal x="150" y="80" orientation="e"/>
+ <terminal x="150" y="90" orientation="e"/>
+ <terminal x="150" y="120" orientation="e"/>
+ <terminal x="150" y="110" orientation="e"/>
+ <terminal x="150" y="100" orientation="e"/>
+ <terminal x="-10" y="130" orientation="w"/>
+ <terminal x="-10" y="140" orientation="w"/>
+ <terminal x="10" y="-20" orientation="n"/>
+ <terminal x="110" y="-20" orientation="n"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ </category>
+ <category name="10_allpole">
+ <names>
+ <name lang="el">Πολυγραμμικό</name>
+ <name lang="pl">Schematy wieloliniowe</name>
+ <name lang="en">All-pole</name>
+ <name lang="fr">Multifilaire</name>
+ <name lang="ru">Многополюсные</name>
+ <name lang="nl">Veel polig</name>
+ <name lang="cs">Vícežilový</name>
+ <name lang="it">Multifilare</name>
+ <name lang="de">Allpolig</name>
+ </names>
+ <category name="391_consumers&amp;actuators">
+ <names>
+ <name lang="el">Καταναλώσεις και ενεργοποιητές</name>
+ <name lang="pl">Odbiorniki i urządzenia wykonawcze</name>
+ <name lang="en">Consumers and actuators</name>
+ <name lang="fr">Consommateurs et actionneurs</name>
+ <name lang="ru">Исполнительные механизмы</name>
+ <name lang="nl">Verbruikers en bewegingen</name>
+ <name lang="it">Utilizzatori e attuatori</name>
+ <name lang="de">Verbraucher und Aktoren</name>
+ <name lang="cs">Spotřebitelé a spouštěče</name>
+ </names>
+ <category name="10_engines">
+ <names>
+ <name lang="el">Μοτέρ</name>
+ <name lang="pl">Silniki</name>
+ <name lang="ar">محرّك</name>
+ <name lang="en">Engines</name>
+ <name lang="fr">Moteurs</name>
+ <name lang="ru">Двигатели</name>
+ <name lang="nl">Motor</name>
+ <name lang="es">Motor</name>
+ <name lang="pt">Motor</name>
+ <name lang="de">Motoren</name>
+ <name lang="cs">Motor</name>
+ <name lang="it">Motori</name>
+ </names>
+ <element name="moteur_dc.elmt">
+ <definition version="0.4" type="element" width="40" link_type="simple" hotspot_x="20" ic="true" hotspot_y="35" orientation="dyyy" height="70">
+ <uuid uuid="{98E9FBE6-EA27-4212-A530-9A9C77E4B500}"/>
+ <names>
+ <name lang="ar">محرّك تيّار مستمرّ</name>
+ <name lang="de">Gleichstrom Motor</name>
+ <name lang="ru">Эл. мотор постоянного тока</name>
+ <name lang="pt">Motor de corrente contínua</name>
+ <name lang="el">Μοτέρ συνεχούς</name>
+ <name lang="en">DC motor</name>
+ <name lang="it">Motore a corrente continua</name>
+ <name lang="fr">Moteur à courant continu</name>
+ <name lang="pl">Silnik prądu stałego</name>
+ <name lang="es">Motor de corriente continuo</name>
+ <name lang="nl">Motor DC</name>
+ <name lang="cs">Motor na stejnosměrný proud</name>
+ </names>
+ <informations>Author: The QElectroTech team
+License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
+ <description>
+ <circle style="line-style:normal;line-weight:normal;filling:none;color:black" x="-15" y="-15" diameter="30" antialias="true"/>
+ <line y1="18" y2="14.5" x1="5" x2="5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="18" y2="30" x1="0" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <text text="M" x="-8.5" y="7" size="15"/>
+ <line y1="-30" y2="-18" x1="0" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="18" y2="18" x1="-5" x2="5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="-18" y2="-14.5" x1="5" x2="5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="-14.5" y2="-18" x1="-5" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="-18" y2="-18" x1="-5" x2="5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="14.5" y2="18" x1="-5" x2="-5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <input text="M_" tagg="label" x="20" y="5" size="9"/>
+ <terminal x="0" y="-30" orientation="n"/>
+ <terminal x="0" y="30" orientation="s"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ </category>
+ </category>
+ </category>
+ <element name="l293d.elmt">
+ <definition version="0.5" type="element" width="70" link_type="simple" hotspot_x="32" hotspot_y="57" orientation="dyyy" height="100">
+ <uuid uuid="{0db06aa3-6066-44e4-ab12-cde54434f3ea}"/>
+ <names>
+ <name lang="ro">pic16f84</name>
+ </names>
+ <informations>Author: Angelescu Constantin
+titus0818@yahoo.com</informations>
+ <description>
+ <text rotation="90" text="GROUND" x="-18" y="-16" size="3"/>
+ <text text="8" x="-26.3" y="28.5285" size="5"/>
+ <text text="9" x="23" y="27" size="5"/>
+ <text text="10" x="23" y="17" size="5"/>
+ <text text="11" x="23" y="7" size="5"/>
+ <text text="12" x="23" y="-3" size="5"/>
+ <text text="13" x="23" y="-13" size="5"/>
+ <text text="5" x="-26.3" y="-1.59074" size="5"/>
+ <text text="1" x="-26.3" y="-41.8541" size="5"/>
+ <text text="4" x="-27" y="-11.1566" size="5"/>
+ <text text="7" x="-26.3" y="18.5409" size="5"/>
+ <text text="16" x="23" y="-43" size="5"/>
+ <text text="6" x="-26" y="8.3968" size="5"/>
+ <text text="3" x="-26.3" y="-21.3007" size="5"/>
+ <arc style="line-style:normal;line-weight:normal;filling:none;color:black" x="-4.175" y="-54.305" start="0" width="10.35" angle="-180" antialias="true" height="9.75"/>
+ <text text="2" x="-26.3" y="-31.8666" size="5"/>
+ <input rotate="true" text="_" x="-20" tagg="label" y="-63" size="9"/>
+ <text text="14" x="22" y="-23" size="5"/>
+ <text text="15" x="23" y="-33" size="5"/>
+ <text text="3A" x="12" y="22" size="4"/>
+ <text text="3Y" x="13" y="12" size="4"/>
+ <text text="1Y" x="-19" y="-18" size="4"/>
+ <text text="1A" x="-19" y="-28" size="4"/>
+ <text text="1,2EN" x="-19" y="-38" size="4"/>
+ <text text="VCC1" x="6" y="-38" size="4"/>
+ <text text="4A" x="12" y="-28" size="4"/>
+ <text text="4Y" x="13" y="-18" size="4"/>
+ <text rotation="270" text="GROUND" x="18" y="4" size="3"/>
+ <text text="3,4EN" x="5" y="33" size="4"/>
+ <text text="VCC2" x="-19" y="32" size="4"/>
+ <text text="2A" x="-19" y="22" size="4"/>
+ <text text="2Y" x="-19" y="12" size="4"/>
+ <text rotation="270" text="L293D" x="4" y="12" size="8"/>
+ <rect style="line-style:normal;line-weight:normal;filling:none;color:black" x="-21" y="-50" width="42.5" antialias="false" height="90"/>
+ <line y1="-40" y2="-40" x1="-26" x2="-21" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="-30" y2="-30" x1="-26" x2="-21" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="-20" y2="-20" x1="-26" x2="-21" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="-10" y2="-10" x1="-26" x2="-21" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="0" y2="0" x1="-26" x2="-21" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="10" y2="10" x1="-26" x2="-21" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="20" y2="20" x1="-26" x2="-21" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="30" y2="30" x1="-26" x2="-21" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="30" y2="30" x1="25.75" x2="21.5" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="20" y2="20" x1="21.5" x2="25.75" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="10" y2="10" x1="21.5" x2="25.75" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="0" y2="0" x1="21.5" x2="25.75" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="-10" y2="-10" x1="21.5" x2="25.75" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="-20" y2="-20" x1="21.5" x2="25.75" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="-30" y2="-30" x1="21.5" x2="25.75" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <line y1="-40" y2="-40" x1="21.5" x2="25.75" style="line-style:normal;line-weight:normal;filling:none;color:black" end1="none" end2="none" antialias="false" length1="1.5" length2="1.5"/>
+ <terminal x="-25" y="-40" orientation="w"/>
+ <terminal x="25" y="10" orientation="e"/>
+ <terminal x="25" y="-40" orientation="e"/>
+ <terminal x="-25" y="30" orientation="w"/>
+ <terminal x="-25" y="0" orientation="w"/>
+ <terminal x="-25" y="-20" orientation="w"/>
+ <terminal x="-25" y="-10" orientation="w"/>
+ <terminal x="25" y="30" orientation="e"/>
+ <terminal x="-25" y="-30" orientation="w"/>
+ <terminal x="25" y="-10" orientation="e"/>
+ <terminal x="25" y="20" orientation="e"/>
+ <terminal x="25" y="0" orientation="e"/>
+ <terminal x="25" y="-30" orientation="e"/>
+ <terminal x="-25" y="20" orientation="w"/>
+ <terminal x="25" y="-20" orientation="e"/>
+ <terminal x="-25" y="10" orientation="w"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ </collection>
+</project>
diff --git a/content/arduino_l293d.svg b/content/arduino_l293d.svg
new file mode 100644
index 0000000..9d97a1f
--- /dev/null
+++ b/content/arduino_l293d.svg
@@ -0,0 +1,4164 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ 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="370.417mm"
+ height="455.083mm"
+ version="1.2"
+ id="svg1132"
+ sodipodi:docname="arduino_l293d.svg"
+ inkscape:version="0.92.1 r15371">
+ <metadata
+ id="metadata1136">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1680"
+ inkscape:window-height="1050"
+ id="namedview1134"
+ showgrid="false"
+ inkscape:zoom="0.77617358"
+ inkscape:cx="218.30889"
+ inkscape:cy="1264.8922"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ inkscape:window-maximized="0"
+ inkscape:current-layer="svg1132" />
+ <title
+ id="title2">Qt SVG Document</title>
+ <desc
+ id="desc4">Generated with Qt</desc>
+ <defs
+ id="defs6" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g8"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g14"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,298.329,412.516)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g18"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,298.329,412.516)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text16"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="12"
+ x="4"
+ xml:space="preserve">Arriere M1</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g20"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,298.329,412.516)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g22"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#005500;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g26"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,-995.891,-426.654)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path24"
+ d="M 604.00059,310.00041 590,310 v 90 h 70 v 31 9"
+ sodipodi:nodetypes="cccccc" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g28"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,583.496,406.912)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g32"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,583.496,406.912)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text30"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="12"
+ x="4"
+ xml:space="preserve">Avant M2</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g34"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,583.496,406.912)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g36"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g40"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,-995.891,-426.654)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path38"
+ d="M 655.75059,260.00041 669,260 h 51 v 171 9"
+ sodipodi:nodetypes="ccccc" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g42"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,517.688,450.783)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g46"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,517.688,450.783)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text44"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="12"
+ x="4"
+ xml:space="preserve">Vitesse M2</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g48"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,517.688,450.783)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g50"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#ffaa00;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g54"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,-995.891,-426.654)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path52"
+ d="M 655.75059,320.00041 669,320 h 41 v 111 9"
+ sodipodi:nodetypes="ccccc" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g56"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,243.489,174.391)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g58"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,243.489,174.391)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g60"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g64"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,-1039.76,-602.141)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path62"
+ d="m 520,340 v -9 h 40 v 19 h 50 l 13.99932,3.2e-4"
+ sodipodi:nodetypes="cccccc" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g66"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,671.24,428.847)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g70"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,671.24,428.847)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text68"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="12"
+ x="4"
+ xml:space="preserve">Arriere M2</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g72"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,671.24,428.847)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g74"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#005500;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g78"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,-995.891,-426.654)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path76"
+ d="M 655.75059,310.00041 669,310 h 91 v 100 h -60 v 21 9"
+ sodipodi:nodetypes="ccccccc" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g80"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,122.841,77.8726)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g84"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,122.841,77.8726)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text82"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="12"
+ x="4"
+ xml:space="preserve">Vitesse M1</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g86"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,122.841,77.8726)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g88"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#ffaa00;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g92"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,-995.891,-426.654)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path90"
+ d="M 604.00059,250.00041 590,250 h -30 v 170 h 130 v 11 9"
+ sodipodi:nodetypes="ccccccc" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g94"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,737.047,492.462)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g96"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,737.047,492.462)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g98"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g102"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,-995.891,-426.654)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path100"
+ d="M 655.75059,250.00041 669,250 V 210 H 790 V 620 H 640 v -11 -9"
+ sodipodi:nodetypes="cccccccc" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g104"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(-2.19359,0,0,-2.19359,616.4,58.1302)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g106"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(-2.19359,0,0,-2.19359,616.4,58.1302)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g108"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g112"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,-1039.76,-602.141)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path110"
+ d="M 675.74932,350.00032 689,350 h 41 v -49 h 50 v 9"
+ sodipodi:nodetypes="cccccc" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g114"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(-2.19359,0,0,-2.19359,263.78,231.424)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g116"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(-2.19359,0,0,-2.19359,263.78,231.424)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g118"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g122"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,-1039.76,-602.141)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path120"
+ d="M 623.99932,380.00032 569.5,380 v 34 H 520 v -14"
+ sodipodi:nodetypes="ccccc" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g124"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,254.457,450.783)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g128"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,254.457,450.783)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text126"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="12"
+ x="4"
+ xml:space="preserve">Avant M1</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g130"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,254.457,450.783)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g132"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g136"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,-995.891,-426.654)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path134"
+ d="M 604.00059,260.00041 590,260 h -20 v 150 h 100 v 21 9"
+ sodipodi:nodetypes="ccccccc" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g138"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(-2.19359,0,0,-2.19359,571.431,231.424)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g140"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(-2.19359,0,0,-2.19359,571.431,231.424)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g142"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g146"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,-1039.76,-602.141)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path144"
+ d="m 780,370 v 9 1 h -91 l -13.25068,3.2e-4"
+ sodipodi:nodetypes="ccccc" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g150"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,671.24,143.68)">
+ <circle
+ id="circle148"
+ r="15"
+ cy="0"
+ cx="0" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g154"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,671.24,143.68)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline152"
+ points="5,18 5,14.5 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g158"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,671.24,143.68)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline156"
+ points="0,18 0,30 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g162"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,657.03736,113.99531)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:15px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text160"
+ font-style="normal"
+ font-weight="400"
+ font-size="15"
+ y="19"
+ x="0"
+ xml:space="preserve">M</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g166"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,671.24,143.68)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline164"
+ points="0,-30 0,-18 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g170"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,671.24,143.68)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline168"
+ points="-5,18 5,18 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g174"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,671.24,143.68)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline172"
+ points="5,-18 5,-14.5 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g178"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,671.24,143.68)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline176"
+ points="-5,-14.5 -5,-18 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g182"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,671.24,143.68)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline180"
+ points="-5,-18 5,-18 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g186"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,671.24,143.68)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline184"
+ points="-5,14.5 -5,18 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g188"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,581.302,209.488)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g192"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,581.302,209.488)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text190"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ y="15"
+ x="4"
+ xml:space="preserve">Moteur 2</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g194"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,581.302,209.488)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g196"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g200"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,100.905,209.488)">
+ <circle
+ id="circle198"
+ r="15"
+ cy="0"
+ cx="0" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g204"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,100.905,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline202"
+ points="5,18 5,14.5 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g208"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,100.905,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline206"
+ points="0,18 0,30 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g212"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,86.702362,179.80331)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:15px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text210"
+ font-style="normal"
+ font-weight="400"
+ font-size="15"
+ y="19"
+ x="0"
+ xml:space="preserve">M</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g216"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,100.905,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline214"
+ points="0,-30 0,-18 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g220"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,100.905,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline218"
+ points="-5,18 5,18 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g224"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,100.905,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline222"
+ points="5,-18 5,-14.5 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g228"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,100.905,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline226"
+ points="-5,-14.5 -5,-18 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g232"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,100.905,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline230"
+ points="-5,-18 5,-18 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g236"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,100.905,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline234"
+ points="-5,14.5 -5,18 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g238"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,10.968,275.296)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g242"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,10.968,275.296)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text240"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ y="15"
+ x="4"
+ xml:space="preserve">Moteur 1</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g244"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,10.968,275.296)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g246"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g250"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path248"
+ d="m 95,-30 h 35 V 15 H 95 v -45" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g254"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)">
+ <circle
+ id="circle252"
+ r="6"
+ cy="25"
+ cx="-11" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g258"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,377.298,874.147)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text256"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">3.3V</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g262"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,423.364,874.147)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:6px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text260"
+ font-style="normal"
+ font-weight="400"
+ font-size="6"
+ y="7"
+ x="0"
+ xml:space="preserve">GND</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g266"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path264"
+ d="m 69,94 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g270"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path268"
+ d="m 35,136 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g274"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,443.106,874.147)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:6px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text272"
+ font-style="normal"
+ font-weight="400"
+ font-size="6"
+ y="7"
+ x="0"
+ xml:space="preserve">GND</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g278"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path276"
+ d="m 35,158 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g282"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,465.042,871.953)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text280"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">Vin</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g286"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path284"
+ d="m 35,186 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g290"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,537.43,814.92)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text288"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">ANALOG IN</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g294"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,412.396,812.726)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text292"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">POWER</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g298"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,355.362,874.147)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:6px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text296"
+ font-style="normal"
+ font-weight="400"
+ font-size="6"
+ y="7"
+ x="0"
+ xml:space="preserve">RESET</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g302"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,399.234,874.147)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text300"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">5V</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g306"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path304"
+ d="m 69,158 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g310"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,333.426,874.147)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text308"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">IO ref</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g314"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)">
+ <circle
+ style="vector-effect:non-scaling-stroke"
+ id="circle312"
+ r="10.2957"
+ cy="24.000099"
+ cx="12" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g318"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline316"
+ points="-20,-14 -20,221 -10,223 0,230 105,230 120,220 160,220 160,-14 160,-14 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g322"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path320"
+ d="m 35,179 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g326"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path324"
+ d="m 35,165 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g330"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path328"
+ d="m 35,73 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g334"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path332"
+ d="m 69,179 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g338"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)">
+ <circle
+ id="circle336"
+ r="1.25"
+ cy="78"
+ cx="99" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g342"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path340"
+ d="m 69,136 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g346"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path344"
+ d="m 69,73 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g350"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path348"
+ d="m 69,186 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g354"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path352"
+ d="m 35,101 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g358"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path356"
+ d="m 35,151 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g362"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)">
+ <circle
+ id="circle360"
+ r="1.25"
+ cy="78"
+ cx="110" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g366"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,311.49,659.175)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text364"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">RX</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g370"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path368"
+ d="m 35,94 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g374"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path372"
+ d="m 69,101 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g378"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path376"
+ d="m 69,165 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g382"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path380"
+ d="m 69,115 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g386"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path384"
+ d="m 35,115 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g390"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,318.071,619.69)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text388"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">L</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g394"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path392"
+ d="m 35,193 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g398"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path396"
+ d="m 35,80 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g402"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path400"
+ d="m 108,75 h 4 v 6 h -4 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g406"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path404"
+ d="m 69,151 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g410"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path408"
+ d="m 69,80 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g414"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path412"
+ d="m 35,66 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g418"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path416"
+ d="m 97,75 h 4 v 6 h -4 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g422"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path420"
+ d="m 69,66 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g426"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path424"
+ d="m 69,193 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g430"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)">
+ <circle
+ id="circle428"
+ r="6"
+ cy="222"
+ cx="97" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g434"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path432"
+ d="m 35,143 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g438"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path436"
+ d="m 69,143 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g442"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path440"
+ d="m 35,122 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g446"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path444"
+ d="m 69,122 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g450"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)">
+ <circle
+ id="circle448"
+ r="6"
+ cy="25"
+ cx="151" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g454"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)">
+ <circle
+ id="circle452"
+ r="6"
+ cy="222"
+ cx="17" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g458"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path456"
+ d="m 35,108 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g462"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path460"
+ d="m 69,108 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g466"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path464"
+ d="m 69,172 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g470"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path468"
+ d="m 76,206 h 8 v 18 h -8 v -18" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g474"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path472"
+ d="m 69,129 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g478"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path476"
+ d="m 35,129 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g482"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path480"
+ d="m 69,87 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g486"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path484"
+ d="m 35,87 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g490"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path488"
+ d="m 66,206 h 8 v 18 h -8 v -18" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g494"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path492"
+ d="m 68,218 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g498"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path496"
+ d="m 128,28 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g502"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path500"
+ d="m 78,208 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g506"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path504"
+ d="m 58,218 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g510"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)">
+ <ellipse
+ id="ellipse508"
+ ry="7.5"
+ rx="5.5"
+ cy="115.5"
+ cx="104.5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g514"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path512"
+ d="m 144,34 h 12 V 216 H 144 V 34" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g518"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path516"
+ d="m 68,208 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g522"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path520"
+ d="m 78,218 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g526"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path524"
+ d="m 128,38 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g530"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path528"
+ d="m 116,36 h 18 v 8 h -18 v -8" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g534"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path532"
+ d="m 104,112 h 1 v 8 h -1 v -8" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g538"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path536"
+ d="m 128,48 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g542"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,618.593,871.953)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text540"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">A5</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g546"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path544"
+ d="m 116,26 h 18 v 8 h -18 v -8" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g550"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,596.657,871.953)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text548"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">A4</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g554"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,574.721,871.953)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text552"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">A3</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g558"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path556"
+ d="m 118,38 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g562"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,508.914,871.953)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text560"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">A0</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g566"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path564"
+ d="m 118,48 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g570"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,552.786,871.953)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text568"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">A2</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g574"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path572"
+ d="m 118,28 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g578"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,530.85,871.953)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text576"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">A1</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g582"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path580"
+ d="m 116,46 h 18 v 8 h -18 v -8" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g586"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,418.976,586.786)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text584"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">~9</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g590"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,355.362,582.399)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text588"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">12</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g594"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,399.234,599.948)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text592"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">~10</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g598"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,596.657,617.497)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text596"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">TX-&gt;1</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g602"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,618.593,617.497)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text600"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">RX&lt;-0</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g606"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,377.298,597.754)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text604"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">~11</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g610"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,440.912,569.237)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text608"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">8</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g614"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,528.656,569.237)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text612"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">4</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g618"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,465.042,569.237)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text616"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">7</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g622"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,550.592,586.786)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text620"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">~3</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g626"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,572.528,569.237)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text624"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">2</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g630"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,331.233,582.399)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text628"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">13</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g634"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,454.074,595.561)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text632"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">DIGITAL (PWM~)</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g638"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,506.72,586.786)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text636"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">~5</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g642"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,486.978,586.786)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text640"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">~6</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g646"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,287.361,608.722)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text644"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">AREF</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g650"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path648"
+ d="m 147,167 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g654"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path652"
+ d="m -16,64 h 12 v 82 H -16 V 64" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g658"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path656"
+ d="m 147,177 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g662"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path660"
+ d="m 147,47 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g666"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path664"
+ d="m 147,157 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g670"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path668"
+ d="m 147,57 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g674"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path672"
+ d="m 147,37 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g678"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path676"
+ d="m -13,167 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g682"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path680"
+ d="m 147,147 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g686"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path684"
+ d="m 147,137 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g690"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path688"
+ d="m 147,197 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g694"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path692"
+ d="m 147,127 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g698"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path696"
+ d="m 147,207 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g702"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path700"
+ d="m -13,97 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g706"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path704"
+ d="m 147,107 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g710"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path708"
+ d="m 147,187 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g714"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path712"
+ d="m -20,-14 c 0,-3.3137 2.6863,-6 6,-6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g718"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path716"
+ d="m 154,-20 c 3.314,0 6,2.6863 6,6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g722"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path720"
+ d="m 58,208 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g726"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path724"
+ d="m -13,187 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g730"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path728"
+ d="m -13,87 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g734"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path732"
+ d="m 147,117 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g738"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path736"
+ d="m 147,77 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g742"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path740"
+ d="m -13,197 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g746"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path744"
+ d="m 147,97 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g750"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path748"
+ d="m -13,177 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g754"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path752"
+ d="m -13,107 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g758"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path756"
+ d="m 147,87 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g762"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path760"
+ d="m 147,67 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g766"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path764"
+ d="m -13,157 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g770"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path768"
+ d="m -13,77 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g774"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path772"
+ d="m -13,207 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g778"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path776"
+ d="m -13,67 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g782"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path780"
+ d="m -13,127 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g786"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path784"
+ d="m -13,137 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g790"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path788"
+ d="m -13,117 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g794"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path792"
+ d="m -16,154 h 12 v 62 h -12 v -62" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g798"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,309.297,602.141)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text796"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">GND</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g802"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline800"
+ points="146,135 154,135 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g806"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:non-scaling-stroke;fill:none"
+ id="polyline804"
+ points="113,213 113,79 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g810"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,357.556,656.981)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text808"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="8"
+ x="0"
+ xml:space="preserve">ARDUINO</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g814"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)">
+ <ellipse
+ id="ellipse812"
+ ry="7.5"
+ rx="5.5"
+ cy="100.5"
+ cx="104.5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g818"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path816"
+ d="m 104,97 h 1 v 8 h -1 v -8" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g822"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path820"
+ d="m 101,115 h 7 v 1 h -7 v -1" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-dasharray:4, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g826"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)">
+ <ellipse
+ style="vector-effect:non-scaling-stroke"
+ id="ellipse824"
+ ry="16"
+ rx="10.5"
+ cy="159"
+ cx="99.5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g830"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,484.784,635.045)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text828"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ y="11"
+ x="0"
+ xml:space="preserve">UNO</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g834"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path832"
+ d="m 56,206 h 8 v 18 h -8 v -18" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g838"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)">
+ <circle
+ style="vector-effect:non-scaling-stroke"
+ id="circle836"
+ r="5"
+ cy="-3"
+ cx="150" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:4, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g842"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path840"
+ d="m 141,-11 h 17 V 5 h -17 v -16" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g846"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path844"
+ d="M 1,-29 H 21 V 2 H 1 v -31" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g850"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline848"
+ points="1,-22 21,-22 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g854"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path852"
+ d="M 6,2 H 16 V 3 H 6 V 2" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g858"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline856"
+ points="-13,-20 1,-20 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g862"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)">
+ <circle
+ id="circle860"
+ r="1.25"
+ cy="78"
+ cx="91" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g866"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path864"
+ d="m 89,75 h 4 v 6 h -4 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g870"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,311.49,641.626)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text868"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">TX</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g874"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(-2.19359,0,0,-2.19359,462.848,771.048)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text872"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">AIMEL</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g878"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:non-scaling-stroke;fill:none"
+ id="polyline876"
+ points="45,131 45,117 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g882"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path880"
+ d="M 37,65 H 69 V 202 H 37 V 65" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g886"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path884"
+ d="m 35,172 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g890"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:non-scaling-stroke;fill:none"
+ id="polyline888"
+ points="26,97 26,145 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g894"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:non-scaling-stroke;fill:none"
+ id="polyline892"
+ points="26,155 26,213 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-dasharray:4, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g898"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)">
+ <ellipse
+ style="vector-effect:non-scaling-stroke"
+ id="ellipse896"
+ ry="11"
+ rx="4.5"
+ cy="30"
+ cx="72.5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g902"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)">
+ <circle
+ style="vector-effect:non-scaling-stroke"
+ id="circle900"
+ r="10.2957"
+ cy="51.000099"
+ cx="12" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:4, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g906"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path904"
+ d="m 51,-12 h 16 v 8 H 51 v -8" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g910"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,537.43,689.885)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:2px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text908"
+ font-style="normal"
+ font-weight="100"
+ font-size="2"
+ y="3"
+ x="0"
+ xml:space="preserve">MADE IN ITALY</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g914"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline912"
+ points="22,-20 94,-20 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g918"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,166.713,867.566)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline916"
+ points="154,-20 131,-20 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g920"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,164.519,955.31)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g922"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,164.519,955.31)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g924"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g928"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,2.19359,-2.19359,0,351.362,182.391)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:3px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text926"
+ font-style="normal"
+ font-weight="100"
+ font-size="3"
+ y="4"
+ x="0"
+ xml:space="preserve">GROUND</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g932"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,328.381,256.713)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text930"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">8</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g936"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,436.525,253.36)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text934"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">9</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g940"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,436.525,231.424)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text938"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">10</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g944"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,436.525,209.488)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text942"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">11</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g948"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,436.525,187.552)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text946"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">12</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g952"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,436.525,165.616)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text950"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">13</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g956"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,328.381,190.644)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text954"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">5</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g960"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,328.381,102.322)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text958"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">1</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g964"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,326.845,169.66)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text962"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">4</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g968"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,328.381,234.804)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text966"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">7</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g972"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,436.525,99.8085)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text970"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">16</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g976"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,329.039,212.552)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text974"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">6</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g980"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,328.381,147.408)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text978"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">3</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g984"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,384.42681,209.488)">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path982"
+ d="m 6.175,-49.43 c 0,2.6924 -2.31693,4.875 -5.175,4.875 -2.85807,0 -5.175,-2.1826 -5.175,-4.875" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g988"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,328.381,124.231)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text986"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">2</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g992"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,434.331,143.68)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text990"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">14</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g996"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,436.525,121.744)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text994"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">15</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1000"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,418.396,246.779)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text998"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">3A</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1004"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,418.95297,224.843)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1002"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">3Y</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1008"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,341.53048,157.036)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1006"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">1Y</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1012"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,341.53048,135.1)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1010"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">1A</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1016"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,341.53048,113.164)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1014"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">1,2EN</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1020"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,406.87537,115.164)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1018"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">VCC1</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1024"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,418.396,137.1)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1022"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">4A</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1028"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,418.95297,159.036)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1026"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">4Y</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1032"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,420.82202,214.263)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:3px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1030"
+ font-style="normal"
+ font-weight="100"
+ font-size="3"
+ y="4"
+ x="0"
+ xml:space="preserve">GROUND</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1036"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,404.96455,270.909)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1034"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">3,4EN</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1040"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,342.22883,266.715)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1038"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">VCC2</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1044"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,341.88608,244.779)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1042"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">2A</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1048"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,341.88608,222.843)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1046"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">2Y</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1052"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,-2.19359,2.19359,0,371.07247,227.25522)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:8px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1050"
+ font-style="normal"
+ font-weight="400"
+ font-size="8"
+ y="10"
+ x="0"
+ xml:space="preserve">L293D</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1056"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,386.072,209.488)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path1054"
+ d="M -21,-50 H 21.5 V 40 H -21 v -90" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1060"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,386.072,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline1058"
+ points="-26,-40 -21,-40 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1064"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,386.072,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline1062"
+ points="-26,-30 -21,-30 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1068"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,386.072,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline1066"
+ points="-26,-20 -21,-20 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1072"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,386.072,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline1070"
+ points="-26,-10 -21,-10 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1076"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,386.072,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline1074"
+ points="-26,0 -21,0 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1080"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,386.072,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline1078"
+ points="-26,10 -21,10 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1084"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,386.072,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline1082"
+ points="-26,20 -21,20 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1088"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,386.072,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline1086"
+ points="-26,30 -21,30 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1092"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,386.072,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline1090"
+ points="25.75,30 21.5,30 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1096"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,386.072,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline1094"
+ points="21.5,20 25.75,20 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1100"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,386.072,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline1098"
+ points="21.5,10 25.75,10 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1104"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,386.072,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline1102"
+ points="21.5,0 25.75,0 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1108"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,386.072,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline1106"
+ points="21.5,-10 25.75,-10 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1112"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,386.072,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline1110"
+ points="21.5,-20 25.75,-20 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1116"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,386.072,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline1114"
+ points="21.5,-30 25.75,-30 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1120"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,386.072,209.488)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline1118"
+ points="21.5,-40 25.75,-40 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1122"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,342.201,53.743)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1124"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(2.19359,0,0,2.19359,342.201,53.743)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1126"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1128"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="scale(0.75)" />
+</svg>
diff --git a/content/arduino_ohmetre.qet b/content/arduino_ohmetre.qet
new file mode 100644
index 0000000..8ea0525
--- /dev/null
+++ b/content/arduino_ohmetre.qet
@@ -0,0 +1,634 @@
+<project title="" version="0.5" folioSheetQuantity="0">
+ <properties/>
+ <newdiagrams>
+ <border colsize="60" rows="8" displaycols="true" displayrows="true" rowsize="80" cols="17"/>
+ <inset title="" filename="" author="" date="null" displayAt="bottom" folio="%id/%total"/>
+ <conductors num="_" vertirotatetext="270" function="" type="multi" tension-protocol="" numsize="7" displaytext="1" onetextperfolio="0" horizrotatetext="0"/>
+ <report label="%f-%l%c"/>
+ <xrefs>
+ <xref showpowerctc="false" powerprefix="" switchprefix="" snapto="label" type="commutator" displayhas="cross" delayprefix=""/>
+ <xref showpowerctc="false" powerprefix="" switchprefix="" snapto="label" type="protection" displayhas="cross" delayprefix=""/>
+ <xref showpowerctc="false" powerprefix="" switchprefix="" snapto="label" type="coil" displayhas="cross" delayprefix=""/>
+ </xrefs>
+ <conductors_autonums/>
+ </newdiagrams>
+ <diagram colsize="60" rows="8" displaycols="true" title="Arduino_ohmetre" filename="" displayrows="true" author="" rowsize="80" height="660" version="0.5" date="null" displayAt="bottom" order="1" cols="17" folio="%id/%total">
+ <defaultconductor num="_" vertirotatetext="270" function="" type="multi" tension-protocol="" numsize="7" displaytext="1" onetextperfolio="0" horizrotatetext="0"/>
+ <elements>
+ <element uuid="{18782a8a-0461-4db5-ae91-6ff09b460ac4}" orientation="0" type="embed://import/10_electric/10_allpole/395_electronics&amp;semiconductors/01_resistors/resistance.elmt" x="240" y="380">
+ <terminals>
+ <terminal orientation="2" id="0" number="_" nameHidden="0" x="0" y="17" name="_"/>
+ <terminal orientation="0" id="1" number="_" nameHidden="0" x="0" y="-17" name="_"/>
+ </terminals>
+ <inputs>
+ <input text="R2" x="6" y="0"/>
+ </inputs>
+ </element>
+ <element uuid="{0b4fa4d6-6942-4787-86f1-42700f1cc151}" orientation="0" type="embed://import/10_electric/10_allpole/395_electronics&amp;semiconductors/01_resistors/resistance.elmt" x="240" y="260">
+ <terminals>
+ <terminal orientation="2" id="2" number="_" nameHidden="0" x="0" y="17" name="_"/>
+ <terminal orientation="0" id="3" number="_" nameHidden="0" x="0" y="-17" name="_"/>
+ </terminals>
+ <inputs>
+ <input text="R1" x="6" y="0"/>
+ </inputs>
+ </element>
+ <element uuid="{05b5d31b-dde9-4928-9398-7f5f4d9d8019}" orientation="0" type="embed://import/10_electric/20_manufacturers_articles/arduino/arduino_uno.elmt" x="350" y="190">
+ <terminals>
+ <terminal orientation="1" id="4" number="_" nameHidden="0" x="146" y="210" name="_"/>
+ <terminal orientation="1" id="5" number="_" nameHidden="0" x="146" y="50" name="_"/>
+ <terminal orientation="1" id="6" number="_" nameHidden="0" x="146" y="60" name="_"/>
+ <terminal orientation="1" id="7" number="_" nameHidden="0" x="146" y="70" name="_"/>
+ <terminal orientation="1" id="8" number="_" nameHidden="0" x="146" y="40" name="_"/>
+ <terminal orientation="3" id="9" number="_" nameHidden="0" x="-6" y="80" name="_"/>
+ <terminal orientation="3" id="10" number="_" nameHidden="0" x="-6" y="90" name="_"/>
+ <terminal orientation="3" id="11" number="_" nameHidden="0" x="-6" y="100" name="_"/>
+ <terminal orientation="3" id="12" number="_" nameHidden="0" x="-6" y="110" name="_"/>
+ <terminal orientation="3" id="13" number="_" nameHidden="0" x="-6" y="120" name="_"/>
+ <terminal orientation="3" id="14" number="_" nameHidden="0" x="-6" y="170" name="_"/>
+ <terminal orientation="3" id="15" number="_" nameHidden="0" x="-6" y="180" name="_"/>
+ <terminal orientation="3" id="16" number="_" nameHidden="0" x="-6" y="190" name="_"/>
+ <terminal orientation="3" id="17" number="_" nameHidden="0" x="-6" y="200" name="_"/>
+ <terminal orientation="3" id="18" number="_" nameHidden="0" x="-6" y="210" name="_"/>
+ <terminal orientation="1" id="19" number="_" nameHidden="0" x="146" y="200" name="_"/>
+ <terminal orientation="1" id="20" number="_" nameHidden="0" x="146" y="190" name="_"/>
+ <terminal orientation="1" id="21" number="_" nameHidden="0" x="146" y="180" name="_"/>
+ <terminal orientation="3" id="22" number="_" nameHidden="0" x="-6" y="70" name="_"/>
+ <terminal orientation="3" id="23" number="_" nameHidden="0" x="-6" y="160" name="_"/>
+ <terminal orientation="1" id="24" number="_" nameHidden="0" x="146" y="130" name="_"/>
+ <terminal orientation="1" id="25" number="_" nameHidden="0" x="146" y="140" name="_"/>
+ <terminal orientation="1" id="26" number="_" nameHidden="0" x="146" y="150" name="_"/>
+ <terminal orientation="1" id="27" number="_" nameHidden="0" x="146" y="160" name="_"/>
+ <terminal orientation="1" id="28" number="_" nameHidden="0" x="146" y="170" name="_"/>
+ <terminal orientation="1" id="29" number="_" nameHidden="0" x="146" y="80" name="_"/>
+ <terminal orientation="1" id="30" number="_" nameHidden="0" x="146" y="90" name="_"/>
+ <terminal orientation="1" id="31" number="_" nameHidden="0" x="146" y="120" name="_"/>
+ <terminal orientation="1" id="32" number="_" nameHidden="0" x="146" y="110" name="_"/>
+ <terminal orientation="1" id="33" number="_" nameHidden="0" x="146" y="100" name="_"/>
+ <terminal orientation="3" id="34" number="_" nameHidden="0" x="-6" y="130" name="_"/>
+ <terminal orientation="3" id="35" number="_" nameHidden="0" x="-6" y="140" name="_"/>
+ <terminal orientation="0" id="36" number="_" nameHidden="0" x="10" y="-16" name="_"/>
+ <terminal orientation="0" id="37" number="_" nameHidden="0" x="110" y="-16" name="_"/>
+ </terminals>
+ <inputs>
+ <input text="3.3V" x="-3" y="104"/>
+ <input text="3.3V" x="-3" y="104"/>
+ <input text="GND" x="-3" y="124"/>
+ <input text="GND" x="-3" y="124"/>
+ <input text="GND" x="-3" y="133"/>
+ <input text="GND" x="-3" y="133"/>
+ <input text="Vin" x="-2" y="144"/>
+ <input text="Vin" x="-2" y="144"/>
+ <input text="ANALOG IN" x="17" y="169"/>
+ <input text="ANALOG IN" x="17" y="169"/>
+ <input text="POWER" x="18" y="112"/>
+ <input text="POWER" x="18" y="112"/>
+ <input text="RESET" x="-3" y="93"/>
+ <input text="RESET" x="-3" y="93"/>
+ <input text="5V" x="-3" y="114"/>
+ <input text="5V" x="-3" y="114"/>
+ <input text="IO ref" x="-3" y="84"/>
+ <input text="IO ref" x="-3" y="84"/>
+ <input text="RX" x="90" y="66"/>
+ <input text="RX" x="90" y="66"/>
+ <input text="L" x="108" y="69"/>
+ <input text="L" x="108" y="69"/>
+ <input text="A5" x="-2" y="214"/>
+ <input text="A5" x="-2" y="214"/>
+ <input text="A4" x="-2" y="204"/>
+ <input text="A4" x="-2" y="204"/>
+ <input text="A3" x="-2" y="194"/>
+ <input text="A3" x="-2" y="194"/>
+ <input text="A0" x="-2" y="164"/>
+ <input text="A0" x="-2" y="164"/>
+ <input text="A2" x="-2" y="184"/>
+ <input text="A2" x="-2" y="184"/>
+ <input text="A1" x="-2" y="174"/>
+ <input text="A1" x="-2" y="174"/>
+ <input text="~9" x="128" y="123"/>
+ <input text="~9" x="128" y="123"/>
+ <input text="12" x="130" y="94"/>
+ <input text="12" x="130" y="94"/>
+ <input text="~10" x="122" y="114"/>
+ <input text="~10" x="122" y="114"/>
+ <input text="TX->1" x="114" y="204"/>
+ <input text="TX->1" x="114" y="204"/>
+ <input text="RX&lt;-0" x="114" y="214"/>
+ <input text="RX&lt;-0" x="114" y="214"/>
+ <input text="~11" x="123" y="104"/>
+ <input text="~11" x="123" y="104"/>
+ <input text="8" x="136" y="133"/>
+ <input text="8" x="136" y="133"/>
+ <input text="4" x="136" y="173"/>
+ <input text="4" x="136" y="173"/>
+ <input text="7" x="136" y="144"/>
+ <input text="7" x="136" y="144"/>
+ <input text="~3" x="128" y="183"/>
+ <input text="~3" x="128" y="183"/>
+ <input text="2" x="136" y="193"/>
+ <input text="2" x="136" y="193"/>
+ <input text="13" x="130" y="83"/>
+ <input text="13" x="130" y="83"/>
+ <input text="DIGITAL (PWM~)" x="117" y="131"/>
+ <input text="DIGITAL (PWM~)" x="117" y="131"/>
+ <input text="~5" x="128" y="163"/>
+ <input text="~5" x="128" y="163"/>
+ <input text="~6" x="128" y="154"/>
+ <input text="~6" x="128" y="154"/>
+ <input text="AREF" x="118" y="63"/>
+ <input text="AREF" x="118" y="63"/>
+ <input text="GND" x="121" y="73"/>
+ <input text="GND" x="121" y="73"/>
+ <input text="ARDUINO" x="88" y="87"/>
+ <input text="ARDUINO" x="88" y="87"/>
+ <input text="UNO" x="95" y="145"/>
+ <input text="UNO" x="95" y="145"/>
+ <input text="TX" x="98" y="66"/>
+ <input text="TX" x="98" y="66"/>
+ <input text="AIMEL" x="51" y="135"/>
+ <input text="AIMEL" x="51" y="135"/>
+ <input text="MADE IN ITALY" x="78" y="169"/>
+ <input text="MADE IN ITALY" x="78" y="169"/>
+ <input text="" x="-40" y="10"/>
+ </inputs>
+ </element>
+ </elements>
+ <conductors>
+ <conductor num="" vertirotatetext="270" function="" type="multi" tension-protocol="" terminal1="0" numsize="7" x="0" terminal2="34" y="0" displaytext="1" onetextperfolio="0" horizrotatetext="0">
+ <segment orientation="vertical" length="9"/>
+ <segment orientation="horizontal" length="54.5"/>
+ <segment orientation="vertical" length="-90"/>
+ <segment orientation="horizontal" length="45.5"/>
+ <segment orientation="horizontal" length="0"/>
+ </conductor>
+ <conductor num="" vertirotatetext="270" function="" type="multi" tension-protocol="" terminal1="3" numsize="7" x="0" terminal2="12" y="0" displaytext="1" onetextperfolio="0" horizrotatetext="0"/>
+ <conductor num="" vertirotatetext="270" function="" type="multi" tension-protocol="" terminal1="1" numsize="7" x="0" terminal2="23" y="0" displaytext="1" onetextperfolio="0" horizrotatetext="0"/>
+ <conductor num="" vertirotatetext="270" function="" type="multi" tension-protocol="" terminal1="1" numsize="7" x="0" terminal2="2" y="0" displaytext="1" onetextperfolio="0" horizrotatetext="0"/>
+ </conductors>
+ </diagram>
+ <collection>
+ <category name="import">
+ <names>
+ <name lang="ca">Elements importats</name>
+ <name lang="de">Importierte elemente</name>
+ <name lang="cs">Zavedené prvky</name>
+ <name lang="it">Elementi importati</name>
+ <name lang="hr">Uvezeni elementi</name>
+ <name lang="ro">Elemente importate</name>
+ <name lang="el">Εισηγμένα στοιχεία</name>
+ <name lang="pl">Elementy importowane</name>
+ <name lang="en">Imported elements</name>
+ <name lang="fr">Éléments importés</name>
+ <name lang="ru">Импортированные элементы</name>
+ <name lang="es">Elementos importados</name>
+ <name lang="nl">Elementen geïmporteerd</name>
+ <name lang="pt">elementos importados</name>
+ </names>
+ <category name="10_electric">
+ <names>
+ <name lang="de">Elektrik</name>
+ <name lang="it">Elettrica</name>
+ <name lang="cs">Elektrotechnika</name>
+ <name lang="el">Ηλεκτρικά</name>
+ <name lang="pl">Elektrotechnika</name>
+ <name lang="en">Electric</name>
+ <name lang="fr">Electrique</name>
+ <name lang="ru">Электротехника</name>
+ <name lang="nl">Elektrotechniek</name>
+ </names>
+ <category name="20_manufacturers_articles">
+ <names>
+ <name lang="de">Herstellerartikel</name>
+ <name lang="it">Marchi produttori</name>
+ <name lang="el">Κατασκευαστές υλικού</name>
+ <name lang="pl">Urządzenia producentów</name>
+ <name lang="en">Manufacturers articles</name>
+ <name lang="fr">Articles constructeurs</name>
+ <name lang="ru">База изделий производителей</name>
+ </names>
+ <category name="arduino">
+ <names>
+ <name lang="cs">Arduino</name>
+ <name lang="en">Arduino</name>
+ </names>
+ <element name="moxae1242.elmt">
+ <definition orientation="dyyy" link_type="simple" height="260" type="element" hotspot_x="25" version="0.5" hotspot_y="37" width="190">
+ <uuid uuid="{104cafe4-6d85-4a11-bde4-65de3bdba952}"/>
+ <names>
+ <name lang="en">Arduino Uno</name>
+ </names>
+ <informations>ezza</informations>
+ <description>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="197" width="6"/>
+ <line length1="1.5" length2="1.5" y1="-20" y2="-15" antialias="false" x1="42" end1="none" x2="42" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="207" width="6"/>
+ <text text="DIO6" x="115" y="204" size="7"/>
+ <text text="DI0" x="123" y="34" size="7"/>
+ <text text="DIO7" x="115" y="215" size="7"/>
+ <text text="COM0" x="112" y="22" size="7"/>
+ <line length1="1.5" length2="1.5" y1="-15" y2="-15" antialias="false" x1="42" end1="none" x2="52" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <line length1="1.5" length2="1.5" y1="-15" y2="-20" antialias="false" x1="52" end1="none" x2="52" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <line length1="1.5" length2="1.5" y1="-15" y2="-15" antialias="false" x1="67" end1="none" x2="77" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <line length1="1.5" length2="1.5" y1="-15" y2="-20" antialias="false" x1="77" end1="none" x2="77" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <line length1="1.5" length2="1.5" y1="-15" y2="-20" antialias="false" x1="67" end1="none" x2="67" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <line length1="1.5" length2="1.5" y1="-15" y2="0" antialias="false" x1="72" end1="none" x2="72" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <line length1="1.5" length2="1.5" y1="0" y2="0" antialias="false" x1="72" end1="none" x2="47" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <line length1="1.5" length2="1.5" y1="0" y2="-15" antialias="false" x1="47" end1="none" x2="47" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <polygon y1="-14" y2="220" y3="220" y4="220" y5="220" y6="220" closed="false" x1="-20" y7="220" x2="-20" y8="-14" x3="-10" y9="-14" x4="0" x5="100" style="line-style:normal;line-weight:normal;filling:none;color:black" x6="120" x7="160" antialias="false" x8="160" x9="160"/>
+ <text text="RESET" rotation="90" x="-13" y="194" size="4"/>
+ <rect antialias="false" height="18" style="line-style:normal;line-weight:normal;filling:none;color:black" x="116" y="-34" width="8"/>
+ <rect antialias="false" height="18" style="line-style:normal;line-weight:normal;filling:none;color:black" x="106" y="-34" width="8"/>
+ <rect antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x="108" y="-22" width="4"/>
+ <rect antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x="118" y="-32" width="4"/>
+ <rect antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x="98" y="-22" width="4"/>
+ <ellipse antialias="true" height="15" style="line-style:normal;line-weight:normal;filling:none;color:black" x="71" y="93" width="11"/>
+ <rect antialias="false" height="201" style="line-style:normal;line-weight:normal;filling:none;color:black" x="145" y="14" width="12"/>
+ <rect antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x="108" y="-32" width="4"/>
+ <rect antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x="118" y="-22" width="4"/>
+ <rect antialias="false" height="8" style="line-style:normal;line-weight:normal;filling:none;color:black" x="76" y="97" width="1"/>
+ <text text="DI6" x="124" y="103" size="7"/>
+ <text text="GND" x="119" y="75" size="7"/>
+ <text text="DI5" x="123" y="94" size="7"/>
+ <text text="DIO4" x="116" y="184" size="7"/>
+ <text text="DIO5" x="115" y="193" size="7"/>
+ <text text="D14" x="122" y="84" size="7"/>
+ <text text="DI7" x="124" y="112" size="7"/>
+ <text text="DIO2" x="116" y="153" size="7"/>
+ <text text="COM1" x="113" y="124" size="7"/>
+ <text text="DIO3" x="116" y="163" size="7"/>
+ <text text="GND" x="121" y="172" size="7"/>
+ <text text="DI3" x="122" y="63" size="7"/>
+ <text text="I/O CHANNELS" rotation="90" x="96" y="73" size="5"/>
+ <text text="DIO1" x="116" y="144" size="7"/>
+ <text text="DIO0" x="117" y="134" size="7"/>
+ <text text="DI1" x="123" y="43" size="7"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="147" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="157" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="27" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="137" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="37" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="17" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="127" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="117" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="177" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="107" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="187" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="87" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="167" width="6"/>
+ <arc antialias="false" height="12" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-20" y="-20" start="-180" width="12" angle="-90"/>
+ <arc antialias="false" height="12" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="-20" start="90" width="12" angle="-90"/>
+ <rect antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x="98" y="-32" width="4"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="97" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="57" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="77" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="67" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="47" width="6"/>
+ <text text="DI2" x="122" y="53" size="7"/>
+ <line length1="1.5" length2="1.5" y1="135" y2="135" antialias="false" x1="147" end1="none" x2="155" style="line-style:dotted;line-weight:normal;filling:none;color:black" end2="none"/>
+ <line length1="1.5" length2="1.5" y1="210" y2="10" antialias="false" x1="90" end1="none" x2="90" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none"/>
+ <text text="MOXA" rotation="90" x="60" y="78" size="7"/>
+ <ellipse antialias="true" height="15" style="line-style:normal;line-weight:normal;filling:none;color:black" x="71" y="78" width="11"/>
+ <rect antialias="false" height="8" style="line-style:normal;line-weight:normal;filling:none;color:black" x="76" y="82" width="1"/>
+ <rect antialias="false" height="1" style="line-style:normal;line-weight:normal;filling:none;color:black" x="73" y="100" width="7"/>
+ <rect antialias="false" height="18" style="line-style:normal;line-weight:normal;filling:none;color:black" x="96" y="-34" width="8"/>
+ <line length1="1.5" length2="1.5" y1="-20" y2="-20" antialias="false" x1="-15" end1="none" x2="4" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <ellipse antialias="true" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="212" width="4.25"/>
+ <rect antialias="false" height="9" style="line-style:dotted;line-weight:thin;filling:none;color:black" x="-14" y="210" width="6"/>
+ <line length1="1.5" length2="1.5" y1="-20" y2="-20" antialias="false" x1="5" end1="none" x2="95" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <line length1="1.5" length2="1.5" y1="-20" y2="-20" antialias="false" x1="155" end1="none" x2="126" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <input text="_" tagg="label" rotate="true" x="-40" y="10" size="9"/>
+ <line length1="1.5" length2="1.5" y1="-20" y2="-15" antialias="false" x1="-8" end1="none" x2="-8" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <line length1="1.5" length2="1.5" y1="-15" y2="-15" antialias="false" x1="-8" end1="none" x2="2" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <line length1="1.5" length2="1.5" y1="-15" y2="-20" antialias="false" x1="2" end1="none" x2="2" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <line length1="1.5" length2="1.5" y1="-15" y2="-15" antialias="false" x1="17" end1="none" x2="27" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <line length1="1.5" length2="1.5" y1="-15" y2="-20" antialias="false" x1="27" end1="none" x2="27" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <line length1="1.5" length2="1.5" y1="-15" y2="-20" antialias="false" x1="17" end1="none" x2="17" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <line length1="1.5" length2="1.5" y1="-15" y2="0" antialias="false" x1="22" end1="none" x2="22" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <line length1="1.5" length2="1.5" y1="0" y2="0" antialias="false" x1="22" end1="none" x2="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <line length1="1.5" length2="1.5" y1="0" y2="-15" antialias="false" x1="-3" end1="none" x2="-3" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <input text="12-24 VDC POWER" tagg="none" rotate="true" x="84" y="-6" size="5"/>
+ <terminal orientation="e" x="151" y="200"/>
+ <terminal orientation="e" x="151" y="210"/>
+ <terminal orientation="n" x="120" y="-30"/>
+ <terminal orientation="n" x="110" y="-30"/>
+ <terminal orientation="e" x="151" y="150"/>
+ <terminal orientation="e" x="151" y="40"/>
+ <terminal orientation="e" x="151" y="30"/>
+ <terminal orientation="e" x="151" y="20"/>
+ <terminal orientation="e" x="151" y="100"/>
+ <terminal orientation="e" x="151" y="60"/>
+ <terminal orientation="e" x="151" y="70"/>
+ <terminal orientation="e" x="151" y="170"/>
+ <terminal orientation="e" x="151" y="140"/>
+ <terminal orientation="e" x="151" y="130"/>
+ <terminal orientation="e" x="151" y="190"/>
+ <terminal orientation="e" x="151" y="90"/>
+ <terminal orientation="e" x="151" y="50"/>
+ <terminal orientation="e" x="151" y="110"/>
+ <terminal orientation="e" x="151" y="160"/>
+ <terminal orientation="e" x="151" y="120"/>
+ <terminal orientation="e" x="151" y="180"/>
+ <terminal orientation="e" x="151" y="80"/>
+ <terminal orientation="n" x="100" y="-30"/>
+ <terminal orientation="n" x="10" y="-20"/>
+ <terminal orientation="n" x="60" y="-20"/>
+ </description>
+ </definition>
+ </element>
+ <element name="arduino_uno.elmt">
+ <definition orientation="dyyy" link_type="simple" height="270" hotspot_x="25" type="element" version="0.5" hotspot_y="35" width="190">
+ <uuid uuid="{adc899b2-6c00-4fcf-a605-6427cc667d01}"/>
+ <names>
+ <name lang="pl">Arduino Uno</name>
+ <name lang="nl">Arduino Uno</name>
+ <name lang="fr">Arduino Uno</name>
+ <name lang="en">Arduino Uno</name>
+ <name lang="cs">Arduino Uno</name>
+ <name lang="it">Arduino Uno</name>
+ </names>
+ <informations>ezza</informations>
+ <description>
+ <rect antialias="false" height="45" style="line-style:normal;line-weight:normal;filling:none;color:black" x="95" y="-30" width="35"/>
+ <circle diameter="12" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-17" y="19"/>
+ <text text="3.3V" x="-3" y="104" size="7"/>
+ <text text="GND" x="-3" y="124" size="6"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="94" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="136" width="2"/>
+ <text text="GND" x="-3" y="133" size="6"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="158" width="2"/>
+ <text text="Vin" x="-2" y="144" size="7"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="186" width="2"/>
+ <text text="ANALOG IN" rotation="90" x="17" y="169" size="5"/>
+ <text text="POWER" rotation="90" x="18" y="112" size="5"/>
+ <text text="RESET" x="-3" y="93" size="6"/>
+ <text text="5V" x="-3" y="114" size="7"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="158" width="2"/>
+ <text text="IO ref" x="-3" y="84" size="7"/>
+ <circle diameter="20.5913" antialias="true" style="line-style:dotted;line-weight:thin;filling:none;color:black" x="1.7044" y="13.7044"/>
+ <polygon y1="-14" y2="221" y3="223" y4="230" y5="230" y6="220" closed="false" x1="-20" y7="220" x2="-20" y8="-14" x3="-10" y9="-14" x4="0" x5="105" style="line-style:normal;line-weight:normal;filling:none;color:black" x6="120" x7="160" x8="160" antialias="false" x9="160"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="179" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="165" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="73" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="179" width="2"/>
+ <circle diameter="2.5" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="97.75" y="76.75"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="136" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="73" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="186" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="101" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="151" width="2"/>
+ <circle diameter="2.5" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="108.75" y="76.75"/>
+ <text text="RX" rotation="90" x="90" y="66" size="4"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="94" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="101" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="165" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="115" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="115" width="2"/>
+ <text text="L" rotation="90" x="108" y="69" size="4"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="193" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="80" width="2"/>
+ <rect antialias="false" height="6" style="line-style:dotted;line-weight:thin;filling:none;color:black" x="108" y="75" width="4"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="151" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="80" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="66" width="2"/>
+ <rect antialias="false" height="6" style="line-style:dotted;line-weight:thin;filling:none;color:black" x="97" y="75" width="4"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="66" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="193" width="2"/>
+ <circle diameter="12" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="91" y="216"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="143" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="143" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="122" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="122" width="2"/>
+ <circle diameter="12" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="145" y="19"/>
+ <circle diameter="12" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="11" y="216"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="108" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="108" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="172" width="2"/>
+ <rect antialias="false" height="18" style="line-style:normal;line-weight:normal;filling:none;color:black" x="76" y="206" width="8"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="129" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="129" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" y="87" width="2"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="87" width="2"/>
+ <rect antialias="false" height="18" style="line-style:normal;line-weight:normal;filling:none;color:black" x="66" y="206" width="8"/>
+ <rect antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x="68" y="218" width="4"/>
+ <rect antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x="128" y="28" width="4"/>
+ <rect antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x="78" y="208" width="4"/>
+ <rect antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x="58" y="218" width="4"/>
+ <ellipse antialias="true" height="15" style="line-style:normal;line-weight:normal;filling:none;color:black" x="99" y="108" width="11"/>
+ <rect antialias="false" height="182" style="line-style:normal;line-weight:normal;filling:none;color:black" x="144" y="34" width="12"/>
+ <rect antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x="68" y="208" width="4"/>
+ <rect antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x="78" y="218" width="4"/>
+ <rect antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x="128" y="38" width="4"/>
+ <rect antialias="false" height="8" style="line-style:normal;line-weight:normal;filling:none;color:black" x="116" y="36" width="18"/>
+ <rect antialias="false" height="8" style="line-style:normal;line-weight:normal;filling:none;color:black" x="104" y="112" width="1"/>
+ <rect antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x="128" y="48" width="4"/>
+ <text text="A5" x="-2" y="214" size="7"/>
+ <rect antialias="false" height="8" style="line-style:normal;line-weight:normal;filling:none;color:black" x="116" y="26" width="18"/>
+ <text text="A4" x="-2" y="204" size="7"/>
+ <text text="A3" x="-2" y="194" size="7"/>
+ <rect antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x="118" y="38" width="4"/>
+ <text text="A0" x="-2" y="164" size="7"/>
+ <rect antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x="118" y="48" width="4"/>
+ <text text="A2" x="-2" y="184" size="7"/>
+ <rect antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x="118" y="28" width="4"/>
+ <text text="A1" x="-2" y="174" size="7"/>
+ <rect antialias="false" height="8" style="line-style:normal;line-weight:normal;filling:none;color:black" x="116" y="46" width="18"/>
+ <text text="~9" x="128" y="123" size="7"/>
+ <text text="12" x="130" y="94" size="7"/>
+ <text text="~10" x="122" y="114" size="7"/>
+ <text text="TX->1" x="114" y="204" size="7"/>
+ <text text="RX&lt;-0" x="114" y="214" size="7"/>
+ <text text="~11" x="123" y="104" size="7"/>
+ <text text="8" x="136" y="133" size="7"/>
+ <text text="4" x="136" y="173" size="7"/>
+ <text text="7" x="136" y="144" size="7"/>
+ <text text="~3" x="128" y="183" size="7"/>
+ <text text="2" x="136" y="193" size="7"/>
+ <text text="13" x="130" y="83" size="7"/>
+ <text text="DIGITAL (PWM~)" rotation="90" x="117" y="131" size="5"/>
+ <text text="~5" x="128" y="163" size="7"/>
+ <text text="~6" x="128" y="154" size="7"/>
+ <text text="AREF" x="118" y="63" size="7"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="167" width="6"/>
+ <rect antialias="false" height="82" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-16" y="64" width="12"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="177" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="47" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="157" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="57" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="37" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="167" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="147" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="137" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="197" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="127" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="207" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="97" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="107" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="187" width="6"/>
+ <arc antialias="false" height="12" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-20" y="-20" start="-180" width="12" angle="-90"/>
+ <arc antialias="false" height="12" style="line-style:normal;line-weight:normal;filling:none;color:black" x="148" y="-20" start="90" width="12" angle="-90"/>
+ <rect antialias="false" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x="58" y="208" width="4"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="187" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="87" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="117" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="77" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="197" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="97" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="177" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="107" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="87" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" y="67" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="157" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="77" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="207" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="67" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="127" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="137" width="6"/>
+ <rect antialias="false" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" y="117" width="6"/>
+ <rect antialias="false" height="62" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-16" y="154" width="12"/>
+ <text text="GND" x="121" y="73" size="7"/>
+ <line length1="1.5" y1="135" length2="1.5" y2="135" antialias="false" x1="146" x2="154" end1="none" style="line-style:dotted;line-weight:normal;filling:none;color:black" end2="none"/>
+ <line length1="1.5" y1="213" length2="1.5" y2="79" antialias="false" x1="113" x2="113" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none"/>
+ <text text="ARDUINO" rotation="90" x="88" y="87" size="7"/>
+ <ellipse antialias="true" height="15" style="line-style:normal;line-weight:normal;filling:none;color:black" x="99" y="93" width="11"/>
+ <rect antialias="false" height="8" style="line-style:normal;line-weight:normal;filling:none;color:black" x="104" y="97" width="1"/>
+ <rect antialias="false" height="1" style="line-style:normal;line-weight:normal;filling:none;color:black" x="101" y="115" width="7"/>
+ <ellipse antialias="true" height="32" style="line-style:dashed;line-weight:thin;filling:none;color:black" x="89" y="143" width="21"/>
+ <text text="UNO" rotation="90" x="95" y="145" size="9"/>
+ <rect antialias="false" height="18" style="line-style:normal;line-weight:normal;filling:none;color:black" x="56" y="206" width="8"/>
+ <circle diameter="10" antialias="true" style="line-style:dotted;line-weight:thin;filling:none;color:black" x="145" y="-8"/>
+ <rect antialias="false" height="16" style="line-style:dashed;line-weight:thin;filling:none;color:black" x="141" y="-11" width="17"/>
+ <rect antialias="false" height="31" style="line-style:normal;line-weight:normal;filling:none;color:black" x="1" y="-29" width="20"/>
+ <line length1="1.5" y1="-22" length2="1.5" y2="-22" antialias="false" x1="1" x2="21" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <rect antialias="false" height="1" style="line-style:normal;line-weight:normal;filling:none;color:black" x="6" y="2" width="10"/>
+ <line length1="1.5" y1="-20" length2="1.5" y2="-20" antialias="false" x1="-13" x2="1" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <circle diameter="2.5" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="89.75" y="76.75"/>
+ <rect antialias="false" height="6" style="line-style:dotted;line-weight:thin;filling:none;color:black" x="89" y="75" width="4"/>
+ <text text="TX" rotation="90" x="98" y="66" size="4"/>
+ <text text="AIMEL" rotation="270" x="51" y="135" size="5"/>
+ <line length1="1.5" y1="131" length2="1.5" y2="117" antialias="false" x1="45" x2="45" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none"/>
+ <rect antialias="false" height="137" style="line-style:dotted;line-weight:thin;filling:none;color:black" x="37" y="65" width="32"/>
+ <rect antialias="false" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" y="172" width="2"/>
+ <line length1="1.5" y1="97" length2="1.5" y2="145" antialias="false" x1="26" x2="26" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none"/>
+ <line length1="1.5" y1="155" length2="1.5" y2="213" antialias="false" x1="26" x2="26" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none"/>
+ <ellipse antialias="true" height="22" style="line-style:dashed;line-weight:thin;filling:none;color:black" x="68" y="19" width="9"/>
+ <circle diameter="20.5913" antialias="true" style="line-style:dotted;line-weight:thin;filling:none;color:black" x="1.70437" y="40.7044"/>
+ <rect antialias="false" height="8" style="line-style:dashed;line-weight:thin;filling:none;color:black" x="51" y="-12" width="16"/>
+ <text text="MADE IN ITALY" rotation="90" x="78" y="169" size="2"/>
+ <line length1="1.5" y1="-20" length2="1.5" y2="-20" antialias="false" x1="22" x2="94" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <line length1="1.5" y1="-20" length2="1.5" y2="-20" antialias="false" x1="154" x2="131" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" end2="none"/>
+ <input text="_" rotate="true" tagg="label" x="-40" y="10" size="9"/>
+ <terminal orientation="e" x="150" y="210"/>
+ <terminal orientation="e" x="150" y="50"/>
+ <terminal orientation="e" x="150" y="60"/>
+ <terminal orientation="e" x="150" y="70"/>
+ <terminal orientation="e" x="150" y="40"/>
+ <terminal orientation="w" x="-10" y="80"/>
+ <terminal orientation="w" x="-10" y="90"/>
+ <terminal orientation="w" x="-10" y="100"/>
+ <terminal orientation="w" x="-10" y="110"/>
+ <terminal orientation="w" x="-10" y="120"/>
+ <terminal orientation="w" x="-10" y="170"/>
+ <terminal orientation="w" x="-10" y="180"/>
+ <terminal orientation="w" x="-10" y="190"/>
+ <terminal orientation="w" x="-10" y="200"/>
+ <terminal orientation="w" x="-10" y="210"/>
+ <terminal orientation="e" x="150" y="200"/>
+ <terminal orientation="e" x="150" y="190"/>
+ <terminal orientation="e" x="150" y="180"/>
+ <terminal orientation="w" x="-10" y="70"/>
+ <terminal orientation="w" x="-10" y="160"/>
+ <terminal orientation="e" x="150" y="130"/>
+ <terminal orientation="e" x="150" y="140"/>
+ <terminal orientation="e" x="150" y="150"/>
+ <terminal orientation="e" x="150" y="160"/>
+ <terminal orientation="e" x="150" y="170"/>
+ <terminal orientation="e" x="150" y="80"/>
+ <terminal orientation="e" x="150" y="90"/>
+ <terminal orientation="e" x="150" y="120"/>
+ <terminal orientation="e" x="150" y="110"/>
+ <terminal orientation="e" x="150" y="100"/>
+ <terminal orientation="w" x="-10" y="130"/>
+ <terminal orientation="w" x="-10" y="140"/>
+ <terminal orientation="n" x="10" y="-20"/>
+ <terminal orientation="n" x="110" y="-20"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ </category>
+ <category name="10_allpole">
+ <names>
+ <name lang="cs">Vícežilový</name>
+ <name lang="it">Multifilare</name>
+ <name lang="de">Allpolig</name>
+ <name lang="el">Πολυγραμμικό</name>
+ <name lang="pl">Schematy wieloliniowe</name>
+ <name lang="en">All-pole</name>
+ <name lang="fr">Multifilaire</name>
+ <name lang="ru">Многополюсные</name>
+ <name lang="nl">Veel polig</name>
+ </names>
+ <category name="395_electronics&amp;semiconductors">
+ <names>
+ <name lang="it">Elettronica e semiconduttori</name>
+ <name lang="de">Elektronik und Halbleiter</name>
+ <name lang="el">Ηλεκτρονικά και ημιαγωγοί</name>
+ <name lang="pl">Elektronika i półprzewodniki</name>
+ <name lang="en">Electronics and semiconductors</name>
+ <name lang="fr">Electronique et semi-conducteurs</name>
+ <name lang="ru">Электроника и полупроводники</name>
+ <name lang="nl">Electronica en halfgeleiders</name>
+ </names>
+ <category name="01_resistors">
+ <names>
+ <name lang="de">Widerstände</name>
+ <name lang="it">Resistori</name>
+ <name lang="cs">Odporník</name>
+ <name lang="el">Αντιστάσεις</name>
+ <name lang="ar">مُقاومة</name>
+ <name lang="pl">Rezystory</name>
+ <name lang="en">Resistors</name>
+ <name lang="fr">Résistances</name>
+ <name lang="ru">Резисторы</name>
+ <name lang="es">Resistencia</name>
+ <name lang="nl">Weerstand</name>
+ <name lang="pt">Resistência</name>
+ </names>
+ <element name="resistance.elmt">
+ <definition orientation="dyyy" link_type="simple" height="60" type="element" hotspot_x="10" version="0.5" hotspot_y="29" width="20">
+ <uuid uuid="{af30335a-4d6f-4d8c-a3a5-60c5e1d43dc7}"/>
+ <names>
+ <name lang="el">Αντίσταση</name>
+ <name lang="fr">Résistance</name>
+ <name lang="de">Widerstand</name>
+ <name lang="cs">Odporník</name>
+ <name lang="ru">Резистор</name>
+ <name lang="es">Resistencia</name>
+ <name lang="ar">مُقاومة</name>
+ <name lang="it">Resistore</name>
+ <name lang="pl">Rezystor</name>
+ <name lang="en">Resistor</name>
+ <name lang="pt">Resistência</name>
+ <name lang="nl">Weerstand</name>
+ </names>
+ <informations>EN 60617: 04-01-01</informations>
+ <description>
+ <line length1="1.5" length2="1.5" y1="-10" y2="-20" antialias="false" x1="0" end1="none" x2="0" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" length2="1.5" y1="10" y2="20" antialias="false" x1="0" end1="none" x2="0" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" length2="1.5" y1="10" y2="-10" antialias="false" x1="4" end1="none" x2="4" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" length2="1.5" y1="10" y2="10" antialias="false" x1="-4" end1="none" x2="4" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" length2="1.5" y1="-10" y2="-10" antialias="false" x1="4" end1="none" x2="-4" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" length2="1.5" y1="-10" y2="10" antialias="false" x1="-4" end1="none" x2="-4" end2="none" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <input text="_" tagg="label" rotate="true" x="6" y="0" size="9"/>
+ <terminal orientation="s" x="0" y="21"/>
+ <terminal orientation="n" x="0" y="-21"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ </category>
+ </category>
+ </category>
+ </category>
+ </collection>
+</project>
diff --git a/content/arduino_ohmetre.svg b/content/arduino_ohmetre.svg
new file mode 100644
index 0000000..484f8da
--- /dev/null
+++ b/content/arduino_ohmetre.svg
@@ -0,0 +1,1303 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg width="370.417mm" height="350.308mm"
+ xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
+<title>Qt SVG Document</title>
+<desc>Generated with Qt</desc>
+<defs>
+</defs>
+<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(2.65982,0,0,2.65982,-597.13,-398.973)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M224.5,150 L520,150 L520,430 L224.5,430 L224.5,150"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-2.65982,2.65982,0,41.2272,462.809)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-2.65982,2.65982,0,41.2272,462.809)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,-597.13,-398.973)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M240,359 L240,350 L240,320 L240,290 L240,281"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,151.61,531.964)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,151.61,531.964)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,-597.13,-398.973)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M240,359 L240,350 L331,350 L340,350"/>
+</g>
+
+<g fill="#000000" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,-597.13,-398.973)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="240" cy="350" r="1"/>
+<circle cx="240" cy="350" r="1"/>
+<circle cx="240" cy="350" r="1"/>
+<circle cx="240" cy="350" r="1"/>
+<circle cx="240" cy="350" r="1"/>
+<circle cx="240" cy="350" r="1"/>
+<circle cx="240" cy="350" r="1"/>
+<circle cx="240" cy="350" r="1"/>
+<circle cx="240" cy="350" r="1"/>
+<circle cx="240" cy="350" r="1"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-2.65982,2.65982,0,147.62,316.519)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-2.65982,2.65982,0,147.62,316.519)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,-597.13,-398.973)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M240,239 L240,230 L280,230 L280,300 L331,300 L340,300"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-2.65982,2.65982,0,186.188,582.501)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-2.65982,2.65982,0,186.188,582.501)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,-597.13,-398.973)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M240,401 L240,410 L294.5,410 L294.5,320 L340,320"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M95,-30 L130,-30 L130,15 L95,15 L95,-30"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="-11" cy="25" r="6"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,325.828,361.736)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >3.3V</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,325.828,417.592)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="7" font-family="Sans Serif" font-size="6" font-weight="400" font-style="normal"
+ >GND</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,94 L71,94 L71,99 L69,99 L69,94"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,136 L37,136 L37,141 L35,141 L35,136"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,325.828,441.53)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="7" font-family="Sans Serif" font-size="6" font-weight="400" font-style="normal"
+ >GND</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,158 L37,158 L37,163 L35,163 L35,158"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,328.488,468.129)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >Vin</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,186 L37,186 L37,191 L35,191 L35,186"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,2.65982,-2.65982,0,397.643,555.903)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="7" font-family="Sans Serif" font-size="5" font-weight="400" font-style="normal"
+ >ANALOG IN</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,2.65982,-2.65982,0,400.303,404.293)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="7" font-family="Sans Serif" font-size="5" font-weight="400" font-style="normal"
+ >POWER</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,325.828,335.138)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="7" font-family="Sans Serif" font-size="6" font-weight="400" font-style="normal"
+ >RESET</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,325.828,388.334)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >5V</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,158 L71,158 L71,163 L69,163 L69,158"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,325.828,308.539)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >IO ref</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle vector-effect="non-scaling-stroke" cx="12" cy="24.0001" r="10.2957"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-20,-14 -20,221 -10,223 0,230 105,230 120,220 160,220 160,-14 160,-14 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,179 L37,179 L37,184 L35,184 L35,179"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,165 L37,165 L37,170 L35,170 L35,165"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,73 L37,73 L37,78 L35,78 L35,73"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,179 L71,179 L71,184 L69,184 L69,179"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="99" cy="78" r="1.25"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,136 L71,136 L71,141 L69,141 L69,136"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,73 L71,73 L71,78 L69,78 L69,73"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,186 L71,186 L71,191 L69,191 L69,186"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,101 L37,101 L37,106 L35,106 L35,101"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,151 L37,151 L37,156 L35,156 L35,151"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="110" cy="78" r="1.25"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,2.65982,-2.65982,0,586.491,281.941)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="5" font-family="Sans Serif" font-size="4" font-weight="100" font-style="normal"
+ >RX</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,94 L37,94 L37,99 L35,99 L35,94"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,101 L71,101 L71,106 L69,106 L69,101"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,165 L71,165 L71,170 L69,170 L69,165"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,115 L71,115 L71,120 L69,120 L69,115"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,115 L37,115 L37,120 L35,120 L35,115"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,2.65982,-2.65982,0,634.367,289.921)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="5" font-family="Sans Serif" font-size="4" font-weight="100" font-style="normal"
+ >L</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,193 L37,193 L37,198 L35,198 L35,193"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,80 L37,80 L37,85 L35,85 L35,80"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M108,75 L112,75 L112,81 L108,81 L108,75"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,151 L71,151 L71,156 L69,156 L69,151"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,80 L71,80 L71,85 L69,85 L69,80"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,66 L37,66 L37,71 L35,71 L35,66"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M97,75 L101,75 L101,81 L97,81 L97,75"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,66 L71,66 L71,71 L69,71 L69,66"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,193 L71,193 L71,198 L69,198 L69,193"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="97" cy="222" r="6"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,143 L37,143 L37,148 L35,148 L35,143"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,143 L71,143 L71,148 L69,148 L69,143"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,122 L37,122 L37,127 L35,127 L35,122"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,122 L71,122 L71,127 L69,127 L69,122"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="151" cy="25" r="6"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="17" cy="222" r="6"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,108 L37,108 L37,113 L35,113 L35,108"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,108 L71,108 L71,113 L69,113 L69,108"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,172 L71,172 L71,177 L69,177 L69,172"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M76,206 L84,206 L84,224 L76,224 L76,206"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,129 L71,129 L71,134 L69,134 L69,129"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,129 L37,129 L37,134 L35,134 L35,129"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,87 L71,87 L71,92 L69,92 L69,87"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,87 L37,87 L37,92 L35,92 L35,87"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M66,206 L74,206 L74,224 L66,224 L66,206"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M68,218 L72,218 L72,222 L68,222 L68,218"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M128,28 L132,28 L132,32 L128,32 L128,28"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M78,208 L82,208 L82,212 L78,212 L78,208"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M58,218 L62,218 L62,222 L58,222 L58,218"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<ellipse cx="104.5" cy="115.5" rx="5.5" ry="7.5"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M144,34 L156,34 L156,216 L144,216 L144,34"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M68,208 L72,208 L72,212 L68,212 L68,208"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M78,218 L82,218 L82,222 L78,222 L78,218"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M128,38 L132,38 L132,42 L128,42 L128,38"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M116,36 L134,36 L134,44 L116,44 L116,36"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M104,112 L105,112 L105,120 L104,120 L104,112"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M128,48 L132,48 L132,52 L128,52 L128,48"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,328.488,654.316)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >A5</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M116,26 L134,26 L134,34 L116,34 L116,26"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,328.488,627.718)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >A4</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,328.488,601.12)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >A3</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M118,38 L122,38 L122,42 L118,42 L118,38"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,328.488,521.325)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >A0</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M118,48 L122,48 L122,52 L118,52 L118,48"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,328.488,574.521)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >A2</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M118,28 L122,28 L122,32 L118,32 L118,28"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,328.488,547.923)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >A1</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M116,46 L134,46 L134,54 L116,54 L116,46"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,674.265,412.272)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >~9</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,679.584,335.138)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >12</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,658.306,388.334)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >~10</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,637.027,627.718)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >TX-&gt;1</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,637.027,654.316)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >RX&lt;-0</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,660.966,361.736)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >~11</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,695.543,438.871)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >8</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,695.543,545.263)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >4</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,695.543,468.129)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >7</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,674.265,571.862)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >~3</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,695.543,598.46)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >2</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,679.584,305.879)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >13</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,2.65982,-2.65982,0,663.625,454.829)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="7" font-family="Sans Serif" font-size="5" font-weight="400" font-style="normal"
+ >DIGITAL (PWM~)</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,674.265,518.665)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >~5</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,674.265,494.727)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >~6</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,647.667,252.683)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >AREF</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,167 L153,167 L153,173 L147,173 L147,167"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-16,64 L-4,64 L-4,146 L-16,146 L-16,64"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,177 L153,177 L153,183 L147,183 L147,177"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,47 L153,47 L153,53 L147,53 L147,47"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,157 L153,157 L153,163 L147,163 L147,157"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,57 L153,57 L153,63 L147,63 L147,57"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,37 L153,37 L153,43 L147,43 L147,37"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,167 L-7,167 L-7,173 L-13,173 L-13,167"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,147 L153,147 L153,153 L147,153 L147,147"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,137 L153,137 L153,143 L147,143 L147,137"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,197 L153,197 L153,203 L147,203 L147,197"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,127 L153,127 L153,133 L147,133 L147,127"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,207 L153,207 L153,213 L147,213 L147,207"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,97 L-7,97 L-7,103 L-13,103 L-13,97"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,107 L153,107 L153,113 L147,113 L147,107"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,187 L153,187 L153,193 L147,193 L147,187"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-20,-14 C-20,-17.3137 -17.3137,-20 -14,-20 "/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M154,-20 C157.314,-20 160,-17.3137 160,-14 "/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M58,208 L62,208 L62,212 L58,212 L58,208"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,187 L-7,187 L-7,193 L-13,193 L-13,187"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,87 L-7,87 L-7,93 L-13,93 L-13,87"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,117 L153,117 L153,123 L147,123 L147,117"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,77 L153,77 L153,83 L147,83 L147,77"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,197 L-7,197 L-7,203 L-13,203 L-13,197"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,97 L153,97 L153,103 L147,103 L147,97"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,177 L-7,177 L-7,183 L-13,183 L-13,177"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,107 L-7,107 L-7,113 L-13,113 L-13,107"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,87 L153,87 L153,93 L147,93 L147,87"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,67 L153,67 L153,73 L147,73 L147,67"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,157 L-7,157 L-7,163 L-13,163 L-13,157"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,77 L-7,77 L-7,83 L-13,83 L-13,77"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,207 L-7,207 L-7,213 L-13,213 L-13,207"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,67 L-7,67 L-7,73 L-13,73 L-13,67"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,127 L-7,127 L-7,133 L-13,133 L-13,127"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,137 L-7,137 L-7,143 L-13,143 L-13,137"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,117 L-7,117 L-7,123 L-13,123 L-13,117"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-16,154 L-4,154 L-4,216 L-16,216 L-16,154"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,655.646,279.281)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >GND</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="146,135 154,135 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="non-scaling-stroke" points="113,213 113,79 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,2.65982,-2.65982,0,589.15,337.797)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >ARDUINO</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<ellipse cx="104.5" cy="100.5" rx="5.5" ry="7.5"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M104,97 L105,97 L105,105 L104,105 L104,97"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M101,115 L108,115 L108,116 L101,116 L101,115"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="4,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<ellipse vector-effect="non-scaling-stroke" cx="99.5" cy="159" rx="10.5" ry="16"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,2.65982,-2.65982,0,615.749,492.067)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="11" font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+ >UNO</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M56,206 L64,206 L64,224 L56,224 L56,206"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle vector-effect="non-scaling-stroke" cx="150" cy="-3" r="5"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="4,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M141,-11 L158,-11 L158,5 L141,5 L141,-11"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M1,-29 L21,-29 L21,2 L1,2 L1,-29"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="1,-22 21,-22 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M6,2 L16,2 L16,3 L6,3 L6,2"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-13,-20 1,-20 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="91" cy="78" r="1.25"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M89,75 L93,75 L93,81 L89,81 L89,75"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,2.65982,-2.65982,0,607.769,281.941)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="5" font-family="Sans Serif" font-size="4" font-weight="100" font-style="normal"
+ >TX</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-2.65982,2.65982,0,450.84,465.469)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="7" font-family="Sans Serif" font-size="5" font-weight="400" font-style="normal"
+ >AIMEL</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="non-scaling-stroke" points="45,131 45,117 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M37,65 L69,65 L69,202 L37,202 L37,65"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,172 L37,172 L37,177 L35,177 L35,172"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="non-scaling-stroke" points="26,97 26,145 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="non-scaling-stroke" points="26,155 26,213 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="4,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<ellipse vector-effect="non-scaling-stroke" cx="72.5" cy="30" rx="4.5" ry="11"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle vector-effect="non-scaling-stroke" cx="12" cy="51.0001" r="10.2957"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="4,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M51,-12 L67,-12 L67,-4 L51,-4 L51,-12"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,2.65982,-2.65982,0,549.253,555.903)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="3" font-family="Sans Serif" font-size="2" font-weight="100" font-style="normal"
+ >MADE IN ITALY</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="22,-20 94,-20 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,333.808,106.393)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="154,-20 131,-20 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,227.415,103.733)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,227.415,103.733)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,41.2272,292.58)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="0,-10 0,-20 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,41.2272,292.58)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="0,10 0,20 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,41.2272,292.58)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="4,10 4,-10 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,41.2272,292.58)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-4,10 4,10 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,41.2272,292.58)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="4,-10 -4,-10 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,41.2272,292.58)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-4,-10 -4,10 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,57.1862,263.322)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,57.1862,263.322)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="4" y="15" font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+ >R1</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,57.1862,263.322)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,41.2272,611.759)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="0,-10 0,-20 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,41.2272,611.759)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="0,10 0,20 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,41.2272,611.759)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="4,10 4,-10 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,41.2272,611.759)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-4,10 4,10 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,41.2272,611.759)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="4,-10 -4,-10 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.65982,0,0,2.65982,41.2272,611.759)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-4,-10 -4,10 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,57.1862,582.501)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,57.1862,582.501)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="4" y="15" font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+ >R2</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.65982,0,0,2.65982,57.1862,582.501)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+</g>
+</svg>
diff --git a/content/attiny_programater.qet b/content/attiny_programater.qet
new file mode 100644
index 0000000..1b4adbc
--- /dev/null
+++ b/content/attiny_programater.qet
@@ -0,0 +1,625 @@
+<project folioSheetQuantity="0" version="0.5" title="">
+ <properties/>
+ <newdiagrams>
+ <border displaycols="true" colsize="60" rows="8" displayrows="true" rowsize="80" cols="17"/>
+ <inset filename="" author="" displayAt="bottom" folio="%id/%total" date="null" title=""/>
+ <conductors function="" vertirotatetext="270" numsize="7" displaytext="1" type="multi" tension-protocol="" num="_" onetextperfolio="0" horizrotatetext="0"/>
+ <report label="%f-%l%c"/>
+ <xrefs>
+ <xref switchprefix="" type="coil" displayhas="cross" delayprefix="" snapto="label" powerprefix="" showpowerctc="false"/>
+ <xref switchprefix="" type="commutator" displayhas="cross" delayprefix="" snapto="label" powerprefix="" showpowerctc="false"/>
+ <xref switchprefix="" type="protection" displayhas="cross" delayprefix="" snapto="label" powerprefix="" showpowerctc="false"/>
+ </xrefs>
+ <conductors_autonums/>
+ </newdiagrams>
+ <diagram displaycols="true" colsize="60" filename="" author="" rows="8" height="660" displayrows="true" displayAt="bottom" order="1" rowsize="80" folio="%id/%total" version="0.5" date="null" title="" cols="17">
+ <defaultconductor function="" vertirotatetext="270" numsize="7" displaytext="1" type="multi" tension-protocol="" num="_" onetextperfolio="0" horizrotatetext="0"/>
+ <elements>
+ <element uuid="{d8c70f2b-69f7-47e8-9320-e8eb2c4963ed}" x="150" y="290" type="embed://import/10_electric/10_allpole/395_electronics&amp;semiconductors/02_capacitors/condensateur_electrolytique.elmt" orientation="1">
+ <terminals>
+ <terminal number="_" name="_" x="0" y="-16" nameHidden="0" id="0" orientation="0"/>
+ <terminal number="_" name="_" x="0" y="-4" nameHidden="0" id="1" orientation="2"/>
+ </terminals>
+ <inputs>
+ <input usery="20" x="6" y="-10.45" text="10µf" userrotation="180" userx="30"/>
+ </inputs>
+ </element>
+ <element uuid="{5633cee5-d7ae-4899-84b6-9e4a8fbf794b}" x="220" y="200" type="embed://import/10_electric/20_manufacturers_articles/arduino/arduino_uno.elmt" orientation="0">
+ <terminals>
+ <terminal number="_" name="_" x="146" y="210" nameHidden="0" id="2" orientation="1"/>
+ <terminal number="_" name="_" x="146" y="50" nameHidden="0" id="3" orientation="1"/>
+ <terminal number="_" name="_" x="146" y="60" nameHidden="0" id="4" orientation="1"/>
+ <terminal number="_" name="_" x="146" y="70" nameHidden="0" id="5" orientation="1"/>
+ <terminal number="_" name="_" x="146" y="40" nameHidden="0" id="6" orientation="1"/>
+ <terminal number="_" name="_" x="-6" y="80" nameHidden="0" id="7" orientation="3"/>
+ <terminal number="_" name="_" x="-6" y="90" nameHidden="0" id="8" orientation="3"/>
+ <terminal number="_" name="_" x="-6" y="100" nameHidden="0" id="9" orientation="3"/>
+ <terminal number="_" name="_" x="-6" y="110" nameHidden="0" id="10" orientation="3"/>
+ <terminal number="_" name="_" x="-6" y="120" nameHidden="0" id="11" orientation="3"/>
+ <terminal number="_" name="_" x="-6" y="170" nameHidden="0" id="12" orientation="3"/>
+ <terminal number="_" name="_" x="-6" y="180" nameHidden="0" id="13" orientation="3"/>
+ <terminal number="_" name="_" x="-6" y="190" nameHidden="0" id="14" orientation="3"/>
+ <terminal number="_" name="_" x="-6" y="200" nameHidden="0" id="15" orientation="3"/>
+ <terminal number="_" name="_" x="-6" y="210" nameHidden="0" id="16" orientation="3"/>
+ <terminal number="_" name="_" x="146" y="200" nameHidden="0" id="17" orientation="1"/>
+ <terminal number="_" name="_" x="146" y="190" nameHidden="0" id="18" orientation="1"/>
+ <terminal number="_" name="_" x="146" y="180" nameHidden="0" id="19" orientation="1"/>
+ <terminal number="_" name="_" x="-6" y="70" nameHidden="0" id="20" orientation="3"/>
+ <terminal number="_" name="_" x="-6" y="160" nameHidden="0" id="21" orientation="3"/>
+ <terminal number="_" name="_" x="146" y="130" nameHidden="0" id="22" orientation="1"/>
+ <terminal number="_" name="_" x="146" y="140" nameHidden="0" id="23" orientation="1"/>
+ <terminal number="_" name="_" x="146" y="150" nameHidden="0" id="24" orientation="1"/>
+ <terminal number="_" name="_" x="146" y="160" nameHidden="0" id="25" orientation="1"/>
+ <terminal number="_" name="_" x="146" y="170" nameHidden="0" id="26" orientation="1"/>
+ <terminal number="_" name="_" x="146" y="80" nameHidden="0" id="27" orientation="1"/>
+ <terminal number="_" name="_" x="146" y="90" nameHidden="0" id="28" orientation="1"/>
+ <terminal number="_" name="_" x="146" y="120" nameHidden="0" id="29" orientation="1"/>
+ <terminal number="_" name="_" x="146" y="110" nameHidden="0" id="30" orientation="1"/>
+ <terminal number="_" name="_" x="146" y="100" nameHidden="0" id="31" orientation="1"/>
+ <terminal number="_" name="_" x="-6" y="130" nameHidden="0" id="32" orientation="3"/>
+ <terminal number="_" name="_" x="-6" y="140" nameHidden="0" id="33" orientation="3"/>
+ <terminal number="_" name="_" x="10" y="-16" nameHidden="0" id="34" orientation="0"/>
+ <terminal number="_" name="_" x="110" y="-16" nameHidden="0" id="35" orientation="0"/>
+ </terminals>
+ <inputs>
+ <input x="-3" y="104" text="3.3V"/>
+ <input x="-3" y="104" text="3.3V"/>
+ <input x="-3" y="124" text="GND"/>
+ <input x="-3" y="124" text="GND"/>
+ <input x="-3" y="133" text="GND"/>
+ <input x="-3" y="133" text="GND"/>
+ <input x="-2" y="144" text="Vin"/>
+ <input x="-2" y="144" text="Vin"/>
+ <input x="17" y="169" text="ANALOG IN"/>
+ <input x="17" y="169" text="ANALOG IN"/>
+ <input x="18" y="112" text="POWER"/>
+ <input x="18" y="112" text="POWER"/>
+ <input x="-3" y="93" text="RESET"/>
+ <input x="-3" y="93" text="RESET"/>
+ <input x="-3" y="114" text="5V"/>
+ <input x="-3" y="114" text="5V"/>
+ <input x="-3" y="84" text="IO ref"/>
+ <input x="-3" y="84" text="IO ref"/>
+ <input x="90" y="66" text="RX"/>
+ <input x="90" y="66" text="RX"/>
+ <input x="108" y="69" text="L"/>
+ <input x="108" y="69" text="L"/>
+ <input x="-2" y="214" text="A5"/>
+ <input x="-2" y="214" text="A5"/>
+ <input x="-2" y="204" text="A4"/>
+ <input x="-2" y="204" text="A4"/>
+ <input x="-2" y="194" text="A3"/>
+ <input x="-2" y="194" text="A3"/>
+ <input x="-2" y="164" text="A0"/>
+ <input x="-2" y="164" text="A0"/>
+ <input x="-2" y="184" text="A2"/>
+ <input x="-2" y="184" text="A2"/>
+ <input x="-2" y="174" text="A1"/>
+ <input x="-2" y="174" text="A1"/>
+ <input x="128" y="123" text="~9"/>
+ <input x="128" y="123" text="~9"/>
+ <input x="130" y="94" text="12"/>
+ <input x="130" y="94" text="12"/>
+ <input x="122" y="114" text="~10"/>
+ <input x="122" y="114" text="~10"/>
+ <input x="114" y="204" text="TX->1"/>
+ <input x="114" y="204" text="TX->1"/>
+ <input x="114" y="214" text="RX&lt;-0"/>
+ <input x="114" y="214" text="RX&lt;-0"/>
+ <input x="123" y="104" text="~11"/>
+ <input x="123" y="104" text="~11"/>
+ <input x="136" y="133" text="8"/>
+ <input x="136" y="133" text="8"/>
+ <input x="136" y="173" text="4"/>
+ <input x="136" y="173" text="4"/>
+ <input x="136" y="144" text="7"/>
+ <input x="136" y="144" text="7"/>
+ <input x="128" y="183" text="~3"/>
+ <input x="128" y="183" text="~3"/>
+ <input x="136" y="193" text="2"/>
+ <input x="136" y="193" text="2"/>
+ <input x="130" y="83" text="13"/>
+ <input x="130" y="83" text="13"/>
+ <input x="117" y="131" text="DIGITAL (PWM~)"/>
+ <input x="117" y="131" text="DIGITAL (PWM~)"/>
+ <input x="128" y="163" text="~5"/>
+ <input x="128" y="163" text="~5"/>
+ <input x="128" y="154" text="~6"/>
+ <input x="128" y="154" text="~6"/>
+ <input x="118" y="63" text="AREF"/>
+ <input x="118" y="63" text="AREF"/>
+ <input x="121" y="73" text="GND"/>
+ <input x="121" y="73" text="GND"/>
+ <input x="88" y="87" text="ARDUINO"/>
+ <input x="88" y="87" text="ARDUINO"/>
+ <input x="95" y="145" text="UNO"/>
+ <input x="95" y="145" text="UNO"/>
+ <input x="98" y="66" text="TX"/>
+ <input x="98" y="66" text="TX"/>
+ <input x="51" y="135" text="AIMEL"/>
+ <input x="51" y="135" text="AIMEL"/>
+ <input x="78" y="169" text="MADE IN ITALY"/>
+ <input x="78" y="169" text="MADE IN ITALY"/>
+ <input x="-40" y="10" text=""/>
+ </inputs>
+ </element>
+ <element uuid="{0e9aab04-06ff-4f43-81f6-b83fa19ef1ab}" x="430" y="260" type="embed://attiny45.elmt" orientation="0">
+ <terminals>
+ <terminal number="_" name="_" x="16.0783" y="-0.1334" nameHidden="0" id="36" orientation="1"/>
+ <terminal number="_" name="_" x="-15.9944" y="-20.1334" nameHidden="0" id="37" orientation="3"/>
+ <terminal number="_" name="_" x="16.0783" y="-20.1334" nameHidden="0" id="38" orientation="1"/>
+ <terminal number="_" name="_" x="-15.9944" y="-0.1334" nameHidden="0" id="39" orientation="3"/>
+ <terminal number="_" name="_" x="-15.9944" y="9.8666" nameHidden="0" id="40" orientation="3"/>
+ <terminal number="_" name="_" x="-15.9944" y="-10.1334" nameHidden="0" id="41" orientation="3"/>
+ <terminal number="_" name="_" x="16.0783" y="9.8666" nameHidden="0" id="42" orientation="1"/>
+ <terminal number="_" name="_" x="16.0783" y="-10.1334" nameHidden="0" id="43" orientation="1"/>
+ </terminals>
+ <inputs>
+ <input x="2.77419" y="11.8666" text="Pin 0"/>
+ <input x="2.77419" y="11.8666" text="Pin 0"/>
+ <input x="-12.7084" y="11.8666" text="GND"/>
+ <input x="-12.7084" y="11.8666" text="GND"/>
+ <input x="16.6175" y="6.8666" text="5"/>
+ <input x="16.6175" y="6.8666" text="5"/>
+ <input x="-20.2676" y="-21.9875" text="1"/>
+ <input x="-20.2676" y="-21.9875" text="1"/>
+ <input x="-20.9051" y="8.71" text="4"/>
+ <input x="-20.9051" y="8.71" text="4"/>
+ <input x="16.6175" y="-23.1334" text="8"/>
+ <input x="16.6175" y="-23.1334" text="8"/>
+ <input x="-20.2676" y="-1.4341" text="3"/>
+ <input x="-20.2676" y="-1.4341" text="3"/>
+ <input x="-20.2676" y="-12" text="2"/>
+ <input x="-20.2676" y="-12" text="2"/>
+ <input x="-14.5299" y="-43.1334" text=""/>
+ <input x="15.8889" y="-3.1334" text="6"/>
+ <input x="15.8889" y="-3.1334" text="6"/>
+ <input x="16.6175" y="-13.1334" text="7"/>
+ <input x="16.6175" y="-13.1334" text="7"/>
+ <input x="-13.6192" y="1.8666" text="Pin 4"/>
+ <input x="-13.6192" y="1.8666" text="Pin 4"/>
+ <input x="-13.6192" y="-8.1334" text="Pin 3"/>
+ <input x="-13.6192" y="-8.1334" text="Pin 3"/>
+ <input x="-13.6192" y="-18.1334" text="RESET"/>
+ <input x="-13.6192" y="-18.1334" text="RESET"/>
+ <input x="3.68493" y="-18.1334" text="VCC"/>
+ <input x="3.68493" y="-18.1334" text="VCC"/>
+ <input x="2.77419" y="-8.1334" text="Pin 2"/>
+ <input x="2.77419" y="-8.1334" text="Pin 2"/>
+ <input x="2.77419" y="1.8666" text="Pin 1"/>
+ <input x="2.77419" y="1.8666" text="Pin 1"/>
+ </inputs>
+ </element>
+ </elements>
+ <conductors>
+ <conductor function="" vertirotatetext="270" terminal1="8" terminal2="0" x="0" y="0" numsize="7" displaytext="1" type="multi" tension-protocol="" num="" onetextperfolio="0" horizrotatetext="0"/>
+ <conductor function="" vertirotatetext="270" terminal1="1" terminal2="11" x="0" y="0" numsize="7" displaytext="1" type="multi" tension-protocol="" num="" onetextperfolio="0" horizrotatetext="0"/>
+ <conductor function="" vertirotatetext="270" terminal1="40" terminal2="5" x="0" y="0" numsize="7" displaytext="1" type="multi" tension-protocol="" num="" onetextperfolio="0" horizrotatetext="0">
+ <segment length="-9" orientation="horizontal"/>
+ <segment length="-11.0056" orientation="horizontal"/>
+ <segment length="0.1334" orientation="vertical"/>
+ <segment length="-11" orientation="horizontal"/>
+ <segment length="-9" orientation="horizontal"/>
+ </conductor>
+ <conductor function="" vertirotatetext="270" terminal1="42" color="#00aa00" terminal2="31" x="0" y="0" numsize="7" displaytext="1" type="multi" tension-protocol="" num="" onetextperfolio="0" horizrotatetext="0">
+ <segment length="14" orientation="horizontal"/>
+ <segment length="30.1334" orientation="vertical"/>
+ <segment length="-74.0783" orientation="horizontal"/>
+ <segment length="0" orientation="horizontal"/>
+ <segment length="-16" orientation="horizontal"/>
+ <segment length="-4" orientation="horizontal"/>
+ </conductor>
+ <conductor function="" vertirotatetext="270" terminal1="36" color="#0000ff" terminal2="28" x="0" y="0" numsize="7" displaytext="1" type="multi" tension-protocol="" num="" onetextperfolio="0" horizrotatetext="0">
+ <segment length="13" orientation="horizontal"/>
+ <segment length="24.9217" orientation="horizontal"/>
+ <segment length="30.1334" orientation="vertical"/>
+ <segment length="-86" orientation="horizontal"/>
+ <segment length="0" orientation="horizontal"/>
+ <segment length="-27" orientation="horizontal"/>
+ <segment length="-5" orientation="horizontal"/>
+ </conductor>
+ <conductor function="" vertirotatetext="270" terminal1="43" color="#ffaa00" terminal2="27" x="0" y="0" numsize="7" displaytext="1" type="multi" tension-protocol="" num="" onetextperfolio="0" horizrotatetext="0">
+ <segment length="13" orientation="horizontal"/>
+ <segment length="34.9217" orientation="horizontal"/>
+ <segment length="30.1334" orientation="vertical"/>
+ <segment length="-86" orientation="horizontal"/>
+ <segment length="0" orientation="horizontal"/>
+ <segment length="-37" orientation="horizontal"/>
+ <segment length="-5" orientation="horizontal"/>
+ </conductor>
+ <conductor function="" vertirotatetext="270" terminal1="38" color="#ff0000" terminal2="10" x="0" y="0" numsize="7" displaytext="1" type="multi" tension-protocol="" num="" onetextperfolio="0" horizrotatetext="0">
+ <segment length="16.5" orientation="horizontal"/>
+ <segment length="-64.8666" orientation="vertical"/>
+ <segment length="-291.578" orientation="horizontal"/>
+ <segment length="135" orientation="vertical"/>
+ <segment length="18.5" orientation="horizontal"/>
+ <segment length="16.5" orientation="horizontal"/>
+ </conductor>
+ </conductors>
+ </diagram>
+ <collection>
+ <category name="import">
+ <names>
+ <name lang="pl">Elementy importowane</name>
+ <name lang="en">Imported elements</name>
+ <name lang="fr">Éléments importés</name>
+ <name lang="ru">Импортированные элементы</name>
+ <name lang="es">Elementos importados</name>
+ <name lang="nl">Elementen geïmporteerd</name>
+ <name lang="pt">elementos importados</name>
+ <name lang="ca">Elements importats</name>
+ <name lang="de">Importierte elemente</name>
+ <name lang="cs">Zavedené prvky</name>
+ <name lang="it">Elementi importati</name>
+ <name lang="hr">Uvezeni elementi</name>
+ <name lang="ro">Elemente importate</name>
+ <name lang="el">Εισηγμένα στοιχεία</name>
+ </names>
+ <category name="10_electric">
+ <names>
+ <name lang="pl">Elektrotechnika</name>
+ <name lang="en">Electric</name>
+ <name lang="fr">Electrique</name>
+ <name lang="ru">Электротехника</name>
+ <name lang="nl">Elektrotechniek</name>
+ <name lang="de">Elektrik</name>
+ <name lang="it">Elettrica</name>
+ <name lang="cs">Elektrotechnika</name>
+ <name lang="el">Ηλεκτρικά</name>
+ </names>
+ <category name="20_manufacturers_articles">
+ <names>
+ <name lang="pl">Urządzenia producentów</name>
+ <name lang="en">Manufacturers articles</name>
+ <name lang="fr">Articles constructeurs</name>
+ <name lang="ru">База изделий производителей</name>
+ <name lang="de">Herstellerartikel</name>
+ <name lang="it">Marchi produttori</name>
+ <name lang="el">Κατασκευαστές υλικού</name>
+ </names>
+ <category name="arduino">
+ <names>
+ <name lang="en">Arduino</name>
+ <name lang="cs">Arduino</name>
+ </names>
+ <element name="arduino_uno.elmt">
+ <definition height="270" link_type="simple" hotspot_x="25" hotspot_y="35" width="190" version="0.5" type="element" orientation="dyyy">
+ <uuid uuid="{adc899b2-6c00-4fcf-a605-6427cc667d01}"/>
+ <names>
+ <name lang="pl">Arduino Uno</name>
+ <name lang="nl">Arduino Uno</name>
+ <name lang="fr">Arduino Uno</name>
+ <name lang="en">Arduino Uno</name>
+ <name lang="cs">Arduino Uno</name>
+ <name lang="it">Arduino Uno</name>
+ </names>
+ <informations>ezza</informations>
+ <description>
+ <rect height="45" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="35" x="95" y="-30"/>
+ <circle diameter="12" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-17" y="19"/>
+ <text size="7" x="-3" text="3.3V" y="104"/>
+ <text size="6" x="-3" text="GND" y="124"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="69" y="94"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="35" y="136"/>
+ <text size="6" x="-3" text="GND" y="133"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="35" y="158"/>
+ <text size="7" x="-2" text="Vin" y="144"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="35" y="186"/>
+ <text size="5" rotation="90" x="17" text="ANALOG IN" y="169"/>
+ <text size="5" rotation="90" x="18" text="POWER" y="112"/>
+ <text size="6" x="-3" text="RESET" y="93"/>
+ <text size="7" x="-3" text="5V" y="114"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="69" y="158"/>
+ <text size="7" x="-3" text="IO ref" y="84"/>
+ <circle diameter="20.5913" antialias="true" style="line-style:dotted;line-weight:thin;filling:none;color:black" x="1.7044" y="13.7044"/>
+ <polygon x6="120" x7="160" x8="160" x9="160" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-14" y2="221" y3="223" y4="230" y5="230" closed="false" y6="220" x1="-20" y7="220" x2="-20" y8="-14" x3="-10" y9="-14" x4="0" x5="105"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="35" y="179"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="35" y="165"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="35" y="73"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="69" y="179"/>
+ <circle diameter="2.5" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="97.75" y="76.75"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="69" y="136"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="69" y="73"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="69" y="186"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="35" y="101"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="35" y="151"/>
+ <circle diameter="2.5" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="108.75" y="76.75"/>
+ <text size="4" rotation="90" x="90" text="RX" y="66"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="35" y="94"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="69" y="101"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="69" y="165"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="69" y="115"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="35" y="115"/>
+ <text size="4" rotation="90" x="108" text="L" y="69"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="35" y="193"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="35" y="80"/>
+ <rect height="6" antialias="false" style="line-style:dotted;line-weight:thin;filling:none;color:black" width="4" x="108" y="75"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="69" y="151"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="69" y="80"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="35" y="66"/>
+ <rect height="6" antialias="false" style="line-style:dotted;line-weight:thin;filling:none;color:black" width="4" x="97" y="75"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="69" y="66"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="69" y="193"/>
+ <circle diameter="12" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="91" y="216"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="35" y="143"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="69" y="143"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="35" y="122"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="69" y="122"/>
+ <circle diameter="12" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="145" y="19"/>
+ <circle diameter="12" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="11" y="216"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="35" y="108"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="69" y="108"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="69" y="172"/>
+ <rect height="18" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="8" x="76" y="206"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="69" y="129"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="35" y="129"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="69" y="87"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="35" y="87"/>
+ <rect height="18" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="8" x="66" y="206"/>
+ <rect height="4" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="4" x="68" y="218"/>
+ <rect height="4" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="4" x="128" y="28"/>
+ <rect height="4" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="4" x="78" y="208"/>
+ <rect height="4" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="4" x="58" y="218"/>
+ <ellipse height="15" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" width="11" x="99" y="108"/>
+ <rect height="182" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="12" x="144" y="34"/>
+ <rect height="4" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="4" x="68" y="208"/>
+ <rect height="4" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="4" x="78" y="218"/>
+ <rect height="4" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="4" x="128" y="38"/>
+ <rect height="8" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="18" x="116" y="36"/>
+ <rect height="8" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="1" x="104" y="112"/>
+ <rect height="4" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="4" x="128" y="48"/>
+ <text size="7" x="-2" text="A5" y="214"/>
+ <rect height="8" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="18" x="116" y="26"/>
+ <text size="7" x="-2" text="A4" y="204"/>
+ <text size="7" x="-2" text="A3" y="194"/>
+ <rect height="4" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="4" x="118" y="38"/>
+ <text size="7" x="-2" text="A0" y="164"/>
+ <rect height="4" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="4" x="118" y="48"/>
+ <text size="7" x="-2" text="A2" y="184"/>
+ <rect height="4" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="4" x="118" y="28"/>
+ <text size="7" x="-2" text="A1" y="174"/>
+ <rect height="8" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="18" x="116" y="46"/>
+ <text size="7" x="128" text="~9" y="123"/>
+ <text size="7" x="130" text="12" y="94"/>
+ <text size="7" x="122" text="~10" y="114"/>
+ <text size="7" x="114" text="TX->1" y="204"/>
+ <text size="7" x="114" text="RX&lt;-0" y="214"/>
+ <text size="7" x="123" text="~11" y="104"/>
+ <text size="7" x="136" text="8" y="133"/>
+ <text size="7" x="136" text="4" y="173"/>
+ <text size="7" x="136" text="7" y="144"/>
+ <text size="7" x="128" text="~3" y="183"/>
+ <text size="7" x="136" text="2" y="193"/>
+ <text size="7" x="130" text="13" y="83"/>
+ <text size="5" rotation="90" x="117" text="DIGITAL (PWM~)" y="131"/>
+ <text size="7" x="128" text="~5" y="163"/>
+ <text size="7" x="128" text="~6" y="154"/>
+ <text size="7" x="118" text="AREF" y="63"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="147" y="167"/>
+ <rect height="82" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="12" x="-16" y="64"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="147" y="177"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="147" y="47"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="147" y="157"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="147" y="57"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="147" y="37"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="-13" y="167"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="147" y="147"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="147" y="137"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="147" y="197"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="147" y="127"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="147" y="207"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="-13" y="97"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="147" y="107"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="147" y="187"/>
+ <arc height="12" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-180" width="12" x="-20" angle="-90" y="-20"/>
+ <arc height="12" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90" width="12" x="148" angle="-90" y="-20"/>
+ <rect height="4" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="4" x="58" y="208"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="-13" y="187"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="-13" y="87"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="147" y="117"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="147" y="77"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="-13" y="197"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="147" y="97"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="-13" y="177"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="-13" y="107"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="147" y="87"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="147" y="67"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="-13" y="157"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="-13" y="77"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="-13" y="207"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="-13" y="67"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="-13" y="127"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="-13" y="137"/>
+ <rect height="6" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="6" x="-13" y="117"/>
+ <rect height="62" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="12" x="-16" y="154"/>
+ <text size="7" x="121" text="GND" y="73"/>
+ <line y2="135" x1="146" x2="154" antialias="false" style="line-style:dotted;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="135"/>
+ <line y2="79" x1="113" x2="113" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="213"/>
+ <text size="7" rotation="90" x="88" text="ARDUINO" y="87"/>
+ <ellipse height="15" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" width="11" x="99" y="93"/>
+ <rect height="8" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="1" x="104" y="97"/>
+ <rect height="1" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="7" x="101" y="115"/>
+ <ellipse height="32" antialias="true" style="line-style:dashed;line-weight:thin;filling:none;color:black" width="21" x="89" y="143"/>
+ <text size="9" rotation="90" x="95" text="UNO" y="145"/>
+ <rect height="18" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="8" x="56" y="206"/>
+ <circle diameter="10" antialias="true" style="line-style:dotted;line-weight:thin;filling:none;color:black" x="145" y="-8"/>
+ <rect height="16" antialias="false" style="line-style:dashed;line-weight:thin;filling:none;color:black" width="17" x="141" y="-11"/>
+ <rect height="31" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="20" x="1" y="-29"/>
+ <line y2="-22" x1="1" x2="21" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="-22"/>
+ <rect height="1" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" width="10" x="6" y="2"/>
+ <line y2="-20" x1="-13" x2="1" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="-20"/>
+ <circle diameter="2.5" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="89.75" y="76.75"/>
+ <rect height="6" antialias="false" style="line-style:dotted;line-weight:thin;filling:none;color:black" width="4" x="89" y="75"/>
+ <text size="4" rotation="90" x="98" text="TX" y="66"/>
+ <text size="5" rotation="270" x="51" text="AIMEL" y="135"/>
+ <line y2="117" x1="45" x2="45" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="131"/>
+ <rect height="137" antialias="false" style="line-style:dotted;line-weight:thin;filling:none;color:black" width="32" x="37" y="65"/>
+ <rect height="5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" width="2" x="35" y="172"/>
+ <line y2="145" x1="26" x2="26" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="97"/>
+ <line y2="213" x1="26" x2="26" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="155"/>
+ <ellipse height="22" antialias="true" style="line-style:dashed;line-weight:thin;filling:none;color:black" width="9" x="68" y="19"/>
+ <circle diameter="20.5913" antialias="true" style="line-style:dotted;line-weight:thin;filling:none;color:black" x="1.70437" y="40.7044"/>
+ <rect height="8" antialias="false" style="line-style:dashed;line-weight:thin;filling:none;color:black" width="16" x="51" y="-12"/>
+ <text size="2" rotation="90" x="78" text="MADE IN ITALY" y="169"/>
+ <line y2="-20" x1="22" x2="94" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="-20"/>
+ <line y2="-20" x1="154" x2="131" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="-20"/>
+ <input size="9" rotate="true" x="-40" text="_" y="10" tagg="label"/>
+ <terminal x="150" y="210" orientation="e"/>
+ <terminal x="150" y="50" orientation="e"/>
+ <terminal x="150" y="60" orientation="e"/>
+ <terminal x="150" y="70" orientation="e"/>
+ <terminal x="150" y="40" orientation="e"/>
+ <terminal x="-10" y="80" orientation="w"/>
+ <terminal x="-10" y="90" orientation="w"/>
+ <terminal x="-10" y="100" orientation="w"/>
+ <terminal x="-10" y="110" orientation="w"/>
+ <terminal x="-10" y="120" orientation="w"/>
+ <terminal x="-10" y="170" orientation="w"/>
+ <terminal x="-10" y="180" orientation="w"/>
+ <terminal x="-10" y="190" orientation="w"/>
+ <terminal x="-10" y="200" orientation="w"/>
+ <terminal x="-10" y="210" orientation="w"/>
+ <terminal x="150" y="200" orientation="e"/>
+ <terminal x="150" y="190" orientation="e"/>
+ <terminal x="150" y="180" orientation="e"/>
+ <terminal x="-10" y="70" orientation="w"/>
+ <terminal x="-10" y="160" orientation="w"/>
+ <terminal x="150" y="130" orientation="e"/>
+ <terminal x="150" y="140" orientation="e"/>
+ <terminal x="150" y="150" orientation="e"/>
+ <terminal x="150" y="160" orientation="e"/>
+ <terminal x="150" y="170" orientation="e"/>
+ <terminal x="150" y="80" orientation="e"/>
+ <terminal x="150" y="90" orientation="e"/>
+ <terminal x="150" y="120" orientation="e"/>
+ <terminal x="150" y="110" orientation="e"/>
+ <terminal x="150" y="100" orientation="e"/>
+ <terminal x="-10" y="130" orientation="w"/>
+ <terminal x="-10" y="140" orientation="w"/>
+ <terminal x="10" y="-20" orientation="n"/>
+ <terminal x="110" y="-20" orientation="n"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ </category>
+ <category name="10_allpole">
+ <names>
+ <name lang="pl">Schematy wieloliniowe</name>
+ <name lang="en">All-pole</name>
+ <name lang="fr">Multifilaire</name>
+ <name lang="ru">Многополюсные</name>
+ <name lang="nl">Veel polig</name>
+ <name lang="cs">Vícežilový</name>
+ <name lang="it">Multifilare</name>
+ <name lang="de">Allpolig</name>
+ <name lang="el">Πολυγραμμικό</name>
+ </names>
+ <category name="395_electronics&amp;semiconductors">
+ <names>
+ <name lang="pl">Elektronika i półprzewodniki</name>
+ <name lang="en">Electronics and semiconductors</name>
+ <name lang="fr">Electronique et semi-conducteurs</name>
+ <name lang="ru">Электроника и полупроводники</name>
+ <name lang="nl">Electronica en halfgeleiders</name>
+ <name lang="it">Elettronica e semiconduttori</name>
+ <name lang="de">Elektronik und Halbleiter</name>
+ <name lang="el">Ηλεκτρονικά και ημιαγωγοί</name>
+ </names>
+ <category name="02_capacitors">
+ <names>
+ <name lang="ar">مُكثّف</name>
+ <name lang="pl">Kondensatory</name>
+ <name lang="en">Capacitors</name>
+ <name lang="fr">Capacités</name>
+ <name lang="ru">Конденсаторы</name>
+ <name lang="es">Condensador</name>
+ <name lang="nl">Condensatoren</name>
+ <name lang="pt">Condensador</name>
+ <name lang="de">Kapazitäten</name>
+ <name lang="it">Condensatori</name>
+ <name lang="cs">Kondenzátor</name>
+ <name lang="el">Πυκνωτές</name>
+ </names>
+ <element name="condensateur_electrolytique.elmt">
+ <definition height="30" link_type="simple" hotspot_x="11" hotspot_y="24" width="20" version="0.5" type="element" orientation="dyyy">
+ <uuid uuid="{e83a86e9-79b6-4d8e-aa83-82514e90469b}"/>
+ <names>
+ <name lang="de">Elektrolytkondensator</name>
+ <name lang="el">Πυκνωτής με πολικότητα</name>
+ <name lang="pl">Kondensator elektrolityczny</name>
+ <name lang="ar">مُكثّف كيميائي</name>
+ <name lang="it">Condensatore elettrolitico</name>
+ <name lang="en"> Polarized capacitor</name>
+ <name lang="cs">Elektrolytický kondenzátor</name>
+ <name lang="fr">Condensateur electrolytique</name>
+ <name lang="nl">Condensator electrolytisch</name>
+ </names>
+ <informations>EN 60617: 04-02-05</informations>
+ <description>
+ <input size="9" rotate="true" x="6" y="-10.45" text="_" tagg="label"/>
+ <line y2="-16" x1="-7" x2="-3" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="-16"/>
+ <line y2="-18" x1="-5" x2="-5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="-14"/>
+ <line y2="-20" x1="0" x2="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="-12"/>
+ <line y2="0" x1="0" x2="0" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="-8"/>
+ <line y2="-8" x1="-5" x2="5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="-8"/>
+ <line y2="-12" x1="-5" x2="5" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="-12"/>
+ <terminal x="0" y="-20" orientation="n"/>
+ <terminal x="0" y="0" orientation="s"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ </category>
+ </category>
+ </category>
+ </category>
+ <element name="attiny45.elmt">
+ <definition height="60" link_type="simple" hotspot_x="24" hotspot_y="39" width="50" version="0.5" type="element" orientation="dyyy">
+ <uuid uuid="{01c4c0d8-da85-4564-8126-058a363769c1}"/>
+ <names>
+ <name lang="ro">pic16f84</name>
+ </names>
+ <informations>Author: Angelescu Constantin
+titus0818@yahoo.com</informations>
+ <description>
+ <text size="4" x="2.77419" y="11.8666" text="Pin 0"/>
+ <text size="3" x="-12.7084" y="11.8666" text="GND"/>
+ <text size="5" x="16.6175" y="6.8666" text="5"/>
+ <text size="5" x="-20.2676" y="-21.9875" text="1"/>
+ <text size="5" x="-20.9051" y="8.71" text="4"/>
+ <text size="5" x="16.6175" y="-23.1334" text="8"/>
+ <text size="5" x="-20.2676" y="-1.4341" text="3"/>
+ <arc height="9.75" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" start="0" x="-3.18207" width="7.54095" y="-34.4384" angle="-180"/>
+ <text size="5" x="-20.2676" y="-12" text="2"/>
+ <input size="9" rotate="true" x="-14.5299" y="-43.1334" text="_" tagg="label"/>
+ <text size="5" x="15.8889" y="-3.1334" text="6"/>
+ <text size="5" x="16.6175" y="-13.1334" text="7"/>
+ <text size="4" x="-13.6192" y="1.8666" text="Pin 4"/>
+ <text size="4" x="-13.6192" y="-8.1334" text="Pin 3"/>
+ <text size="4" x="-13.6192" y="-18.1334" text="RESET"/>
+ <text size="4" x="3.68493" y="-18.1334" text="VCC"/>
+ <text size="4" x="2.77419" y="-8.1334" text="Pin 2"/>
+ <text size="4" x="2.77419" y="1.8666" text="Pin 1"/>
+ <rect height="45" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-15.4407" width="30.9653" y="-30.13"/>
+ <line y2="-20.1334" x1="-19.9944" x2="-15.4407" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="-20.1334"/>
+ <line y2="-10.1334" x1="-19.9944" x2="-15.4407" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="-10.1334"/>
+ <line y2="-0.1334" x1="-19.9944" x2="-15.4407" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="-0.1334"/>
+ <line y2="9.8666" x1="-19.9944" x2="-15.4407" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="9.8666"/>
+ <line y2="9.8666" x1="15.5246" x2="18.6211" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="9.8666"/>
+ <line y2="-0.1334" x1="15.5246" x2="18.6211" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="-0.1334"/>
+ <line y2="-10.1334" x1="15.5246" x2="18.6211" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="-10.1334"/>
+ <line y2="-20.1334" x1="15.5246" x2="18.6211" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" length1="1.5" length2="1.5" end1="none" end2="none" y1="-20.1334"/>
+ <terminal x="20.0783" y="-0.1334" orientation="e"/>
+ <terminal x="-19.9944" y="-20.1334" orientation="w"/>
+ <terminal x="20.0783" y="-20.1334" orientation="e"/>
+ <terminal x="-19.9944" y="-0.1334" orientation="w"/>
+ <terminal x="-19.9944" y="9.8666" orientation="w"/>
+ <terminal x="-19.9944" y="-10.1334" orientation="w"/>
+ <terminal x="20.0783" y="9.8666" orientation="e"/>
+ <terminal x="20.0783" y="-10.1334" orientation="e"/>
+ </description>
+ </definition>
+ </element>
+ </collection>
+</project>
diff --git a/content/attiny_programatter.svg b/content/attiny_programatter.svg
new file mode 100644
index 0000000..358f012
--- /dev/null
+++ b/content/attiny_programatter.svg
@@ -0,0 +1,5019 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ 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="370.417mm"
+ height="260.35mm"
+ version="1.2"
+ id="svg910"
+ sodipodi:docname="attiny_programatter.svg"
+ inkscape:version="0.92.1 r15371">
+ <metadata
+ id="metadata914">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1680"
+ inkscape:window-height="990"
+ id="namedview912"
+ showgrid="false"
+ showguides="false"
+ inkscape:zoom="0.95934957"
+ inkscape:cx="298.5682"
+ inkscape:cy="745.17336"
+ inkscape:window-x="0"
+ inkscape:window-y="30"
+ inkscape:window-maximized="0"
+ inkscape:current-layer="svg910" />
+ <title
+ id="title2">Qt SVG Document</title>
+ <desc
+ id="desc4">Generated with Qt</desc>
+ <defs
+ id="defs6">
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath6751">
+ <rect
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#070000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
+ id="rect6753"
+ width="837.02545"
+ height="403.39832"
+ x="-31.271187"
+ y="-51.076275" />
+ </clipPath>
+ </defs>
+ <g
+ id="g908"
+ clip-path="url(#clipPath6751)"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="black"
+ fill-rule="evenodd"
+ fill="none">
+ <g
+ transform="matrix(0.75,0,0,0.75,0,0)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g8"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(1.97121,0,0,1.97121,-224.718,-314.409)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g12"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#ffffff">
+ <path
+ d="M114,159.5 L513.5,159.5 L513.5,440 L114,440 L114,159.5"
+ id="path10"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,399.741,30.5538)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g14"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(1.97121,0,0,1.97121,399.741,30.5538)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g16"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(0.75,0,0,0.75,0,0)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g18"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,-224.718,-314.409)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g22"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#ff0000"
+ fill="none">
+ <path
+ d="M450.078,239.867 L466.578,239.867 L466.578,175 L175,175 L175,310 L193.5,310 L210,310"
+ id="path20"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,664.299,237.531)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g24"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(1.97121,0,0,1.97121,664.299,237.531)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g26"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(0.75,0,0,0.75,0,0)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g28"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,-224.718,-314.409)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g32"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#ffaa00"
+ fill="none">
+ <path
+ d="M450.078,249.867 L463.078,249.867 L498,249.867 L498,280 L412,280 L375,280 L370,280"
+ id="path30"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,644.587,257.243)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g34"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(1.97121,0,0,1.97121,644.587,257.243)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g36"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(0.75,0,0,0.75,0,0)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g38"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,-224.718,-314.409)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g42"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#0000ff"
+ fill="none">
+ <path
+ d="M450.078,259.867 L463.078,259.867 L488,259.867 L488,290 L402,290 L375,290 L370,290"
+ id="path40"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,609.182,276.956)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g44"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(1.97121,0,0,1.97121,609.182,276.956)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g46"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(0.75,0,0,0.75,0,0)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g48"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,-224.718,-314.409)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g52"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#00aa00"
+ fill="none">
+ <path
+ d="M450.078,269.867 L464.078,269.867 L464.078,300 L390,300 L374,300 L370,300"
+ id="path50"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,547.017,217.556)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g54"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(1.97121,0,0,1.97121,547.017,217.556)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g56"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(0.75,0,0,0.75,0,0)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g58"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,-224.718,-314.409)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g62"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M410.006,269.867 L401.006,269.867 L390,269.867 L390,270 L379,270 L370,270"
+ id="path60"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,104.474,316.38)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g64"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(1.97121,0,0,1.97121,104.474,316.38)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g66"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(0.75,0,0,0.75,0,0)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g68"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,-224.718,-314.409)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g72"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M150,290 L141,290 L141,320 L201,320 L210,320"
+ id="path70"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,141.927,257.243)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g74"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(1.97121,0,0,1.97121,141.927,257.243)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g76"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(0.75,0,0,0.75,0,0)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g78"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,-224.718,-314.409)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g82"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M210,290 L201,290 L190,290 L179,290 L170,290"
+ id="path80"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,628.372,211.643)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g86"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="5"
+ font-size="4"
+ font-weight="100"
+ font-style="normal"
+ id="text84"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">Pin 0</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,597.853,213.614)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g90"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="4"
+ font-size="3"
+ font-weight="100"
+ font-style="normal"
+ id="text88"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">GND</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,655.66,197.844)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g94"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="7"
+ font-size="5"
+ font-weight="400"
+ font-style="normal"
+ id="text92"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">5</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,582.952,140.966)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g98"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="7"
+ font-size="5"
+ font-weight="400"
+ font-style="normal"
+ id="text96"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">1</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,581.695,201.478)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g102"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="7"
+ font-size="5"
+ font-weight="400"
+ font-style="normal"
+ id="text100"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">4</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,655.66,138.708)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g106"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="7"
+ font-size="5"
+ font-weight="400"
+ font-style="normal"
+ id="text104"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">8</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,582.952,181.482)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g110"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="7"
+ font-size="5"
+ font-weight="400"
+ font-style="normal"
+ id="text108"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">3</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,622.904,198.107)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g114"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M4.35888,-29.5634 C4.35888,-26.871 2.67078,-24.6884 0.588405,-24.6884 C-1.49397,-24.6884 -3.18207,-26.871 -3.18207,-29.5634 "
+ id="path112"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,582.952,160.654)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g118"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="7"
+ font-size="5"
+ font-weight="400"
+ font-style="normal"
+ id="text116"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">2</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,654.224,178.132)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g122"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="7"
+ font-size="5"
+ font-weight="400"
+ font-style="normal"
+ id="text120"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">6</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,655.66,158.42)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g126"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="7"
+ font-size="5"
+ font-weight="400"
+ font-style="normal"
+ id="text124"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">7</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,596.057,191.93)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g130"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="5"
+ font-size="4"
+ font-weight="100"
+ font-style="normal"
+ id="text128"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">Pin 4</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,596.057,172.218)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g134"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="5"
+ font-size="4"
+ font-weight="100"
+ font-style="normal"
+ id="text132"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">Pin 3</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,596.057,152.506)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g138"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="5"
+ font-size="4"
+ font-weight="100"
+ font-style="normal"
+ id="text136"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">RESET</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,630.167,152.506)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g142"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="5"
+ font-size="4"
+ font-weight="100"
+ font-style="normal"
+ id="text140"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">VCC</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,628.372,172.218)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g146"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="5"
+ font-size="4"
+ font-weight="100"
+ font-style="normal"
+ id="text144"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">Pin 2</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,628.372,191.93)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g150"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="5"
+ font-size="4"
+ font-weight="100"
+ font-style="normal"
+ id="text148"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">Pin 1</text>
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,622.904,198.107)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g154"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M-15.4407,-30.13 L15.5246,-30.13 L15.5246,14.87 L-15.4407,14.87 L-15.4407,-30.13"
+ id="path152"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,622.904,198.107)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g158"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="-19.9944,-20.1334 -15.4407,-20.1334 "
+ id="polyline156"
+ fill="none"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,622.904,198.107)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g162"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="-19.9944,-10.1334 -15.4407,-10.1334 "
+ id="polyline160"
+ fill="none"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,622.904,198.107)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g166"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="-19.9944,-0.1334 -15.4407,-0.1334 "
+ id="polyline164"
+ fill="none"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,622.904,198.107)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g170"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="-19.9944,9.8666 -15.4407,9.8666 "
+ id="polyline168"
+ fill="none"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,622.904,198.107)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g174"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="15.5246,9.8666 18.6211,9.8666 "
+ id="polyline172"
+ fill="none"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,622.904,198.107)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g178"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="15.5246,-0.1334 18.6211,-0.1334 "
+ id="polyline176"
+ fill="none"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,622.904,198.107)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g182"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="15.5246,-10.1334 18.6211,-10.1334 "
+ id="polyline180"
+ fill="none"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,622.904,198.107)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g186"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="15.5246,-20.1334 18.6211,-20.1334 "
+ id="polyline184"
+ fill="none"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,594.262,91.3985)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g188"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(1.97121,0,0,1.97121,594.262,91.3985)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g190"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(0.75,0,0,0.75,0,0)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g192"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g196"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M95,-30 L130,-30 L130,15 L95,15 L95,-30"
+ id="path194"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g200"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <circle
+ cx="-11"
+ cy="25"
+ r="6"
+ id="circle198" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,203.035,269.071)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g204"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text202"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">3.3V</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,203.035,310.466)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g208"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="7"
+ font-size="6"
+ font-weight="400"
+ font-style="normal"
+ id="text206"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">GND</text>
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g212"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M69,94 L71,94 L71,99 L69,99 L69,94"
+ id="path210"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g216"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M35,136 L37,136 L37,141 L35,141 L35,136"
+ id="path214"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,203.035,328.207)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g220"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="7"
+ font-size="6"
+ font-weight="400"
+ font-style="normal"
+ id="text218"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">GND</text>
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g224"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M35,158 L37,158 L37,163 L35,163 L35,158"
+ id="path222"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,205.006,347.919)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g228"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text226"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">Vin</text>
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g232"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M35,186 L37,186 L37,191 L35,191 L35,186"
+ id="path230"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ transform="matrix(0,1.97121,-1.97121,0,256.258,412.969)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g236"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="7"
+ font-size="5"
+ font-weight="400"
+ font-style="normal"
+ id="text234"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">ANALOG IN</text>
+ </g>
+ <g
+ transform="matrix(0,1.97121,-1.97121,0,258.229,300.61)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g240"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="7"
+ font-size="5"
+ font-weight="400"
+ font-style="normal"
+ id="text238"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">POWER</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,203.035,249.359)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g244"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="7"
+ font-size="6"
+ font-weight="400"
+ font-style="normal"
+ id="text242"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">RESET</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,203.035,288.783)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g248"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text246"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">5V</text>
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g252"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M69,158 L71,158 L71,163 L69,163 L69,158"
+ id="path250"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,203.035,229.646)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g256"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text254"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">IO ref</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g260"
+ font-family="Sans Serif"
+ stroke-dashoffset="0"
+ stroke-dasharray="1,2"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <circle
+ cx="12"
+ cy="24.0001"
+ r="10.2957"
+ id="circle258"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g264"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="-20,-14 -20,221 -10,223 0,230 105,230 120,220 160,220 160,-14 160,-14 "
+ id="polyline262"
+ fill="none"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g268"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M35,179 L37,179 L37,184 L35,184 L35,179"
+ id="path266"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g272"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M35,165 L37,165 L37,170 L35,170 L35,165"
+ id="path270"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g276"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M35,73 L37,73 L37,78 L35,78 L35,73"
+ id="path274"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g280"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M69,179 L71,179 L71,184 L69,184 L69,179"
+ id="path278"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g284"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <circle
+ cx="99"
+ cy="78"
+ r="1.25"
+ id="circle282" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g288"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M69,136 L71,136 L71,141 L69,141 L69,136"
+ id="path286"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g292"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M69,73 L71,73 L71,78 L69,78 L69,73"
+ id="path290"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g296"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M69,186 L71,186 L71,191 L69,191 L69,186"
+ id="path294"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g300"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M35,101 L37,101 L37,106 L35,106 L35,101"
+ id="path298"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g304"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M35,151 L37,151 L37,156 L35,156 L35,151"
+ id="path302"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g308"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <circle
+ cx="110"
+ cy="78"
+ r="1.25"
+ id="circle306" />
+ </g>
+ <g
+ transform="matrix(0,1.97121,-1.97121,0,396.214,209.934)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g312"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="5"
+ font-size="4"
+ font-weight="100"
+ font-style="normal"
+ id="text310"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">RX</text>
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g316"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M35,94 L37,94 L37,99 L35,99 L35,94"
+ id="path314"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g320"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M69,101 L71,101 L71,106 L69,106 L69,101"
+ id="path318"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g324"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M69,165 L71,165 L71,170 L69,170 L69,165"
+ id="path322"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g328"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M69,115 L71,115 L71,120 L69,120 L69,115"
+ id="path326"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g332"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M35,115 L37,115 L37,120 L35,120 L35,115"
+ id="path330"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ transform="matrix(0,1.97121,-1.97121,0,431.696,215.848)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g336"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="5"
+ font-size="4"
+ font-weight="100"
+ font-style="normal"
+ id="text334"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">L</text>
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g340"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M35,193 L37,193 L37,198 L35,198 L35,193"
+ id="path338"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g344"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M35,80 L37,80 L37,85 L35,85 L35,80"
+ id="path342"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g348"
+ font-family="Sans Serif"
+ stroke-dashoffset="0"
+ stroke-dasharray="1,2"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M108,75 L112,75 L112,81 L108,81 L108,75"
+ id="path346"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g352"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M69,151 L71,151 L71,156 L69,156 L69,151"
+ id="path350"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g356"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M69,80 L71,80 L71,85 L69,85 L69,80"
+ id="path354"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g360"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M35,66 L37,66 L37,71 L35,71 L35,66"
+ id="path358"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g364"
+ font-family="Sans Serif"
+ stroke-dashoffset="0"
+ stroke-dasharray="1,2"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M97,75 L101,75 L101,81 L97,81 L97,75"
+ id="path362"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g368"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M69,66 L71,66 L71,71 L69,71 L69,66"
+ id="path366"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g372"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M69,193 L71,193 L71,198 L69,198 L69,193"
+ id="path370"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g376"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <circle
+ cx="97"
+ cy="222"
+ r="6"
+ id="circle374" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g380"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M35,143 L37,143 L37,148 L35,148 L35,143"
+ id="path378"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g384"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M69,143 L71,143 L71,148 L69,148 L69,143"
+ id="path382"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g388"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M35,122 L37,122 L37,127 L35,127 L35,122"
+ id="path386"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g392"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M69,122 L71,122 L71,127 L69,127 L69,122"
+ id="path390"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g396"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <circle
+ cx="151"
+ cy="25"
+ r="6"
+ id="circle394" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g400"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <circle
+ cx="17"
+ cy="222"
+ r="6"
+ id="circle398" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g404"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M35,108 L37,108 L37,113 L35,113 L35,108"
+ id="path402"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g408"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M69,108 L71,108 L71,113 L69,113 L69,108"
+ id="path406"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g412"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M69,172 L71,172 L71,177 L69,177 L69,172"
+ id="path410"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g416"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M76,206 L84,206 L84,224 L76,224 L76,206"
+ id="path414"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g420"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M69,129 L71,129 L71,134 L69,134 L69,129"
+ id="path418"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g424"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M35,129 L37,129 L37,134 L35,134 L35,129"
+ id="path422"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g428"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M69,87 L71,87 L71,92 L69,92 L69,87"
+ id="path426"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g432"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M35,87 L37,87 L37,92 L35,92 L35,87"
+ id="path430"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g436"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M66,206 L74,206 L74,224 L66,224 L66,206"
+ id="path434"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g440"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M68,218 L72,218 L72,222 L68,222 L68,218"
+ id="path438"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g444"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M128,28 L132,28 L132,32 L128,32 L128,28"
+ id="path442"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g448"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M78,208 L82,208 L82,212 L78,212 L78,208"
+ id="path446"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g452"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M58,218 L62,218 L62,222 L58,222 L58,218"
+ id="path450"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g456"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <ellipse
+ cx="104.5"
+ cy="115.5"
+ rx="5.5"
+ ry="7.5"
+ id="ellipse454" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g460"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M144,34 L156,34 L156,216 L144,216 L144,34"
+ id="path458"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g464"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M68,208 L72,208 L72,212 L68,212 L68,208"
+ id="path462"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g468"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M78,218 L82,218 L82,222 L78,222 L78,218"
+ id="path466"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g472"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M128,38 L132,38 L132,42 L128,42 L128,38"
+ id="path470"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g476"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M116,36 L134,36 L134,44 L116,44 L116,36"
+ id="path474"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g480"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M104,112 L105,112 L105,120 L104,120 L104,112"
+ id="path478"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g484"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M128,48 L132,48 L132,52 L128,52 L128,48"
+ id="path482"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,205.006,485.904)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g488"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text486"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">A5</text>
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g492"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M116,26 L134,26 L134,34 L116,34 L116,26"
+ id="path490"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,205.006,466.192)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g496"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text494"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">A4</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,205.006,446.48)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g500"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text498"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">A3</text>
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g504"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M118,38 L122,38 L122,42 L118,42 L118,38"
+ id="path502"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,205.006,387.344)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g508"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text506"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">A0</text>
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g512"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M118,48 L122,48 L122,52 L118,52 L118,48"
+ id="path510"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,205.006,426.768)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g516"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text514"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">A2</text>
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g520"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M118,28 L122,28 L122,32 L118,32 L118,28"
+ id="path518"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,205.006,407.056)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g524"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text522"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">A1</text>
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g528"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M116,46 L134,46 L134,54 L116,54 L116,46"
+ id="path526"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,461.264,306.524)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g532"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text530"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">~9</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,465.207,249.359)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g536"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text534"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">12</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,449.437,288.783)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g540"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text538"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">~10</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,433.667,466.192)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g544"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text542"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">TX-&gt;1</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,433.667,485.904)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g548"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text546"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">RX&lt;-0</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,451.408,269.071)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g552"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text550"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">~11</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,477.034,326.236)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g556"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text554"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">8</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,477.034,405.084)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g560"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text558"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">4</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,477.034,347.919)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g564"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text562"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">7</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,461.264,424.797)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g568"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text566"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">~3</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,477.034,444.509)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g572"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text570"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">2</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,465.207,227.675)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g576"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text574"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">13</text>
+ </g>
+ <g
+ transform="matrix(0,1.97121,-1.97121,0,453.379,338.063)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g580"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="7"
+ font-size="5"
+ font-weight="400"
+ font-style="normal"
+ id="text578"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">DIGITAL (PWM~)</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,461.264,385.372)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g584"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text582"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">~5</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,461.264,367.631)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g588"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text586"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">~6</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,441.552,188.251)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g592"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text590"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">AREF</text>
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g596"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M147,167 L153,167 L153,173 L147,173 L147,167"
+ id="path594"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g600"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M-16,64 L-4,64 L-4,146 L-16,146 L-16,64"
+ id="path598"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g604"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M147,177 L153,177 L153,183 L147,183 L147,177"
+ id="path602"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g608"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M147,47 L153,47 L153,53 L147,53 L147,47"
+ id="path606"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g612"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M147,157 L153,157 L153,163 L147,163 L147,157"
+ id="path610"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g616"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M147,57 L153,57 L153,63 L147,63 L147,57"
+ id="path614"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g620"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M147,37 L153,37 L153,43 L147,43 L147,37"
+ id="path618"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g624"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M-13,167 L-7,167 L-7,173 L-13,173 L-13,167"
+ id="path622"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g628"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M147,147 L153,147 L153,153 L147,153 L147,147"
+ id="path626"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g632"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M147,137 L153,137 L153,143 L147,143 L147,137"
+ id="path630"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g636"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M147,197 L153,197 L153,203 L147,203 L147,197"
+ id="path634"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g640"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M147,127 L153,127 L153,133 L147,133 L147,127"
+ id="path638"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g644"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M147,207 L153,207 L153,213 L147,213 L147,207"
+ id="path642"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g648"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M-13,97 L-7,97 L-7,103 L-13,103 L-13,97"
+ id="path646"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g652"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M147,107 L153,107 L153,113 L147,113 L147,107"
+ id="path650"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g656"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M147,187 L153,187 L153,193 L147,193 L147,187"
+ id="path654"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g660"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M-20,-14 C-20,-17.3137 -17.3137,-20 -14,-20 "
+ id="path658"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g664"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M154,-20 C157.314,-20 160,-17.3137 160,-14 "
+ id="path662"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g668"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M58,208 L62,208 L62,212 L58,212 L58,208"
+ id="path666"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g672"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M-13,187 L-7,187 L-7,193 L-13,193 L-13,187"
+ id="path670"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g676"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M-13,87 L-7,87 L-7,93 L-13,93 L-13,87"
+ id="path674"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g680"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M147,117 L153,117 L153,123 L147,123 L147,117"
+ id="path678"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g684"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M147,77 L153,77 L153,83 L147,83 L147,77"
+ id="path682"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g688"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M-13,197 L-7,197 L-7,203 L-13,203 L-13,197"
+ id="path686"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g692"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M147,97 L153,97 L153,103 L147,103 L147,97"
+ id="path690"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g696"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M-13,177 L-7,177 L-7,183 L-13,183 L-13,177"
+ id="path694"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g700"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M-13,107 L-7,107 L-7,113 L-13,113 L-13,107"
+ id="path698"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g704"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M147,87 L153,87 L153,93 L147,93 L147,87"
+ id="path702"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g708"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M147,67 L153,67 L153,73 L147,73 L147,67"
+ id="path706"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g712"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M-13,157 L-7,157 L-7,163 L-13,163 L-13,157"
+ id="path710"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g716"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M-13,77 L-7,77 L-7,83 L-13,83 L-13,77"
+ id="path714"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g720"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M-13,207 L-7,207 L-7,213 L-13,213 L-13,207"
+ id="path718"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g724"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M-13,67 L-7,67 L-7,73 L-13,73 L-13,67"
+ id="path722"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g728"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M-13,127 L-7,127 L-7,133 L-13,133 L-13,127"
+ id="path726"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g732"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M-13,137 L-7,137 L-7,143 L-13,143 L-13,137"
+ id="path730"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g736"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M-13,117 L-7,117 L-7,123 L-13,123 L-13,117"
+ id="path734"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g740"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M-16,154 L-4,154 L-4,216 L-16,216 L-16,154"
+ id="path738"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,447.466,207.963)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g744"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text742"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">GND</text>
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g748"
+ font-family="Sans Serif"
+ stroke-dashoffset="0"
+ stroke-dasharray="1,2"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="146,135 154,135 "
+ id="polyline746"
+ fill="none"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g752"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="113,213 113,79 "
+ id="polyline750"
+ fill="none"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ transform="matrix(0,1.97121,-1.97121,0,398.185,251.33)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g756"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="8"
+ font-size="7"
+ font-weight="400"
+ font-style="normal"
+ id="text754"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">ARDUINO</text>
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g760"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <ellipse
+ cx="104.5"
+ cy="100.5"
+ rx="5.5"
+ ry="7.5"
+ id="ellipse758" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g764"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M104,97 L105,97 L105,105 L104,105 L104,97"
+ id="path762"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g768"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M101,115 L108,115 L108,116 L101,116 L101,115"
+ id="path766"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g772"
+ font-family="Sans Serif"
+ stroke-dashoffset="0"
+ stroke-dasharray="4,2"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <ellipse
+ cx="99.5"
+ cy="159"
+ rx="10.5"
+ ry="16"
+ id="ellipse770"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ transform="matrix(0,1.97121,-1.97121,0,417.897,365.66)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g776"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="11"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="text774"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">UNO</text>
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g780"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M56,206 L64,206 L64,224 L56,224 L56,206"
+ id="path778"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g784"
+ font-family="Sans Serif"
+ stroke-dashoffset="0"
+ stroke-dasharray="1,2"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <circle
+ cx="150"
+ cy="-3"
+ r="5"
+ id="circle782"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g788"
+ font-family="Sans Serif"
+ stroke-dashoffset="0"
+ stroke-dasharray="4,2"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M141,-11 L158,-11 L158,5 L141,5 L141,-11"
+ id="path786"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g792"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M1,-29 L21,-29 L21,2 L1,2 L1,-29"
+ id="path790"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g796"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="1,-22 21,-22 "
+ id="polyline794"
+ fill="none"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g800"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M6,2 L16,2 L16,3 L6,3 L6,2"
+ id="path798"
+ fill-rule="evenodd"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g804"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="-13,-20 1,-20 "
+ id="polyline802"
+ fill="none"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g808"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <circle
+ cx="91"
+ cy="78"
+ r="1.25"
+ id="circle806" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g812"
+ font-family="Sans Serif"
+ stroke-dashoffset="0"
+ stroke-dasharray="1,2"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M89,75 L93,75 L93,81 L89,81 L89,75"
+ id="path810"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ transform="matrix(0,1.97121,-1.97121,0,411.984,209.934)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g816"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="5"
+ font-size="4"
+ font-weight="100"
+ font-style="normal"
+ id="text814"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">TX</text>
+ </g>
+ <g
+ transform="matrix(0,-1.97121,1.97121,0,295.682,345.948)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g820"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="7"
+ font-size="5"
+ font-weight="400"
+ font-style="normal"
+ id="text818"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">AIMEL</text>
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g824"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="45,131 45,117 "
+ id="polyline822"
+ fill="none"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g828"
+ font-family="Sans Serif"
+ stroke-dashoffset="0"
+ stroke-dasharray="1,2"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M37,65 L69,65 L69,202 L37,202 L37,65"
+ id="path826"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g832"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M35,172 L37,172 L37,177 L35,177 L35,172"
+ id="path830"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g836"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="26,97 26,145 "
+ id="polyline834"
+ fill="none"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g840"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="26,155 26,213 "
+ id="polyline838"
+ fill="none"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g844"
+ font-family="Sans Serif"
+ stroke-dashoffset="0"
+ stroke-dasharray="4,2"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <ellipse
+ cx="72.5"
+ cy="30"
+ rx="4.5"
+ ry="11"
+ id="ellipse842"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g848"
+ font-family="Sans Serif"
+ stroke-dashoffset="0"
+ stroke-dasharray="1,2"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <circle
+ cx="12"
+ cy="51.0001"
+ r="10.2957"
+ id="circle846"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g852"
+ font-family="Sans Serif"
+ stroke-dashoffset="0"
+ stroke-dasharray="4,2"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <path
+ d="M51,-12 L67,-12 L67,-4 L51,-4 L51,-12"
+ id="path850"
+ fill-rule="evenodd"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ transform="matrix(0,1.97121,-1.97121,0,368.617,412.969)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g856"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="0"
+ y="3"
+ font-size="2"
+ font-weight="100"
+ font-style="normal"
+ id="text854"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">MADE IN ITALY</text>
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g860"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="22,-20 94,-20 "
+ id="polyline858"
+ fill="none"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(1.97121,0,0,1.97121,208.949,79.8342)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g864"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="154,-20 131,-20 "
+ id="polyline862"
+ fill="none"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(1.97121,0,0,1.97121,130.1,77.863)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g866"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(1.97121,0,0,1.97121,130.1,77.863)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g868"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(0.75,0,0,0.75,0,0)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g870"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(0,1.97121,-1.97121,0,70.9637,257.243)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g874"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="-7,-16 -3,-16 "
+ id="polyline872"
+ fill="none"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(0,1.97121,-1.97121,0,70.9637,257.243)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g878"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="-5,-14 -5,-18 "
+ id="polyline876"
+ fill="none"
+ vector-effect="non-scaling-stroke" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(0,1.97121,-1.97121,0,70.9637,257.243)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g882"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="0,-12 0,-20 "
+ id="polyline880"
+ fill="none"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(0,1.97121,-1.97121,0,70.9637,257.243)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g886"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="0,-8 0,0 "
+ id="polyline884"
+ fill="none"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(0,1.97121,-1.97121,0,70.9637,257.243)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g890"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="-5,-8 5,-8 "
+ id="polyline888"
+ fill="none"
+ vector-effect="none" />
+ </g>
+ <g
+ stroke-miterlimit="2"
+ transform="matrix(0,1.97121,-1.97121,0,70.9637,257.243)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g894"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="miter"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <polyline
+ points="-5,-12 5,-12 "
+ id="polyline892"
+ fill="none"
+ vector-effect="none" />
+ </g>
+ <g
+ transform="matrix(0,-1.97121,1.97121,0,9.85607,316.38)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g896"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(0,-1.97121,1.97121,0,9.85607,316.38)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g900"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none">
+ <text
+ xml:space="preserve"
+ x="4"
+ y="15"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="text898"
+ font-family="Sans Serif"
+ stroke="none"
+ fill-opacity="1"
+ fill="#000000">10µf</text>
+ </g>
+ <g
+ transform="matrix(0,-1.97121,1.97121,0,9.85607,316.38)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g902"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(0.75,0,0,0.75,0,0)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g904"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ <g
+ transform="matrix(0.75,0,0,0.75,0,0)"
+ font-size="9"
+ font-weight="400"
+ font-style="normal"
+ id="g906"
+ font-family="Sans Serif"
+ stroke-opacity="1"
+ stroke-linejoin="bevel"
+ stroke-linecap="square"
+ stroke-width="1"
+ stroke="#000000"
+ fill="none" />
+ </g>
+</svg>
diff --git a/content/big_nokia_5110_montage.jpg b/content/big_nokia_5110_montage.jpg
new file mode 100644
index 0000000..e9fbd7c
--- /dev/null
+++ b/content/big_nokia_5110_montage.jpg
Binary files differ
diff --git a/content/capteur_infra.qet b/content/capteur_infra.qet
new file mode 100755
index 0000000..39c2d17
--- /dev/null
+++ b/content/capteur_infra.qet
@@ -0,0 +1,543 @@
+<project title="" version="0.5" folioSheetQuantity="0">
+ <properties/>
+ <newdiagrams>
+ <border colsize="60" displaycols="true" cols="17" displayrows="true" rows="8" rowsize="80"/>
+ <inset filename="" date="null" title="" displayAt="bottom" folio="%id/%total" author=""/>
+ <conductors type="multi" function="" vertirotatetext="270" numsize="7" tension-protocol="" displaytext="1" num="_" onetextperfolio="0" horizrotatetext="0"/>
+ <report label="%f-%l%c"/>
+ <xrefs>
+ <xref type="commutator" powerprefix="" displayhas="cross" showpowerctc="false" snapto="label" switchprefix="" delayprefix=""/>
+ <xref type="protection" powerprefix="" displayhas="cross" showpowerctc="false" snapto="label" switchprefix="" delayprefix=""/>
+ <xref type="coil" powerprefix="" displayhas="cross" showpowerctc="false" snapto="label" switchprefix="" delayprefix=""/>
+ </xrefs>
+ <conductors_autonums/>
+ </newdiagrams>
+ <diagram filename="" date="null" colsize="60" displaycols="true" title="" cols="17" displayrows="true" displayAt="bottom" rows="8" rowsize="80" version="0.5" order="1" folio="%id/%total" author="" height="660">
+ <defaultconductor type="multi" function="" vertirotatetext="270" numsize="7" tension-protocol="" displaytext="1" num="_" onetextperfolio="0" horizrotatetext="0"/>
+ <elements>
+ <element type="embed://import/10_electric/10_allpole/395_electronics&amp;semiconductors/02_capacitors/condensateur_electrolytique.elmt" orientation="0" uuid="{a424fc0e-fd1d-43d1-885d-ecad079afce3}" x="190" y="330">
+ <terminals>
+ <terminal orientation="0" nameHidden="0" name="_" id="0" x="0" y="-16" number="_"/>
+ <terminal orientation="2" nameHidden="0" name="_" id="1" x="0" y="-4" number="_"/>
+ </terminals>
+ <inputs>
+ <input userx="20" userrotation="270" usery="10" x="6" y="-10.45" text="10nF"/>
+ </inputs>
+ <elementInformations>
+ <elementInformation name="label" show="1">10nF</elementInformation>
+ </elementInformations>
+ </element>
+ <element type="embed://import/10_electric/20_manufacturers_articles/arduino/arduino_uno.elmt" orientation="0" uuid="{a9b7b9ed-fffa-46fa-a3b1-ceded0386282}" x="280" y="210">
+ <terminals>
+ <terminal orientation="1" nameHidden="0" name="_" id="2" x="146" y="210" number="_"/>
+ <terminal orientation="1" nameHidden="0" name="_" id="3" x="146" y="50" number="_"/>
+ <terminal orientation="1" nameHidden="0" name="_" id="4" x="146" y="60" number="_"/>
+ <terminal orientation="1" nameHidden="0" name="_" id="5" x="146" y="70" number="_"/>
+ <terminal orientation="1" nameHidden="0" name="_" id="6" x="146" y="40" number="_"/>
+ <terminal orientation="3" nameHidden="0" name="_" id="7" x="-6" y="80" number="_"/>
+ <terminal orientation="3" nameHidden="0" name="_" id="8" x="-6" y="90" number="_"/>
+ <terminal orientation="3" nameHidden="0" name="_" id="9" x="-6" y="100" number="_"/>
+ <terminal orientation="3" nameHidden="0" name="_" id="10" x="-6" y="110" number="_"/>
+ <terminal orientation="3" nameHidden="0" name="_" id="11" x="-6" y="120" number="_"/>
+ <terminal orientation="3" nameHidden="0" name="_" id="12" x="-6" y="170" number="_"/>
+ <terminal orientation="3" nameHidden="0" name="_" id="13" x="-6" y="180" number="_"/>
+ <terminal orientation="3" nameHidden="0" name="_" id="14" x="-6" y="190" number="_"/>
+ <terminal orientation="3" nameHidden="0" name="_" id="15" x="-6" y="200" number="_"/>
+ <terminal orientation="3" nameHidden="0" name="_" id="16" x="-6" y="210" number="_"/>
+ <terminal orientation="1" nameHidden="0" name="_" id="17" x="146" y="200" number="_"/>
+ <terminal orientation="1" nameHidden="0" name="_" id="18" x="146" y="190" number="_"/>
+ <terminal orientation="1" nameHidden="0" name="_" id="19" x="146" y="180" number="_"/>
+ <terminal orientation="3" nameHidden="0" name="_" id="20" x="-6" y="70" number="_"/>
+ <terminal orientation="3" nameHidden="0" name="_" id="21" x="-6" y="160" number="_"/>
+ <terminal orientation="1" nameHidden="0" name="_" id="22" x="146" y="130" number="_"/>
+ <terminal orientation="1" nameHidden="0" name="_" id="23" x="146" y="140" number="_"/>
+ <terminal orientation="1" nameHidden="0" name="_" id="24" x="146" y="150" number="_"/>
+ <terminal orientation="1" nameHidden="0" name="_" id="25" x="146" y="160" number="_"/>
+ <terminal orientation="1" nameHidden="0" name="_" id="26" x="146" y="170" number="_"/>
+ <terminal orientation="1" nameHidden="0" name="_" id="27" x="146" y="80" number="_"/>
+ <terminal orientation="1" nameHidden="0" name="_" id="28" x="146" y="90" number="_"/>
+ <terminal orientation="1" nameHidden="0" name="_" id="29" x="146" y="120" number="_"/>
+ <terminal orientation="1" nameHidden="0" name="_" id="30" x="146" y="110" number="_"/>
+ <terminal orientation="1" nameHidden="0" name="_" id="31" x="146" y="100" number="_"/>
+ <terminal orientation="3" nameHidden="0" name="_" id="32" x="-6" y="130" number="_"/>
+ <terminal orientation="3" nameHidden="0" name="_" id="33" x="-6" y="140" number="_"/>
+ <terminal orientation="0" nameHidden="0" name="_" id="34" x="10" y="-16" number="_"/>
+ <terminal orientation="0" nameHidden="0" name="_" id="35" x="110" y="-16" number="_"/>
+ </terminals>
+ <inputs>
+ <input x="-3" y="104" text="3.3V"/>
+ <input x="-3" y="104" text="3.3V"/>
+ <input x="-3" y="124" text="GND"/>
+ <input x="-3" y="124" text="GND"/>
+ <input x="-3" y="133" text="GND"/>
+ <input x="-3" y="133" text="GND"/>
+ <input x="-2" y="144" text="Vin"/>
+ <input x="-2" y="144" text="Vin"/>
+ <input x="17" y="169" text="ANALOG IN"/>
+ <input x="17" y="169" text="ANALOG IN"/>
+ <input x="18" y="112" text="POWER"/>
+ <input x="18" y="112" text="POWER"/>
+ <input x="-3" y="93" text="RESET"/>
+ <input x="-3" y="93" text="RESET"/>
+ <input x="-3" y="114" text="5V"/>
+ <input x="-3" y="114" text="5V"/>
+ <input x="-3" y="84" text="IO ref"/>
+ <input x="-3" y="84" text="IO ref"/>
+ <input x="90" y="66" text="RX"/>
+ <input x="90" y="66" text="RX"/>
+ <input x="108" y="69" text="L"/>
+ <input x="108" y="69" text="L"/>
+ <input x="-2" y="214" text="A5"/>
+ <input x="-2" y="214" text="A5"/>
+ <input x="-2" y="204" text="A4"/>
+ <input x="-2" y="204" text="A4"/>
+ <input x="-2" y="194" text="A3"/>
+ <input x="-2" y="194" text="A3"/>
+ <input x="-2" y="164" text="A0"/>
+ <input x="-2" y="164" text="A0"/>
+ <input x="-2" y="184" text="A2"/>
+ <input x="-2" y="184" text="A2"/>
+ <input x="-2" y="174" text="A1"/>
+ <input x="-2" y="174" text="A1"/>
+ <input x="128" y="123" text="~9"/>
+ <input x="128" y="123" text="~9"/>
+ <input x="130" y="94" text="12"/>
+ <input x="130" y="94" text="12"/>
+ <input x="122" y="114" text="~10"/>
+ <input x="122" y="114" text="~10"/>
+ <input x="114" y="204" text="TX->1"/>
+ <input x="114" y="204" text="TX->1"/>
+ <input x="114" y="214" text="RX&lt;-0"/>
+ <input x="114" y="214" text="RX&lt;-0"/>
+ <input x="123" y="104" text="~11"/>
+ <input x="123" y="104" text="~11"/>
+ <input x="136" y="133" text="8"/>
+ <input x="136" y="133" text="8"/>
+ <input x="136" y="173" text="4"/>
+ <input x="136" y="173" text="4"/>
+ <input x="136" y="144" text="7"/>
+ <input x="136" y="144" text="7"/>
+ <input x="128" y="183" text="~3"/>
+ <input x="128" y="183" text="~3"/>
+ <input x="136" y="193" text="2"/>
+ <input x="136" y="193" text="2"/>
+ <input x="130" y="83" text="13"/>
+ <input x="130" y="83" text="13"/>
+ <input x="117" y="131" text="DIGITAL (PWM~)"/>
+ <input x="117" y="131" text="DIGITAL (PWM~)"/>
+ <input x="128" y="163" text="~5"/>
+ <input x="128" y="163" text="~5"/>
+ <input x="128" y="154" text="~6"/>
+ <input x="128" y="154" text="~6"/>
+ <input x="118" y="63" text="AREF"/>
+ <input x="118" y="63" text="AREF"/>
+ <input x="121" y="73" text="GND"/>
+ <input x="121" y="73" text="GND"/>
+ <input x="88" y="87" text="ARDUINO"/>
+ <input x="88" y="87" text="ARDUINO"/>
+ <input x="95" y="145" text="UNO"/>
+ <input x="95" y="145" text="UNO"/>
+ <input x="98" y="66" text="TX"/>
+ <input x="98" y="66" text="TX"/>
+ <input x="51" y="135" text="AIMEL"/>
+ <input x="51" y="135" text="AIMEL"/>
+ <input x="78" y="169" text="MADE IN ITALY"/>
+ <input x="78" y="169" text="MADE IN ITALY"/>
+ <input userx="0" usery="-50" x="-40" y="10" text="Carte Arduino"/>
+ </inputs>
+ </element>
+ <element type="embed://import/gp2y0a.elmt" orientation="0" uuid="{ae9183b9-be13-46a8-9d64-4a4e582aab80}" x="110" y="280">
+ <terminals>
+ <terminal orientation="2" nameHidden="0" name="_" id="36" x="0" y="8" number="_"/>
+ <terminal orientation="2" nameHidden="0" name="_" id="37" x="5" y="8" number="_"/>
+ <terminal orientation="2" nameHidden="0" name="_" id="38" x="-5" y="8" number="_"/>
+ </terminals>
+ <inputs>
+ <input x="-17" y="-17" text="Capteur infrarouge"/>
+ </inputs>
+ </element>
+ </elements>
+ <conductors>
+ <conductor type="multi" function="" terminal1="32" vertirotatetext="270" terminal2="1" numsize="7" x="0" tension-protocol="" y="0" displaytext="1" num="" onetextperfolio="0" horizrotatetext="0"/>
+ <conductor type="multi" function="" terminal1="0" vertirotatetext="270" terminal2="10" color="#ff0000" numsize="7" x="0" tension-protocol="" y="0" displaytext="1" num="" onetextperfolio="0" horizrotatetext="0">
+ <segment orientation="vertical" length="-9"/>
+ <segment orientation="vertical" length="-1"/>
+ <segment orientation="horizontal" length="33.3333"/>
+ <segment orientation="horizontal" length="0"/>
+ <segment orientation="horizontal" length="24.3333"/>
+ <segment orientation="vertical" length="20"/>
+ <segment orientation="horizontal" length="22.3333"/>
+ </conductor>
+ <conductor type="multi" function="" terminal1="0" vertirotatetext="270" terminal2="37" color="#ff0000" numsize="7" x="0" tension-protocol="" y="0" displaytext="1" num="" onetextperfolio="0" horizrotatetext="0"/>
+ <conductor type="multi" function="" terminal1="1" vertirotatetext="270" terminal2="36" numsize="7" x="0" tension-protocol="" y="0" displaytext="1" num="" onetextperfolio="0" horizrotatetext="0"/>
+ <conductor type="multi" function="" terminal1="21" vertirotatetext="270" terminal2="38" color="#ffaa00" numsize="7" x="0" tension-protocol="" y="0" displaytext="1" num="Sortie du capteur" onetextperfolio="0" horizrotatetext="0"/>
+ </conductors>
+ </diagram>
+ <collection>
+ <category name="import">
+ <names>
+ <name lang="es">Elementos importados</name>
+ <name lang="nl">Elementen geïmporteerd</name>
+ <name lang="pt">elementos importados</name>
+ <name lang="ca">Elements importats</name>
+ <name lang="de">Importierte elemente</name>
+ <name lang="cs">Zavedené prvky</name>
+ <name lang="it">Elementi importati</name>
+ <name lang="hr">Uvezeni elementi</name>
+ <name lang="ro">Elemente importate</name>
+ <name lang="el">Εισηγμένα στοιχεία</name>
+ <name lang="pl">Elementy importowane</name>
+ <name lang="en">Imported elements</name>
+ <name lang="fr">Éléments importés</name>
+ <name lang="ru">Импортированные элементы</name>
+ </names>
+ <category name="10_electric">
+ <names>
+ <name lang="nl">Elektrotechniek</name>
+ <name lang="de">Elektrik</name>
+ <name lang="it">Elettrica</name>
+ <name lang="cs">Elektrotechnika</name>
+ <name lang="el">Ηλεκτρικά</name>
+ <name lang="pl">Elektrotechnika</name>
+ <name lang="en">Electric</name>
+ <name lang="fr">Electrique</name>
+ <name lang="ru">Электротехника</name>
+ </names>
+ <category name="10_allpole">
+ <names>
+ <name lang="nl">Veel polig</name>
+ <name lang="cs">Vícežilový</name>
+ <name lang="it">Multifilare</name>
+ <name lang="de">Allpolig</name>
+ <name lang="el">Πολυγραμμικό</name>
+ <name lang="pl">Schematy wieloliniowe</name>
+ <name lang="en">All-pole</name>
+ <name lang="fr">Multifilaire</name>
+ <name lang="ru">Многополюсные</name>
+ </names>
+ <category name="395_electronics&amp;semiconductors">
+ <names>
+ <name lang="nl">Electronica en halfgeleiders</name>
+ <name lang="it">Elettronica e semiconduttori</name>
+ <name lang="de">Elektronik und Halbleiter</name>
+ <name lang="el">Ηλεκτρονικά και ημιαγωγοί</name>
+ <name lang="pl">Elektronika i półprzewodniki</name>
+ <name lang="en">Electronics and semiconductors</name>
+ <name lang="fr">Electronique et semi-conducteurs</name>
+ <name lang="ru">Электроника и полупроводники</name>
+ </names>
+ <category name="02_capacitors">
+ <names>
+ <name lang="es">Condensador</name>
+ <name lang="nl">Condensatoren</name>
+ <name lang="pt">Condensador</name>
+ <name lang="de">Kapazitäten</name>
+ <name lang="it">Condensatori</name>
+ <name lang="cs">Kondenzátor</name>
+ <name lang="el">Πυκνωτές</name>
+ <name lang="ar">مُكثّف</name>
+ <name lang="pl">Kondensatory</name>
+ <name lang="en">Capacitors</name>
+ <name lang="fr">Capacités</name>
+ <name lang="ru">Конденсаторы</name>
+ </names>
+ <element name="condensateur_electrolytique.elmt">
+ <definition type="element" orientation="dyyy" link_type="simple" hotspot_x="11" hotspot_y="24" version="0.5" width="20" height="30">
+ <uuid uuid="{e83a86e9-79b6-4d8e-aa83-82514e90469b}"/>
+ <names>
+ <name lang="de">Elektrolytkondensator</name>
+ <name lang="el">Πυκνωτής με πολικότητα</name>
+ <name lang="pl">Kondensator elektrolityczny</name>
+ <name lang="ar">مُكثّف كيميائي</name>
+ <name lang="it">Condensatore elettrolitico</name>
+ <name lang="en"> Polarized capacitor</name>
+ <name lang="cs">Elektrolytický kondenzátor</name>
+ <name lang="fr">Condensateur electrolytique</name>
+ <name lang="nl">Condensator electrolytisch</name>
+ </names>
+ <informations>EN 60617: 04-02-05</informations>
+ <description>
+ <input tagg="label" size="9" x="6" y="-10.45" text="_" rotate="true"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-16" y2="-16" x1="-7" x2="-3"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-14" y2="-18" x1="-5" x2="-5"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-12" y2="-20" x1="0" x2="0"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-8" y2="0" x1="0" x2="0"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-8" y2="-8" x1="-5" x2="5"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-12" y2="-12" x1="-5" x2="5"/>
+ <terminal orientation="n" x="0" y="-20"/>
+ <terminal orientation="s" x="0" y="0"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ </category>
+ </category>
+ <category name="20_manufacturers_articles">
+ <names>
+ <name lang="de">Herstellerartikel</name>
+ <name lang="it">Marchi produttori</name>
+ <name lang="el">Κατασκευαστές υλικού</name>
+ <name lang="pl">Urządzenia producentów</name>
+ <name lang="en">Manufacturers articles</name>
+ <name lang="fr">Articles constructeurs</name>
+ <name lang="ru">База изделий производителей</name>
+ </names>
+ <category name="arduino">
+ <names>
+ <name lang="cs">Arduino</name>
+ <name lang="en">Arduino</name>
+ </names>
+ <element name="arduino_uno.elmt">
+ <definition type="element" orientation="dyyy" link_type="simple" hotspot_x="25" hotspot_y="35" version="0.5" width="190" height="270">
+ <uuid uuid="{adc899b2-6c00-4fcf-a605-6427cc667d01}"/>
+ <names>
+ <name lang="pl">Arduino Uno</name>
+ <name lang="nl">Arduino Uno</name>
+ <name lang="fr">Arduino Uno</name>
+ <name lang="en">Arduino Uno</name>
+ <name lang="cs">Arduino Uno</name>
+ <name lang="it">Arduino Uno</name>
+ </names>
+ <informations>ezza</informations>
+ <description>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="95" width="35" y="-30" height="45"/>
+ <circle antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-17" y="19" diameter="12"/>
+ <text size="7" x="-3" y="104" text="3.3V"/>
+ <text size="6" x="-3" y="124" text="GND"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" width="2" y="94" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" width="2" y="136" height="5"/>
+ <text size="6" x="-3" y="133" text="GND"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" width="2" y="158" height="5"/>
+ <text size="7" x="-2" y="144" text="Vin"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" width="2" y="186" height="5"/>
+ <text size="5" rotation="90" x="17" y="169" text="ANALOG IN"/>
+ <text size="5" rotation="90" x="18" y="112" text="POWER"/>
+ <text size="6" x="-3" y="93" text="RESET"/>
+ <text size="7" x="-3" y="114" text="5V"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" width="2" y="158" height="5"/>
+ <text size="7" x="-3" y="84" text="IO ref"/>
+ <circle antialias="true" style="line-style:dotted;line-weight:thin;filling:none;color:black" x="1.7044" y="13.7044" diameter="20.5913"/>
+ <polygon closed="false" antialias="false" y1="-14" y2="221" style="line-style:normal;line-weight:normal;filling:none;color:black" y3="223" y4="230" y5="230" y6="220" x1="-20" y7="220" y8="-14" x2="-20" y9="-14" x3="-10" x4="0" x5="105" x6="120" x7="160" x8="160" x9="160"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" width="2" y="179" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" width="2" y="165" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" width="2" y="73" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" width="2" y="179" height="5"/>
+ <circle antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="97.75" y="76.75" diameter="2.5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" width="2" y="136" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" width="2" y="73" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" width="2" y="186" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" width="2" y="101" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" width="2" y="151" height="5"/>
+ <circle antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="108.75" y="76.75" diameter="2.5"/>
+ <text size="4" rotation="90" x="90" y="66" text="RX"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" width="2" y="94" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" width="2" y="101" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" width="2" y="165" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" width="2" y="115" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" width="2" y="115" height="5"/>
+ <text size="4" rotation="90" x="108" y="69" text="L"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" width="2" y="193" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" width="2" y="80" height="5"/>
+ <rect antialias="false" style="line-style:dotted;line-weight:thin;filling:none;color:black" x="108" width="4" y="75" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" width="2" y="151" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" width="2" y="80" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" width="2" y="66" height="5"/>
+ <rect antialias="false" style="line-style:dotted;line-weight:thin;filling:none;color:black" x="97" width="4" y="75" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" width="2" y="66" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" width="2" y="193" height="5"/>
+ <circle antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="91" y="216" diameter="12"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" width="2" y="143" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" width="2" y="143" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" width="2" y="122" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" width="2" y="122" height="5"/>
+ <circle antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="145" y="19" diameter="12"/>
+ <circle antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="11" y="216" diameter="12"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" width="2" y="108" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" width="2" y="108" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" width="2" y="172" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="76" width="8" y="206" height="18"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" width="2" y="129" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" width="2" y="129" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="69" width="2" y="87" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" width="2" y="87" height="5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="66" width="8" y="206" height="18"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="68" width="4" y="218" height="4"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="128" width="4" y="28" height="4"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="78" width="4" y="208" height="4"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="58" width="4" y="218" height="4"/>
+ <ellipse antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="99" width="11" y="108" height="15"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="144" width="12" y="34" height="182"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="68" width="4" y="208" height="4"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="78" width="4" y="218" height="4"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="128" width="4" y="38" height="4"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="116" width="18" y="36" height="8"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="104" width="1" y="112" height="8"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="128" width="4" y="48" height="4"/>
+ <text size="7" x="-2" y="214" text="A5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="116" width="18" y="26" height="8"/>
+ <text size="7" x="-2" y="204" text="A4"/>
+ <text size="7" x="-2" y="194" text="A3"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="118" width="4" y="38" height="4"/>
+ <text size="7" x="-2" y="164" text="A0"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="118" width="4" y="48" height="4"/>
+ <text size="7" x="-2" y="184" text="A2"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="118" width="4" y="28" height="4"/>
+ <text size="7" x="-2" y="174" text="A1"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="116" width="18" y="46" height="8"/>
+ <text size="7" x="128" y="123" text="~9"/>
+ <text size="7" x="130" y="94" text="12"/>
+ <text size="7" x="122" y="114" text="~10"/>
+ <text size="7" x="114" y="204" text="TX->1"/>
+ <text size="7" x="114" y="214" text="RX&lt;-0"/>
+ <text size="7" x="123" y="104" text="~11"/>
+ <text size="7" x="136" y="133" text="8"/>
+ <text size="7" x="136" y="173" text="4"/>
+ <text size="7" x="136" y="144" text="7"/>
+ <text size="7" x="128" y="183" text="~3"/>
+ <text size="7" x="136" y="193" text="2"/>
+ <text size="7" x="130" y="83" text="13"/>
+ <text size="5" rotation="90" x="117" y="131" text="DIGITAL (PWM~)"/>
+ <text size="7" x="128" y="163" text="~5"/>
+ <text size="7" x="128" y="154" text="~6"/>
+ <text size="7" x="118" y="63" text="AREF"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" width="6" y="167" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-16" width="12" y="64" height="82"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" width="6" y="177" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" width="6" y="47" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" width="6" y="157" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" width="6" y="57" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" width="6" y="37" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" width="6" y="167" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" width="6" y="147" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" width="6" y="137" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" width="6" y="197" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" width="6" y="127" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" width="6" y="207" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" width="6" y="97" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" width="6" y="107" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" width="6" y="187" height="6"/>
+ <arc antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-180" x="-20" width="12" y="-20" angle="-90" height="12"/>
+ <arc antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90" x="148" width="12" y="-20" angle="-90" height="12"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="58" width="4" y="208" height="4"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" width="6" y="187" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" width="6" y="87" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" width="6" y="117" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" width="6" y="77" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" width="6" y="197" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" width="6" y="97" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" width="6" y="177" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" width="6" y="107" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" width="6" y="87" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="147" width="6" y="67" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" width="6" y="157" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" width="6" y="77" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" width="6" y="207" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" width="6" y="67" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" width="6" y="127" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" width="6" y="137" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-13" width="6" y="117" height="6"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-16" width="12" y="154" height="62"/>
+ <text size="7" x="121" y="73" text="GND"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:dotted;line-weight:normal;filling:none;color:black" y1="135" y2="135" x1="146" x2="154"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="213" y2="79" x1="113" x2="113"/>
+ <text size="7" rotation="90" x="88" y="87" text="ARDUINO"/>
+ <ellipse antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="99" width="11" y="93" height="15"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="104" width="1" y="97" height="8"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="101" width="7" y="115" height="1"/>
+ <ellipse antialias="true" style="line-style:dashed;line-weight:thin;filling:none;color:black" x="89" width="21" y="143" height="32"/>
+ <text size="9" rotation="90" x="95" y="145" text="UNO"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="56" width="8" y="206" height="18"/>
+ <circle antialias="true" style="line-style:dotted;line-weight:thin;filling:none;color:black" x="145" y="-8" diameter="10"/>
+ <rect antialias="false" style="line-style:dashed;line-weight:thin;filling:none;color:black" x="141" width="17" y="-11" height="16"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="1" width="20" y="-29" height="31"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-22" y2="-22" x1="1" x2="21"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="6" width="10" y="2" height="1"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" y2="-20" x1="-13" x2="1"/>
+ <circle antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="89.75" y="76.75" diameter="2.5"/>
+ <rect antialias="false" style="line-style:dotted;line-weight:thin;filling:none;color:black" x="89" width="4" y="75" height="6"/>
+ <text size="4" rotation="90" x="98" y="66" text="TX"/>
+ <text size="5" rotation="270" x="51" y="135" text="AIMEL"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="131" y2="117" x1="45" x2="45"/>
+ <rect antialias="false" style="line-style:dotted;line-weight:thin;filling:none;color:black" x="37" width="32" y="65" height="137"/>
+ <rect antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x="35" width="2" y="172" height="5"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="97" y2="145" x1="26" x2="26"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="155" y2="213" x1="26" x2="26"/>
+ <ellipse antialias="true" style="line-style:dashed;line-weight:thin;filling:none;color:black" x="68" width="9" y="19" height="22"/>
+ <circle antialias="true" style="line-style:dotted;line-weight:thin;filling:none;color:black" x="1.70437" y="40.7044" diameter="20.5913"/>
+ <rect antialias="false" style="line-style:dashed;line-weight:thin;filling:none;color:black" x="51" width="16" y="-12" height="8"/>
+ <text size="2" rotation="90" x="78" y="169" text="MADE IN ITALY"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" y2="-20" x1="22" x2="94"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-20" y2="-20" x1="154" x2="131"/>
+ <input tagg="label" size="9" x="-40" y="10" text="_" rotate="true"/>
+ <terminal orientation="e" x="150" y="210"/>
+ <terminal orientation="e" x="150" y="50"/>
+ <terminal orientation="e" x="150" y="60"/>
+ <terminal orientation="e" x="150" y="70"/>
+ <terminal orientation="e" x="150" y="40"/>
+ <terminal orientation="w" x="-10" y="80"/>
+ <terminal orientation="w" x="-10" y="90"/>
+ <terminal orientation="w" x="-10" y="100"/>
+ <terminal orientation="w" x="-10" y="110"/>
+ <terminal orientation="w" x="-10" y="120"/>
+ <terminal orientation="w" x="-10" y="170"/>
+ <terminal orientation="w" x="-10" y="180"/>
+ <terminal orientation="w" x="-10" y="190"/>
+ <terminal orientation="w" x="-10" y="200"/>
+ <terminal orientation="w" x="-10" y="210"/>
+ <terminal orientation="e" x="150" y="200"/>
+ <terminal orientation="e" x="150" y="190"/>
+ <terminal orientation="e" x="150" y="180"/>
+ <terminal orientation="w" x="-10" y="70"/>
+ <terminal orientation="w" x="-10" y="160"/>
+ <terminal orientation="e" x="150" y="130"/>
+ <terminal orientation="e" x="150" y="140"/>
+ <terminal orientation="e" x="150" y="150"/>
+ <terminal orientation="e" x="150" y="160"/>
+ <terminal orientation="e" x="150" y="170"/>
+ <terminal orientation="e" x="150" y="80"/>
+ <terminal orientation="e" x="150" y="90"/>
+ <terminal orientation="e" x="150" y="120"/>
+ <terminal orientation="e" x="150" y="110"/>
+ <terminal orientation="e" x="150" y="100"/>
+ <terminal orientation="w" x="-10" y="130"/>
+ <terminal orientation="w" x="-10" y="140"/>
+ <terminal orientation="n" x="10" y="-20"/>
+ <terminal orientation="n" x="110" y="-20"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ </category>
+ </category>
+ <element name="gp2y0a.elmt">
+ <definition type="element" orientation="dyyy" link_type="simple" hotspot_x="31" hotspot_y="10" version="0.5" width="60" height="30">
+ <uuid uuid="{d9ea5ef8-09c9-4268-b07f-5bfaa3e026ae}"/>
+ <names>
+ <name lang="fr">Capteur infrarouge gp2y0a</name>
+ </names>
+ <informations/>
+ <description>
+ <circle antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="15.25" y="-3.75" diameter="7.5"/>
+ <circle antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-14.25" y="-3.75" diameter="7.5"/>
+ <circle antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-23.75" y="-3.75" diameter="7.5"/>
+ <circle antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="6.25" y="-3.75" diameter="7.5"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-15" width="30" y="-6.5" height="13"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-4" y2="-4" x1="-20" x2="-15"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" y2="4" x1="-19" x2="-16"/>
+ <input tagg="label" size="9" x="-17" y="-17" text="_" rotate="true"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-15" width="9" y="-4" height="8"/>
+ <rect antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-3" width="18" y="-4" height="8"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-4" y2="-4" x1="15" x2="19"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="4" y2="4" x1="15" x2="19"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="12" y2="7" x1="-5" x2="-5"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="7" y2="12" x1="0" x2="0"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="7" y2="12" x1="5" x2="5"/>
+ <terminal orientation="s" x="0" y="12"/>
+ <terminal orientation="s" x="5" y="12"/>
+ <terminal orientation="s" x="-5" y="12"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ </collection>
+</project>
diff --git a/content/capteur_infra.svg b/content/capteur_infra.svg
new file mode 100755
index 0000000..3e65f2d
--- /dev/null
+++ b/content/capteur_infra.svg
@@ -0,0 +1,1390 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg width="370.417mm" height="301.625mm"
+ xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
+<title>Qt SVG Document</title>
+<desc>Generated with Qt</desc>
+<defs>
+</defs>
+<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(2.09441,0,0,2.09441,-154.987,-301.596)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M74,144 L450,144 L450,450 L74,450 L74,144"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,138.084,473.338)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,138.084,473.338)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="4" y="12" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >Sortie du capteur</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,138.084,473.338)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#ffaa00" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,-154.987,-301.596)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M270,370 L261,370 L105,370 L105,301 L105,292"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,150.798,408.411)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,150.798,408.411)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,-154.987,-301.596)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M190,330 L190,339 L110,339 L110,301 L110,292"/>
+</g>
+
+<g fill="#000000" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,-154.987,-301.596)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="190" cy="339" r="1"/>
+<circle cx="190" cy="339" r="1"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,192.686,328.823)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,192.686,328.823)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#ff0000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,-154.987,-301.596)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M190,310 L190,301 L150,301 L115,301 L115,292"/>
+</g>
+
+<g fill="#ff0000" fill-opacity="1" stroke="#ff0000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,-154.987,-301.596)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="190" cy="301" r="1"/>
+<circle cx="190" cy="301" r="1"/>
+<circle cx="190" cy="301" r="1"/>
+<circle cx="190" cy="301" r="1"/>
+<circle cx="190" cy="301" r="1"/>
+<circle cx="190" cy="301" r="1"/>
+<circle cx="190" cy="301" r="1"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,269.481,326.729)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,269.481,326.729)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#ff0000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,-154.987,-301.596)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M190,310 L190,301 L190,300 L223.333,300 L247.667,300 L247.667,320 L270,320"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,308.926,410.505)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,308.926,410.505)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,-154.987,-301.596)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M270,340 L261,340 L190,340 L190,339 L190,330"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,75.3989,284.84)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="19" cy="0" r="3.75"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,75.3989,284.84)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="-10.5" cy="0" r="3.75"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,75.3989,284.84)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="-20" cy="0" r="3.75"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,75.3989,284.84)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="10" cy="0" r="3.75"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,75.3989,284.84)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-15,-6.5 L15,-6.5 L15,6.5 L-15,6.5 L-15,-6.5"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,75.3989,284.84)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-20,-4 -15,-4 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,75.3989,284.84)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-19,4 -16,4 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,75.3989,284.84)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-15,-4 L-6,-4 L-6,4 L-15,4 L-15,-4"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,75.3989,284.84)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-3,-4 L15,-4 L15,4 L-3,4 L-3,-4"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,75.3989,284.84)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="15,-4 19,-4 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,75.3989,284.84)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="15,4 19,4 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,75.3989,284.84)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-5,12 -5,7 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,75.3989,284.84)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="0,7 0,12 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,75.3989,284.84)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="5,7 5,12 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,39.7939,226.197)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,39.7939,226.197)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="4" y="15" font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+ >Capteur infrarouge</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,39.7939,226.197)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M95,-30 L130,-30 L130,15 L95,15 L95,-30"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="-11" cy="25" r="6"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,425.166,339.295)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >3.3V</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,425.166,383.278)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="7" font-family="Sans Serif" font-size="6" font-weight="400" font-style="normal"
+ >GND</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,94 L71,94 L71,99 L69,99 L69,94"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,136 L37,136 L37,141 L35,141 L35,136"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,425.166,402.128)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="7" font-family="Sans Serif" font-size="6" font-weight="400" font-style="normal"
+ >GND</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,158 L37,158 L37,163 L35,163 L35,158"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,427.261,423.072)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >Vin</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,186 L37,186 L37,191 L35,191 L35,186"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,2.09441,-2.09441,0,481.715,492.188)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="7" font-family="Sans Serif" font-size="5" font-weight="400" font-style="normal"
+ >ANALOG IN</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,2.09441,-2.09441,0,483.81,372.806)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="7" font-family="Sans Serif" font-size="5" font-weight="400" font-style="normal"
+ >POWER</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,425.166,318.351)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="7" font-family="Sans Serif" font-size="6" font-weight="400" font-style="normal"
+ >RESET</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,425.166,360.239)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >5V</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,158 L71,158 L71,163 L69,163 L69,158"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,425.166,297.407)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >IO ref</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle vector-effect="non-scaling-stroke" cx="12" cy="24.0001" r="10.2957"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-20,-14 -20,221 -10,223 0,230 105,230 120,220 160,220 160,-14 160,-14 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,179 L37,179 L37,184 L35,184 L35,179"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,165 L37,165 L37,170 L35,170 L35,165"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,73 L37,73 L37,78 L35,78 L35,73"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,179 L71,179 L71,184 L69,184 L69,179"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="99" cy="78" r="1.25"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,136 L71,136 L71,141 L69,141 L69,136"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,73 L71,73 L71,78 L69,78 L69,73"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,186 L71,186 L71,191 L69,191 L69,186"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,101 L37,101 L37,106 L35,106 L35,101"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,151 L37,151 L37,156 L35,156 L35,151"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="110" cy="78" r="1.25"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,2.09441,-2.09441,0,630.419,276.463)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="5" font-family="Sans Serif" font-size="4" font-weight="100" font-style="normal"
+ >RX</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,94 L37,94 L37,99 L35,99 L35,94"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,101 L71,101 L71,106 L69,106 L69,101"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,165 L71,165 L71,170 L69,170 L69,165"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,115 L71,115 L71,120 L69,120 L69,115"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,115 L37,115 L37,120 L35,120 L35,115"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,2.09441,-2.09441,0,668.118,282.746)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="5" font-family="Sans Serif" font-size="4" font-weight="100" font-style="normal"
+ >L</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,193 L37,193 L37,198 L35,198 L35,193"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,80 L37,80 L37,85 L35,85 L35,80"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M108,75 L112,75 L112,81 L108,81 L108,75"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,151 L71,151 L71,156 L69,156 L69,151"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,80 L71,80 L71,85 L69,85 L69,80"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,66 L37,66 L37,71 L35,71 L35,66"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M97,75 L101,75 L101,81 L97,81 L97,75"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,66 L71,66 L71,71 L69,71 L69,66"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,193 L71,193 L71,198 L69,198 L69,193"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="97" cy="222" r="6"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,143 L37,143 L37,148 L35,148 L35,143"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,143 L71,143 L71,148 L69,148 L69,143"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,122 L37,122 L37,127 L35,127 L35,122"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,122 L71,122 L71,127 L69,127 L69,122"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="151" cy="25" r="6"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="17" cy="222" r="6"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,108 L37,108 L37,113 L35,113 L35,108"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,108 L71,108 L71,113 L69,113 L69,108"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,172 L71,172 L71,177 L69,177 L69,172"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M76,206 L84,206 L84,224 L76,224 L76,206"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,129 L71,129 L71,134 L69,134 L69,129"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,129 L37,129 L37,134 L35,134 L35,129"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,87 L71,87 L71,92 L69,92 L69,87"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,87 L37,87 L37,92 L35,92 L35,87"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M66,206 L74,206 L74,224 L66,224 L66,206"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M68,218 L72,218 L72,222 L68,222 L68,218"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M128,28 L132,28 L132,32 L128,32 L128,28"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M78,208 L82,208 L82,212 L78,212 L78,208"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M58,218 L62,218 L62,222 L58,222 L58,218"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<ellipse cx="104.5" cy="115.5" rx="5.5" ry="7.5"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M144,34 L156,34 L156,216 L144,216 L144,34"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M68,208 L72,208 L72,212 L68,212 L68,208"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M78,218 L82,218 L82,222 L78,222 L78,218"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M128,38 L132,38 L132,42 L128,42 L128,38"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M116,36 L134,36 L134,44 L116,44 L116,36"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M104,112 L105,112 L105,120 L104,120 L104,112"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M128,48 L132,48 L132,52 L128,52 L128,48"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,427.261,569.681)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >A5</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M116,26 L134,26 L134,34 L116,34 L116,26"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,427.261,548.737)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >A4</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,427.261,527.793)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >A3</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M118,38 L122,38 L122,42 L118,42 L118,38"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,427.261,464.96)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >A0</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M118,48 L122,48 L122,52 L118,52 L118,48"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,427.261,506.848)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >A2</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M118,28 L122,28 L122,32 L118,32 L118,28"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,427.261,485.904)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >A1</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M116,46 L134,46 L134,54 L116,54 L116,46"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,699.535,379.089)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >~9</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,703.723,318.351)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >12</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,686.968,360.239)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >~10</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,670.213,548.737)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >TX-&gt;1</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,670.213,569.681)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >RX&lt;-0</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,689.062,339.295)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >~11</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,716.29,400.033)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >8</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,716.29,483.81)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >4</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,716.29,423.072)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >7</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,699.535,504.754)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >~3</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,716.29,525.698)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >2</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,703.723,295.312)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >13</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,2.09441,-2.09441,0,691.157,412.6)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="7" font-family="Sans Serif" font-size="5" font-weight="400" font-style="normal"
+ >DIGITAL (PWM~)</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,699.535,462.866)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >~5</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,699.535,444.016)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >~6</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,678.59,253.424)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >AREF</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,167 L153,167 L153,173 L147,173 L147,167"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-16,64 L-4,64 L-4,146 L-16,146 L-16,64"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,177 L153,177 L153,183 L147,183 L147,177"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,47 L153,47 L153,53 L147,53 L147,47"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,157 L153,157 L153,163 L147,163 L147,157"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,57 L153,57 L153,63 L147,63 L147,57"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,37 L153,37 L153,43 L147,43 L147,37"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,167 L-7,167 L-7,173 L-13,173 L-13,167"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,147 L153,147 L153,153 L147,153 L147,147"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,137 L153,137 L153,143 L147,143 L147,137"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,197 L153,197 L153,203 L147,203 L147,197"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,127 L153,127 L153,133 L147,133 L147,127"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,207 L153,207 L153,213 L147,213 L147,207"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,97 L-7,97 L-7,103 L-13,103 L-13,97"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,107 L153,107 L153,113 L147,113 L147,107"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,187 L153,187 L153,193 L147,193 L147,187"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-20,-14 C-20,-17.3137 -17.3137,-20 -14,-20 "/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M154,-20 C157.314,-20 160,-17.3137 160,-14 "/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M58,208 L62,208 L62,212 L58,212 L58,208"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,187 L-7,187 L-7,193 L-13,193 L-13,187"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,87 L-7,87 L-7,93 L-13,93 L-13,87"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,117 L153,117 L153,123 L147,123 L147,117"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,77 L153,77 L153,83 L147,83 L147,77"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,197 L-7,197 L-7,203 L-13,203 L-13,197"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,97 L153,97 L153,103 L147,103 L147,97"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,177 L-7,177 L-7,183 L-13,183 L-13,177"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,107 L-7,107 L-7,113 L-13,113 L-13,107"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,87 L153,87 L153,93 L147,93 L147,87"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,67 L153,67 L153,73 L147,73 L147,67"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,157 L-7,157 L-7,163 L-13,163 L-13,157"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,77 L-7,77 L-7,83 L-13,83 L-13,77"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,207 L-7,207 L-7,213 L-13,213 L-13,207"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,67 L-7,67 L-7,73 L-13,73 L-13,67"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,127 L-7,127 L-7,133 L-13,133 L-13,127"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,137 L-7,137 L-7,143 L-13,143 L-13,137"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,117 L-7,117 L-7,123 L-13,123 L-13,117"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-16,154 L-4,154 L-4,216 L-16,216 L-16,154"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,684.874,274.368)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >GND</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="146,135 154,135 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="non-scaling-stroke" points="113,213 113,79 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,2.09441,-2.09441,0,632.513,320.445)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >ARDUINO</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<ellipse cx="104.5" cy="100.5" rx="5.5" ry="7.5"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M104,97 L105,97 L105,105 L104,105 L104,97"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M101,115 L108,115 L108,116 L101,116 L101,115"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="4,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<ellipse vector-effect="non-scaling-stroke" cx="99.5" cy="159" rx="10.5" ry="16"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,2.09441,-2.09441,0,653.457,441.922)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="11" font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+ >UNO</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M56,206 L64,206 L64,224 L56,224 L56,206"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle vector-effect="non-scaling-stroke" cx="150" cy="-3" r="5"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="4,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M141,-11 L158,-11 L158,5 L141,5 L141,-11"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M1,-29 L21,-29 L21,2 L1,2 L1,-29"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="1,-22 21,-22 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M6,2 L16,2 L16,3 L6,3 L6,2"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-13,-20 1,-20 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="91" cy="78" r="1.25"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M89,75 L93,75 L93,81 L89,81 L89,75"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,2.09441,-2.09441,0,647.174,276.463)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="5" font-family="Sans Serif" font-size="4" font-weight="100" font-style="normal"
+ >TX</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-2.09441,2.09441,0,523.604,420.977)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="7" font-family="Sans Serif" font-size="5" font-weight="400" font-style="normal"
+ >AIMEL</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="non-scaling-stroke" points="45,131 45,117 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M37,65 L69,65 L69,202 L37,202 L37,65"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,172 L37,172 L37,177 L35,177 L35,172"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="non-scaling-stroke" points="26,97 26,145 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="non-scaling-stroke" points="26,155 26,213 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="4,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<ellipse vector-effect="non-scaling-stroke" cx="72.5" cy="30" rx="4.5" ry="11"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle vector-effect="non-scaling-stroke" cx="12" cy="51.0001" r="10.2957"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="4,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M51,-12 L67,-12 L67,-4 L51,-4 L51,-12"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,2.09441,-2.09441,0,601.097,492.188)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="3" font-family="Sans Serif" font-size="2" font-weight="100" font-style="normal"
+ >MADE IN ITALY</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="22,-20 94,-20 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,431.449,138.231)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="154,-20 131,-20 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,431.449,10.4721)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,431.449,10.4721)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="4" y="15" font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+ >Carte Arduino</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(2.09441,0,0,2.09441,431.449,10.4721)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,242.952,389.561)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="non-scaling-stroke" points="-7,-16 -3,-16 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,242.952,389.561)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="non-scaling-stroke" points="-5,-14 -5,-18 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,242.952,389.561)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="0,-12 0,-20 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,242.952,389.561)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="0,-8 0,0 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,242.952,389.561)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-5,-8 5,-8 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.09441,0,0,2.09441,242.952,389.561)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-5,-12 5,-12 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-2.09441,2.09441,0,261.802,410.505)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-2.09441,2.09441,0,261.802,410.505)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="4" y="15" font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+ >10nF</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-2.09441,2.09441,0,261.802,410.505)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+</g>
+</svg>
diff --git a/content/cligo_led.qet b/content/cligo_led.qet
new file mode 100755
index 0000000..d296cba
--- /dev/null
+++ b/content/cligo_led.qet
@@ -0,0 +1,743 @@
+<project version="0.5" title="" folioSheetQuantity="0">
+ <properties/>
+ <newdiagrams>
+ <border rowsize="80" cols="17" displaycols="true" rows="8" displayrows="true" colsize="60"/>
+ <inset folio="%id/%total" displayAt="bottom" date="null" author="" title="" filename=""/>
+ <conductors tension-protocol="" function="" displaytext="1" type="multi" onetextperfolio="0" numsize="7" horizrotatetext="0" vertirotatetext="270" num="_"/>
+ <report label="%f-%l%c"/>
+ <xrefs>
+ <xref snapto="label" delayprefix="" type="coil" powerprefix="" showpowerctc="false" displayhas="cross" switchprefix=""/>
+ <xref snapto="label" delayprefix="" type="commutator" powerprefix="" showpowerctc="false" displayhas="cross" switchprefix=""/>
+ <xref snapto="label" delayprefix="" type="protection" powerprefix="" showpowerctc="false" displayhas="cross" switchprefix=""/>
+ </xrefs>
+ <conductors_autonums/>
+ </newdiagrams>
+ <diagram folio="%id/%total" displayAt="bottom" date="null" rowsize="80" version="0.5" author="" height="660" title="" cols="17" displaycols="true" rows="8" displayrows="true" filename="" colsize="60" order="1">
+ <defaultconductor tension-protocol="" function="" displaytext="1" type="multi" onetextperfolio="0" numsize="7" horizrotatetext="0" vertirotatetext="270" num="_"/>
+ <elements>
+ <element x="420" type="embed://import/10_electric/20_manufacturers_articles/arduino/arduino_uno.elmt" y="220" orientation="3" uuid="{54bb9dc2-703c-44f3-82b0-7f1468a3235b}">
+ <terminals>
+ <terminal x="146" y="210" number="_" id="0" orientation="1" name="_" nameHidden="0"/>
+ <terminal x="146" y="50" number="_" id="1" orientation="1" name="_" nameHidden="0"/>
+ <terminal x="146" y="60" number="_" id="2" orientation="1" name="_" nameHidden="0"/>
+ <terminal x="146" y="70" number="_" id="3" orientation="1" name="_" nameHidden="0"/>
+ <terminal x="146" y="40" number="_" id="4" orientation="1" name="_" nameHidden="0"/>
+ <terminal x="-6" y="80" number="_" id="5" orientation="3" name="_" nameHidden="0"/>
+ <terminal x="-6" y="90" number="_" id="6" orientation="3" name="_" nameHidden="0"/>
+ <terminal x="-6" y="100" number="_" id="7" orientation="3" name="_" nameHidden="0"/>
+ <terminal x="-6" y="110" number="_" id="8" orientation="3" name="_" nameHidden="0"/>
+ <terminal x="-6" y="120" number="_" id="9" orientation="3" name="_" nameHidden="0"/>
+ <terminal x="-6" y="170" number="_" id="10" orientation="3" name="_" nameHidden="0"/>
+ <terminal x="-6" y="180" number="_" id="11" orientation="3" name="_" nameHidden="0"/>
+ <terminal x="-6" y="190" number="_" id="12" orientation="3" name="_" nameHidden="0"/>
+ <terminal x="-6" y="200" number="_" id="13" orientation="3" name="_" nameHidden="0"/>
+ <terminal x="-6" y="210" number="_" id="14" orientation="3" name="_" nameHidden="0"/>
+ <terminal x="146" y="200" number="_" id="15" orientation="1" name="_" nameHidden="0"/>
+ <terminal x="146" y="190" number="_" id="16" orientation="1" name="_" nameHidden="0"/>
+ <terminal x="146" y="180" number="_" id="17" orientation="1" name="_" nameHidden="0"/>
+ <terminal x="-6" y="70" number="_" id="18" orientation="3" name="_" nameHidden="0"/>
+ <terminal x="-6" y="160" number="_" id="19" orientation="3" name="_" nameHidden="0"/>
+ <terminal x="146" y="130" number="_" id="20" orientation="1" name="_" nameHidden="0"/>
+ <terminal x="146" y="140" number="_" id="21" orientation="1" name="_" nameHidden="0"/>
+ <terminal x="146" y="150" number="_" id="22" orientation="1" name="_" nameHidden="0"/>
+ <terminal x="146" y="160" number="_" id="23" orientation="1" name="_" nameHidden="0"/>
+ <terminal x="146" y="170" number="_" id="24" orientation="1" name="_" nameHidden="0"/>
+ <terminal x="146" y="80" number="_" id="25" orientation="1" name="_" nameHidden="0"/>
+ <terminal x="146" y="90" number="_" id="26" orientation="1" name="_" nameHidden="0"/>
+ <terminal x="146" y="120" number="_" id="27" orientation="1" name="_" nameHidden="0"/>
+ <terminal x="146" y="110" number="_" id="28" orientation="1" name="_" nameHidden="0"/>
+ <terminal x="146" y="100" number="_" id="29" orientation="1" name="_" nameHidden="0"/>
+ <terminal x="-6" y="130" number="_" id="30" orientation="3" name="_" nameHidden="0"/>
+ <terminal x="-6" y="140" number="_" id="31" orientation="3" name="_" nameHidden="0"/>
+ <terminal x="10" y="-16" number="_" id="32" orientation="0" name="_" nameHidden="0"/>
+ <terminal x="110" y="-16" number="_" id="33" orientation="0" name="_" nameHidden="0"/>
+ </terminals>
+ <inputs>
+ <input text="3.3V" x="-3" y="104"/>
+ <input text="3.3V" x="-3" y="104"/>
+ <input text="GND" x="-3" y="124"/>
+ <input text="GND" x="-3" y="124"/>
+ <input text="GND" x="-3" y="133"/>
+ <input text="GND" x="-3" y="133"/>
+ <input text="Vin" x="-2" y="144"/>
+ <input text="Vin" x="-2" y="144"/>
+ <input text="ANALOG IN" x="17" y="169"/>
+ <input text="ANALOG IN" x="17" y="169"/>
+ <input text="POWER" x="18" y="112"/>
+ <input text="POWER" x="18" y="112"/>
+ <input text="RESET" x="-3" y="93"/>
+ <input text="RESET" x="-3" y="93"/>
+ <input text="5V" x="-3" y="114"/>
+ <input text="5V" x="-3" y="114"/>
+ <input text="IO ref" x="-3" y="84"/>
+ <input text="IO ref" x="-3" y="84"/>
+ <input text="RX" x="90" y="66"/>
+ <input text="RX" x="90" y="66"/>
+ <input text="L" x="108" y="69"/>
+ <input text="L" x="108" y="69"/>
+ <input text="A5" x="-2" y="214"/>
+ <input text="A5" x="-2" y="214"/>
+ <input text="A4" x="-2" y="204"/>
+ <input text="A4" x="-2" y="204"/>
+ <input text="A3" x="-2" y="194"/>
+ <input text="A3" x="-2" y="194"/>
+ <input text="A0" x="-2" y="164"/>
+ <input text="A0" x="-2" y="164"/>
+ <input text="A2" x="-2" y="184"/>
+ <input text="A2" x="-2" y="184"/>
+ <input text="A1" x="-2" y="174"/>
+ <input text="A1" x="-2" y="174"/>
+ <input text="~9" x="128" y="123"/>
+ <input text="~9" x="128" y="123"/>
+ <input text="12" x="130" y="94"/>
+ <input text="12" x="130" y="94"/>
+ <input text="~10" x="122" y="114"/>
+ <input text="~10" x="122" y="114"/>
+ <input text="TX->1" x="114" y="204"/>
+ <input text="TX->1" x="114" y="204"/>
+ <input text="RX&lt;-0" x="114" y="214"/>
+ <input text="RX&lt;-0" x="114" y="214"/>
+ <input text="~11" x="123" y="104"/>
+ <input text="~11" x="123" y="104"/>
+ <input text="8" x="136" y="133"/>
+ <input text="8" x="136" y="133"/>
+ <input text="4" x="136" y="173"/>
+ <input text="4" x="136" y="173"/>
+ <input text="7" x="136" y="144"/>
+ <input text="7" x="136" y="144"/>
+ <input text="~3" x="128" y="183"/>
+ <input text="~3" x="128" y="183"/>
+ <input text="2" x="136" y="193"/>
+ <input text="2" x="136" y="193"/>
+ <input text="13" x="130" y="83"/>
+ <input text="13" x="130" y="83"/>
+ <input text="DIGITAL (PWM~)" x="117" y="131"/>
+ <input text="DIGITAL (PWM~)" x="117" y="131"/>
+ <input text="~5" x="128" y="163"/>
+ <input text="~5" x="128" y="163"/>
+ <input text="~6" x="128" y="154"/>
+ <input text="~6" x="128" y="154"/>
+ <input text="AREF" x="118" y="63"/>
+ <input text="AREF" x="118" y="63"/>
+ <input text="GND" x="121" y="73"/>
+ <input text="GND" x="121" y="73"/>
+ <input text="ARDUINO" x="88" y="87"/>
+ <input text="ARDUINO" x="88" y="87"/>
+ <input text="UNO" x="95" y="145"/>
+ <input text="UNO" x="95" y="145"/>
+ <input text="TX" x="98" y="66"/>
+ <input text="TX" x="98" y="66"/>
+ <input text="AIMEL" x="51" y="135"/>
+ <input text="AIMEL" x="51" y="135"/>
+ <input text="MADE IN ITALY" x="78" y="169"/>
+ <input text="MADE IN ITALY" x="78" y="169"/>
+ <input text="" x="-40" y="10"/>
+ </inputs>
+ </element>
+ <element x="700" type="embed://import/10_electric/10_allpole/395_electronics&amp;semiconductors/11_diodes/diode_led.elmt" y="70" orientation="0" uuid="{e83800fe-94ad-43bf-9086-da248e0da771}">
+ <terminals>
+ <terminal x="0" y="-17" number="_" id="34" orientation="0" name="_" nameHidden="0"/>
+ <terminal x="0" y="17" number="_" id="35" orientation="2" name="_" nameHidden="0"/>
+ </terminals>
+ <inputs>
+ <input text="LED" x="7.75" y="3"/>
+ </inputs>
+ </element>
+ <element x="700" type="embed://import/10_electric/10_allpole/395_electronics&amp;semiconductors/01_resistors/resistance.elmt" y="240" orientation="0" uuid="{8383afbb-d1f7-4e66-9ab6-25f7ab69a419}">
+ <terminals>
+ <terminal x="0" y="17" number="_" id="36" orientation="2" name="_" nameHidden="0"/>
+ <terminal x="0" y="-17" number="_" id="37" orientation="0" name="_" nameHidden="0"/>
+ </terminals>
+ <inputs>
+ <input text="Résistance" x="6" y="0"/>
+ </inputs>
+ </element>
+ </elements>
+ <conductors>
+ <conductor tension-protocol="" function="" displaytext="1" x="0" y="0" type="multi" onetextperfolio="0" terminal1="34" terminal2="27" numsize="7" horizrotatetext="0" vertirotatetext="270" num=""/>
+ <conductor tension-protocol="" function="" displaytext="1" x="0" y="0" type="multi" onetextperfolio="0" terminal1="35" terminal2="37" numsize="7" horizrotatetext="0" vertirotatetext="270" num=""/>
+ <conductor tension-protocol="" function="" displaytext="1" x="0" y="0" type="multi" onetextperfolio="0" terminal1="36" terminal2="9" numsize="7" horizrotatetext="0" vertirotatetext="270" num=""/>
+ </conductors>
+ </diagram>
+ <collection>
+ <category name="import">
+ <names>
+ <name lang="pt">elementos importados</name>
+ <name lang="ca">Elements importats</name>
+ <name lang="de">Importierte elemente</name>
+ <name lang="cs">Zavedené prvky</name>
+ <name lang="it">Elementi importati</name>
+ <name lang="hr">Uvezeni elementi</name>
+ <name lang="ro">Elemente importate</name>
+ <name lang="el">Εισηγμένα στοιχεία</name>
+ <name lang="pl">Elementy importowane</name>
+ <name lang="en">Imported elements</name>
+ <name lang="fr">Éléments importés</name>
+ <name lang="ru">Импортированные элементы</name>
+ <name lang="es">Elementos importados</name>
+ <name lang="nl">Elementen geïmporteerd</name>
+ </names>
+ <category name="10_electric">
+ <names>
+ <name lang="de">Elektrik</name>
+ <name lang="it">Elettrica</name>
+ <name lang="cs">Elektrotechnika</name>
+ <name lang="el">Ηλεκτρικά</name>
+ <name lang="pl">Elektrotechnika</name>
+ <name lang="en">Electric</name>
+ <name lang="fr">Electrique</name>
+ <name lang="ru">Электротехника</name>
+ <name lang="nl">Elektrotechniek</name>
+ </names>
+ <category name="11_singlepole">
+ <names>
+ <name lang="cs">Jednopólové</name>
+ <name lang="it">Unifilare</name>
+ <name lang="de">Einpolig</name>
+ <name lang="el">Μονογραμμικό</name>
+ <name lang="pl">Schematy jednoliniowe</name>
+ <name lang="en">Single pole</name>
+ <name lang="fr">Unifilaire</name>
+ <name lang="ru">Однополюсные</name>
+ <name lang="nl">Enkel pool</name>
+ </names>
+ <category name="395_electronics&amp;semiconductors">
+ <names>
+ <name lang="de">Elektronik und Halbleiter</name>
+ <name lang="cs">Elektronika a polovodiče</name>
+ <name lang="it">Elettronica e semiconduttori</name>
+ <name lang="el">Ηλεκτρονικά και ημιαγωγοί</name>
+ <name lang="pl">Elektronika i półprzewodniki</name>
+ <name lang="en">Electronics and semiconductors</name>
+ <name lang="fr">Electronique et semi-conducteurs</name>
+ <name lang="ru">Электроника и полупроводники</name>
+ <name lang="nl">Electronica en halfgeleiders</name>
+ </names>
+ <category name="10_resistors">
+ <names>
+ <name lang="pt">Resistência</name>
+ <name lang="de">Widerstände</name>
+ <name lang="it">Resistori</name>
+ <name lang="cs">Odporník</name>
+ <name lang="el">Αντιστάσεις</name>
+ <name lang="ar">مُقاومة</name>
+ <name lang="pl">Rezystory</name>
+ <name lang="en">Resistors</name>
+ <name lang="fr">Résistances</name>
+ <name lang="ru">Резисторы</name>
+ <name lang="es">Resistencia</name>
+ <name lang="nl">Weerstand</name>
+ </names>
+ <element name="resistance.elmt">
+ <definition width="20" hotspot_x="10" type="element" hotspot_y="25" height="50" version="0.3" orientation="dnny">
+ <uuid uuid="{795F5D63-C74F-48CD-9004-322B122731BD}"/>
+ <names>
+ <name lang="ar">مُقاومة</name>
+ <name lang="de">Widerstand</name>
+ <name lang="ru">Резистор</name>
+ <name lang="pt">Resistência</name>
+ <name lang="el">Αντίσταση</name>
+ <name lang="en">Resistor</name>
+ <name lang="it">Resistore</name>
+ <name lang="fr">Résistance</name>
+ <name lang="pl">Rezystor</name>
+ <name lang="es">Resistencia</name>
+ <name lang="cs">Odporník</name>
+ <name lang="nl">Weerstand</name>
+ </names>
+ <informations>Author: The QElectroTech team
+License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
+ <description>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="-10" y2="-20" x1="0" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="10" y2="-10" x1="4" x2="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="10" y2="10" x1="-4" x2="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="-10" y2="-10" x1="4" x2="-4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="-10" y2="10" x1="-4" x2="-4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <terminal x="0" y="-21" orientation="n"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ </category>
+ </category>
+ <category name="20_manufacturers_articles">
+ <names>
+ <name lang="de">Herstellerartikel</name>
+ <name lang="it">Marchi produttori</name>
+ <name lang="el">Κατασκευαστές υλικού</name>
+ <name lang="pl">Urządzenia producentów</name>
+ <name lang="en">Manufacturers articles</name>
+ <name lang="fr">Articles constructeurs</name>
+ <name lang="ru">База изделий производителей</name>
+ </names>
+ <category name="knx">
+ <names>
+ <name lang="cs">KNX</name>
+ <name lang="en">KNX</name>
+ </names>
+ <category name="divers">
+ <names>
+ <name lang="pt">Diversos</name>
+ <name lang="de">Diverses</name>
+ <name lang="it">Varie</name>
+ <name lang="cs">Různé</name>
+ <name lang="el">Διάφορα</name>
+ <name lang="ar">متفرقات</name>
+ <name lang="pl">Różne</name>
+ <name lang="en">Misc</name>
+ <name lang="be">Diversen</name>
+ <name lang="fr">Divers</name>
+ <name lang="ru">Разное</name>
+ <name lang="es">Diversos</name>
+ <name lang="nl">Diversen</name>
+ </names>
+ <element name="knx_056.elmt">
+ <definition width="50" link_type="simple" hotspot_x="24" type="element" hotspot_y="19" height="40" version="0.5" orientation="dyyy">
+ <uuid uuid="{a0ce37fc-2ee4-4a9e-a688-f8480733f270}"/>
+ <names>
+ <name lang="it">Display digitale</name>
+ <name lang="fr">Afficheur led</name>
+ <name lang="nl">Digitaal Scherm</name>
+ <name lang="pl">Wyświetlacz binarny</name>
+ <name lang="en">Binary display</name>
+ <name lang="es">Display digital</name>
+ <name lang="cs">Digitální obrazovka</name>
+ </names>
+ <informations>Author: The QElectroTech team
+License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
+ <description>
+ <line length1="1.5" antialias="true" length2="1" end1="none" end2="simple" y1="-5" y2="-10" x1="7" x2="11" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="30" x="-10" antialias="false" y="-15" height="30" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="10" x="-20" antialias="false" y="-15" height="30" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <input text="n" x="9" tagg="none" y="8.5" rotate="true" size="5"/>
+ <polygon x6="-15" x7="-16" antialias="true" y1="-11" y2="11" y3="12" x1="-16" y4="11" y5="-11" x2="-16" style="line-style:normal;line-weight:normal;filling:none;color:black" y6="-12" x3="-15" x4="-14" y7="-11" x5="-14"/>
+ <polygon antialias="true" y1="-9" y2="-12" closed="false" y3="-9" x1="-18" x2="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" x3="-12"/>
+ <polygon antialias="true" y1="9" y2="12" closed="false" y3="9" x1="-18" x2="-15" style="line-style:normal;line-weight:normal;filling:none;color:black" x3="-12"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="0" y2="0" x1="-6" x2="16" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <polygon antialias="true" y1="-5" y2="5" closed="false" y3="0" x1="0" y4="-5" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x3="10" x4="0"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="-5" y2="5" x1="10" x2="10" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="true" length2="1" end1="none" end2="simple" y1="-6" y2="-11" x1="4" x2="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <input text="_" x="-23" tagg="label" y="-25" rotate="true" size="9"/>
+ <terminal x="-10" y="15" orientation="s"/>
+ <terminal x="0" y="-15" orientation="n"/>
+ <terminal x="10" y="-15" orientation="n"/>
+ <terminal x="-10" y="-15" orientation="n"/>
+ <terminal x="0" y="15" orientation="s"/>
+ <terminal x="10" y="15" orientation="s"/>
+ <terminal x="-20" y="10" orientation="w"/>
+ <terminal x="-20" y="0" orientation="w"/>
+ <terminal x="-20" y="-10" orientation="w"/>
+ <terminal x="20" y="0" orientation="e"/>
+ <terminal x="20" y="10" orientation="e"/>
+ <terminal x="20" y="-10" orientation="e"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ </category>
+ <category name="arduino">
+ <names>
+ <name lang="cs">Arduino</name>
+ <name lang="en">Arduino</name>
+ </names>
+ <element name="arduino_uno.elmt">
+ <definition width="190" link_type="simple" hotspot_x="25" type="element" hotspot_y="35" height="270" version="0.5" orientation="dyyy">
+ <uuid uuid="{adc899b2-6c00-4fcf-a605-6427cc667d01}"/>
+ <names>
+ <name lang="pl">Arduino Uno</name>
+ <name lang="nl">Arduino Uno</name>
+ <name lang="fr">Arduino Uno</name>
+ <name lang="en">Arduino Uno</name>
+ <name lang="cs">Arduino Uno</name>
+ <name lang="it">Arduino Uno</name>
+ </names>
+ <informations>ezza</informations>
+ <description>
+ <rect width="35" x="95" antialias="false" y="-30" height="45" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <circle x="-17" antialias="true" y="19" diameter="12" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <text text="3.3V" x="-3" y="104" size="7"/>
+ <text text="GND" x="-3" y="124" size="6"/>
+ <rect width="2" x="69" antialias="false" y="94" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="35" antialias="false" y="136" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <text text="GND" x="-3" y="133" size="6"/>
+ <rect width="2" x="35" antialias="false" y="158" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <text text="Vin" x="-2" y="144" size="7"/>
+ <rect width="2" x="35" antialias="false" y="186" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <text text="ANALOG IN" x="17" rotation="90" y="169" size="5"/>
+ <text text="POWER" x="18" rotation="90" y="112" size="5"/>
+ <text text="RESET" x="-3" y="93" size="6"/>
+ <text text="5V" x="-3" y="114" size="7"/>
+ <rect width="2" x="69" antialias="false" y="158" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <text text="IO ref" x="-3" y="84" size="7"/>
+ <circle x="1.7044" antialias="true" y="13.7044" diameter="20.5913" style="line-style:dotted;line-weight:thin;filling:none;color:black"/>
+ <polygon antialias="false" closed="false" y1="-14" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="221" y3="223" y4="230" y5="230" y6="220" x1="-20" y7="220" x2="-20" y8="-14" y9="-14" x3="-10" x4="0" x5="105" x6="120" x7="160" x8="160" x9="160"/>
+ <rect width="2" x="35" antialias="false" y="179" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="35" antialias="false" y="165" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="35" antialias="false" y="73" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="69" antialias="false" y="179" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <circle x="97.75" antialias="true" y="76.75" diameter="2.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="2" x="69" antialias="false" y="136" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="69" antialias="false" y="73" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="69" antialias="false" y="186" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="35" antialias="false" y="101" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="35" antialias="false" y="151" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <circle x="108.75" antialias="true" y="76.75" diameter="2.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <text text="RX" x="90" rotation="90" y="66" size="4"/>
+ <rect width="2" x="35" antialias="false" y="94" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="69" antialias="false" y="101" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="69" antialias="false" y="165" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="69" antialias="false" y="115" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="35" antialias="false" y="115" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <text text="L" x="108" rotation="90" y="69" size="4"/>
+ <rect width="2" x="35" antialias="false" y="193" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="35" antialias="false" y="80" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="4" x="108" antialias="false" y="75" height="6" style="line-style:dotted;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="69" antialias="false" y="151" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="69" antialias="false" y="80" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="35" antialias="false" y="66" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="4" x="97" antialias="false" y="75" height="6" style="line-style:dotted;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="69" antialias="false" y="66" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="69" antialias="false" y="193" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <circle x="91" antialias="true" y="216" diameter="12" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="2" x="35" antialias="false" y="143" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="69" antialias="false" y="143" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="35" antialias="false" y="122" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="69" antialias="false" y="122" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <circle x="145" antialias="true" y="19" diameter="12" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <circle x="11" antialias="true" y="216" diameter="12" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="2" x="35" antialias="false" y="108" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="69" antialias="false" y="108" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="69" antialias="false" y="172" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="8" x="76" antialias="false" y="206" height="18" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="2" x="69" antialias="false" y="129" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="35" antialias="false" y="129" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="69" antialias="false" y="87" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="35" antialias="false" y="87" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="8" x="66" antialias="false" y="206" height="18" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="4" x="68" antialias="false" y="218" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="4" x="128" antialias="false" y="28" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="4" x="78" antialias="false" y="208" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="4" x="58" antialias="false" y="218" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <ellipse width="11" x="99" antialias="true" y="108" height="15" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="12" x="144" antialias="false" y="34" height="182" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="4" x="68" antialias="false" y="208" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="4" x="78" antialias="false" y="218" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="4" x="128" antialias="false" y="38" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="18" x="116" antialias="false" y="36" height="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="1" x="104" antialias="false" y="112" height="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="4" x="128" antialias="false" y="48" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <text text="A5" x="-2" y="214" size="7"/>
+ <rect width="18" x="116" antialias="false" y="26" height="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <text text="A4" x="-2" y="204" size="7"/>
+ <text text="A3" x="-2" y="194" size="7"/>
+ <rect width="4" x="118" antialias="false" y="38" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <text text="A0" x="-2" y="164" size="7"/>
+ <rect width="4" x="118" antialias="false" y="48" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <text text="A2" x="-2" y="184" size="7"/>
+ <rect width="4" x="118" antialias="false" y="28" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <text text="A1" x="-2" y="174" size="7"/>
+ <rect width="18" x="116" antialias="false" y="46" height="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <text text="~9" x="128" y="123" size="7"/>
+ <text text="12" x="130" y="94" size="7"/>
+ <text text="~10" x="122" y="114" size="7"/>
+ <text text="TX->1" x="114" y="204" size="7"/>
+ <text text="RX&lt;-0" x="114" y="214" size="7"/>
+ <text text="~11" x="123" y="104" size="7"/>
+ <text text="8" x="136" y="133" size="7"/>
+ <text text="4" x="136" y="173" size="7"/>
+ <text text="7" x="136" y="144" size="7"/>
+ <text text="~3" x="128" y="183" size="7"/>
+ <text text="2" x="136" y="193" size="7"/>
+ <text text="13" x="130" y="83" size="7"/>
+ <text text="DIGITAL (PWM~)" x="117" rotation="90" y="131" size="5"/>
+ <text text="~5" x="128" y="163" size="7"/>
+ <text text="~6" x="128" y="154" size="7"/>
+ <text text="AREF" x="118" y="63" size="7"/>
+ <rect width="6" x="147" antialias="false" y="167" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="12" x="-16" antialias="false" y="64" height="82" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="147" antialias="false" y="177" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="147" antialias="false" y="47" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="147" antialias="false" y="157" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="147" antialias="false" y="57" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="147" antialias="false" y="37" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="-13" antialias="false" y="167" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="147" antialias="false" y="147" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="147" antialias="false" y="137" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="147" antialias="false" y="197" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="147" antialias="false" y="127" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="147" antialias="false" y="207" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="-13" antialias="false" y="97" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="147" antialias="false" y="107" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="147" antialias="false" y="187" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <arc width="12" angle="-90" x="-20" antialias="false" y="-20" height="12" style="line-style:normal;line-weight:normal;filling:none;color:black" start="-180"/>
+ <arc width="12" angle="-90" x="148" antialias="false" y="-20" height="12" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90"/>
+ <rect width="4" x="58" antialias="false" y="208" height="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="-13" antialias="false" y="187" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="-13" antialias="false" y="87" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="147" antialias="false" y="117" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="147" antialias="false" y="77" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="-13" antialias="false" y="197" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="147" antialias="false" y="97" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="-13" antialias="false" y="177" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="-13" antialias="false" y="107" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="147" antialias="false" y="87" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="147" antialias="false" y="67" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="-13" antialias="false" y="157" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="-13" antialias="false" y="77" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="-13" antialias="false" y="207" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="-13" antialias="false" y="67" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="-13" antialias="false" y="127" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="-13" antialias="false" y="137" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="6" x="-13" antialias="false" y="117" height="6" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="12" x="-16" antialias="false" y="154" height="62" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <text text="GND" x="121" y="73" size="7"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="135" y2="135" x1="146" x2="154" style="line-style:dotted;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="213" y2="79" x1="113" x2="113" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <text text="ARDUINO" x="88" rotation="90" y="87" size="7"/>
+ <ellipse width="11" x="99" antialias="true" y="93" height="15" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="1" x="104" antialias="false" y="97" height="8" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="7" x="101" antialias="false" y="115" height="1" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <ellipse width="21" x="89" antialias="true" y="143" height="32" style="line-style:dashed;line-weight:thin;filling:none;color:black"/>
+ <text text="UNO" x="95" rotation="90" y="145" size="9"/>
+ <rect width="8" x="56" antialias="false" y="206" height="18" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <circle x="145" antialias="true" y="-8" diameter="10" style="line-style:dotted;line-weight:thin;filling:none;color:black"/>
+ <rect width="17" x="141" antialias="false" y="-11" height="16" style="line-style:dashed;line-weight:thin;filling:none;color:black"/>
+ <rect width="20" x="1" antialias="false" y="-29" height="31" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="-22" y2="-22" x1="1" x2="21" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="10" x="6" antialias="false" y="2" height="1" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="-20" y2="-20" x1="-13" x2="1" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <circle x="89.75" antialias="true" y="76.75" diameter="2.5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <rect width="4" x="89" antialias="false" y="75" height="6" style="line-style:dotted;line-weight:thin;filling:none;color:black"/>
+ <text text="TX" x="98" rotation="90" y="66" size="4"/>
+ <text text="AIMEL" x="51" rotation="270" y="135" size="5"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="131" y2="117" x1="45" x2="45" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <rect width="32" x="37" antialias="false" y="65" height="137" style="line-style:dotted;line-weight:thin;filling:none;color:black"/>
+ <rect width="2" x="35" antialias="false" y="172" height="5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="97" y2="145" x1="26" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="155" y2="213" x1="26" x2="26" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
+ <ellipse width="9" x="68" antialias="true" y="19" height="22" style="line-style:dashed;line-weight:thin;filling:none;color:black"/>
+ <circle x="1.70437" antialias="true" y="40.7044" diameter="20.5913" style="line-style:dotted;line-weight:thin;filling:none;color:black"/>
+ <rect width="16" x="51" antialias="false" y="-12" height="8" style="line-style:dashed;line-weight:thin;filling:none;color:black"/>
+ <text text="MADE IN ITALY" x="78" rotation="90" y="169" size="2"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="-20" y2="-20" x1="22" x2="94" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="-20" y2="-20" x1="154" x2="131" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <input text="_" x="-40" tagg="label" y="10" rotate="true" size="9"/>
+ <terminal x="150" y="210" orientation="e"/>
+ <terminal x="150" y="50" orientation="e"/>
+ <terminal x="150" y="60" orientation="e"/>
+ <terminal x="150" y="70" orientation="e"/>
+ <terminal x="150" y="40" orientation="e"/>
+ <terminal x="-10" y="80" orientation="w"/>
+ <terminal x="-10" y="90" orientation="w"/>
+ <terminal x="-10" y="100" orientation="w"/>
+ <terminal x="-10" y="110" orientation="w"/>
+ <terminal x="-10" y="120" orientation="w"/>
+ <terminal x="-10" y="170" orientation="w"/>
+ <terminal x="-10" y="180" orientation="w"/>
+ <terminal x="-10" y="190" orientation="w"/>
+ <terminal x="-10" y="200" orientation="w"/>
+ <terminal x="-10" y="210" orientation="w"/>
+ <terminal x="150" y="200" orientation="e"/>
+ <terminal x="150" y="190" orientation="e"/>
+ <terminal x="150" y="180" orientation="e"/>
+ <terminal x="-10" y="70" orientation="w"/>
+ <terminal x="-10" y="160" orientation="w"/>
+ <terminal x="150" y="130" orientation="e"/>
+ <terminal x="150" y="140" orientation="e"/>
+ <terminal x="150" y="150" orientation="e"/>
+ <terminal x="150" y="160" orientation="e"/>
+ <terminal x="150" y="170" orientation="e"/>
+ <terminal x="150" y="80" orientation="e"/>
+ <terminal x="150" y="90" orientation="e"/>
+ <terminal x="150" y="120" orientation="e"/>
+ <terminal x="150" y="110" orientation="e"/>
+ <terminal x="150" y="100" orientation="e"/>
+ <terminal x="-10" y="130" orientation="w"/>
+ <terminal x="-10" y="140" orientation="w"/>
+ <terminal x="10" y="-20" orientation="n"/>
+ <terminal x="110" y="-20" orientation="n"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ </category>
+ <category name="10_allpole">
+ <names>
+ <name lang="cs">Vícežilový</name>
+ <name lang="it">Multifilare</name>
+ <name lang="de">Allpolig</name>
+ <name lang="el">Πολυγραμμικό</name>
+ <name lang="pl">Schematy wieloliniowe</name>
+ <name lang="en">All-pole</name>
+ <name lang="fr">Multifilaire</name>
+ <name lang="ru">Многополюсные</name>
+ <name lang="nl">Veel polig</name>
+ </names>
+ <category name="395_electronics&amp;semiconductors">
+ <names>
+ <name lang="it">Elettronica e semiconduttori</name>
+ <name lang="de">Elektronik und Halbleiter</name>
+ <name lang="el">Ηλεκτρονικά και ημιαγωγοί</name>
+ <name lang="pl">Elektronika i półprzewodniki</name>
+ <name lang="en">Electronics and semiconductors</name>
+ <name lang="fr">Electronique et semi-conducteurs</name>
+ <name lang="ru">Электроника и полупроводники</name>
+ <name lang="nl">Electronica en halfgeleiders</name>
+ </names>
+ <category name="11_diodes">
+ <names>
+ <name lang="de">Dioden</name>
+ <name lang="it">Diodo</name>
+ <name lang="cs">Dioda</name>
+ <name lang="el">Δίοδοι</name>
+ <name lang="pl">Diody</name>
+ <name lang="en">Diode</name>
+ <name lang="fr">Diode</name>
+ <name lang="ru">Диоды</name>
+ <name lang="nl">Diodes</name>
+ </names>
+ <element name="diode_led.elmt">
+ <definition width="40" hotspot_x="12" type="element" hotspot_y="25" height="50" version="0.3" orientation="dnny">
+ <uuid uuid="{DB65AB71-32B4-43A7-BFC1-19D4D4649C19}"/>
+ <names>
+ <name lang="ar">دايود ضاوي LED</name>
+ <name lang="de">LED</name>
+ <name lang="ru">Светодиод</name>
+ <name lang="pt">LED</name>
+ <name lang="el">Δίοδος LED</name>
+ <name lang="en">LED</name>
+ <name lang="it">LED</name>
+ <name lang="fr">DEL</name>
+ <name lang="pl">Dioda elektroluminescencyjna (LED)</name>
+ <name lang="es">LED</name>
+ <name lang="cs">Svítící dioda (světelná emisní dioda - LED)</name>
+ <name lang="nl">LED</name>
+ </names>
+ <informations>Author: The QElectroTech team
+License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
+ <description>
+ <polygon antialias="true" y1="2" y2="1" y3="0" x1="-7" x2="-9" style="line-style:normal;line-weight:thin;filling:black;color:black" x3="-7"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="1" y2="1" x1="-7" x2="-5.25" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <polygon antialias="true" y1="-2.5" y2="-3.5" y3="-1.5" x1="-9" x2="-7" style="line-style:normal;line-weight:thin;filling:black;color:black" x3="-7"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="-2.5" y2="-2.5" x1="-7" x2="-5.25" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="5" y2="5" x1="-5" x2="5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <polygon antialias="true" y1="-5" y2="-5" y3="5" x1="-5" x2="5" style="line-style:normal;line-weight:normal;filling:none;color:black" x3="0"/>
+ <input text="_" x="7.75" tagg="label" y="3" size="9"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="-20" y2="20" x1="0" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <terminal x="0" y="-21" orientation="n"/>
+ <terminal x="0" y="21" orientation="s"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ <category name="01_resistors">
+ <names>
+ <name lang="pt">Resistência</name>
+ <name lang="de">Widerstände</name>
+ <name lang="it">Resistori</name>
+ <name lang="cs">Odporník</name>
+ <name lang="el">Αντιστάσεις</name>
+ <name lang="ar">مُقاومة</name>
+ <name lang="pl">Rezystory</name>
+ <name lang="en">Resistors</name>
+ <name lang="fr">Résistances</name>
+ <name lang="ru">Резисторы</name>
+ <name lang="es">Resistencia</name>
+ <name lang="nl">Weerstand</name>
+ </names>
+ <element name="resistance.elmt">
+ <definition width="20" link_type="simple" hotspot_x="10" type="element" hotspot_y="29" height="60" version="0.5" orientation="dyyy">
+ <uuid uuid="{af30335a-4d6f-4d8c-a3a5-60c5e1d43dc7}"/>
+ <names>
+ <name lang="el">Αντίσταση</name>
+ <name lang="fr">Résistance</name>
+ <name lang="de">Widerstand</name>
+ <name lang="cs">Odporník</name>
+ <name lang="ru">Резистор</name>
+ <name lang="es">Resistencia</name>
+ <name lang="ar">مُقاومة</name>
+ <name lang="it">Resistore</name>
+ <name lang="pl">Rezystor</name>
+ <name lang="en">Resistor</name>
+ <name lang="pt">Resistência</name>
+ <name lang="nl">Weerstand</name>
+ </names>
+ <informations>EN 60617: 04-01-01</informations>
+ <description>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="-10" y2="-20" x1="0" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="10" y2="20" x1="0" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="10" y2="-10" x1="4" x2="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="10" y2="10" x1="-4" x2="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="-10" y2="-10" x1="4" x2="-4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="-10" y2="10" x1="-4" x2="-4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <input text="_" x="6" tagg="label" y="0" rotate="true" size="9"/>
+ <terminal x="0" y="21" orientation="s"/>
+ <terminal x="0" y="-21" orientation="n"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ </category>
+ <category name="391_consumers&amp;actuators">
+ <names>
+ <name lang="it">Utilizzatori e attuatori</name>
+ <name lang="de">Verbraucher und Aktoren</name>
+ <name lang="cs">Spotřebitelé a spouštěče</name>
+ <name lang="el">Καταναλώσεις και ενεργοποιητές</name>
+ <name lang="pl">Odbiorniki i urządzenia wykonawcze</name>
+ <name lang="en">Consumers and actuators</name>
+ <name lang="fr">Consommateurs et actionneurs</name>
+ <name lang="ru">Исполнительные механизмы</name>
+ <name lang="nl">Verbruikers en bewegingen</name>
+ </names>
+ <category name="50_heatings">
+ <names>
+ <name lang="it">iscaldamento</name>
+ <name lang="de">Heizungen</name>
+ <name lang="cs">Topení</name>
+ <name lang="el">Θερμαντήρες</name>
+ <name lang="pl">Ogrzewanie</name>
+ <name lang="en">Heatings</name>
+ <name lang="fr">Chauffages</name>
+ <name lang="ru">Нагреватели</name>
+ <name lang="nl">Verwarming</name>
+ </names>
+ <element name="resistances-chauffantes.elmt">
+ <definition width="20" link_type="simple" hotspot_x="10" type="element" hotspot_y="29" height="60" version="0.5" orientation="dyyy">
+ <uuid uuid="{32742dca-1c26-4b37-860a-4db71252a3ec}"/>
+ <names>
+ <name lang="cs">Vytápěcí odpory</name>
+ <name lang="it">Resistenza di riscaldamento</name>
+ <name lang="pl">Grzejnik</name>
+ <name lang="en">Resistances heating</name>
+ <name lang="nl">Verwarmingsweerstand</name>
+ <name lang="de">Heizwiderstand</name>
+ <name lang="ar">مقاومة تسخين</name>
+ <name lang="fr">Resistances chauffantes</name>
+ <name lang="el">Αντίσταση θέρμανσης</name>
+ </names>
+ <informations>Author: The QElectroTech team
+License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
+ <description>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="5" y2="5" x1="-4" x2="3" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="0" y2="0" x1="-4" x2="3" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="-5" y2="-5" x1="-4" x2="3" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="-10" y2="-20" x1="0" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="10" y2="20" x1="0" x2="0" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="10" y2="-10" x1="4" x2="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="10" y2="10" x1="-4" x2="4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="-10" y2="-10" x1="4" x2="-4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <line length1="1.5" antialias="false" length2="1.5" end1="none" end2="none" y1="-10" y2="10" x1="-4" x2="-4" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
+ <input text="_" x="5" tagg="label" y="-0.5" rotate="true" size="9"/>
+ <terminal x="0" y="-21" orientation="n"/>
+ <terminal x="0" y="21" orientation="s"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ </category>
+ </category>
+ </category>
+ </category>
+ </collection>
+</project>
diff --git a/content/cligo_led.svg b/content/cligo_led.svg
new file mode 100644
index 0000000..18669d5
--- /dev/null
+++ b/content/cligo_led.svg
@@ -0,0 +1,1273 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg width="370.417mm" height="248.356mm"
+ xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
+<title>Qt SVG Document</title>
+<desc>Generated with Qt</desc>
+<defs>
+</defs>
+<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(1.94858,0,0,1.94858,-740.46,-47.7402)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M380,24.5 L784.141,24.5 L784.141,295 L380,295 L380,24.5"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M95,-30 L130,-30 L130,15 L95,15 L95,-30"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<circle cx="-11" cy="25" r="6"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,263.058,386.793)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >3.3V</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,303.978,386.793)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="6" font-weight="400" font-style="normal"
+ >GND</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,94 L71,94 L71,99 L69,99 L69,94"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,136 L37,136 L37,141 L35,141 L35,136"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,321.516,386.793)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="6" font-weight="400" font-style="normal"
+ >GND</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,158 L37,158 L37,163 L35,163 L35,158"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,341.001,384.844)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >Vin</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,186 L37,186 L37,191 L35,191 L35,186"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,407.253,334.181)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="7" font-family="Sans Serif" font-size="5" font-weight="400" font-style="normal"
+ >ANALOG IN</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,296.184,332.233)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="7" font-family="Sans Serif" font-size="5" font-weight="400" font-style="normal"
+ >POWER</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,243.572,386.793)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="8" font-family="Sans Serif" font-size="6" font-weight="400" font-style="normal"
+ >RESET</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,282.544,386.793)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >5V</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,158 L71,158 L71,163 L69,163 L69,158"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,224.087,386.793)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >IO ref</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<circle vector-effect="non-scaling-stroke" cx="12" cy="24.0001" r="10.2957"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-20,-14 -20,221 -10,223 0,230 105,230 120,220 160,220 160,-14 160,-14 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,179 L37,179 L37,184 L35,184 L35,179"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,165 L37,165 L37,170 L35,170 L35,165"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,73 L37,73 L37,78 L35,78 L35,73"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,179 L71,179 L71,184 L69,184 L69,179"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<circle cx="99" cy="78" r="1.25"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,136 L71,136 L71,141 L69,141 L69,136"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,73 L71,73 L71,78 L69,78 L69,73"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,186 L71,186 L71,191 L69,191 L69,186"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,101 L37,101 L37,106 L35,106 L35,101"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,151 L37,151 L37,156 L35,156 L35,151"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<circle cx="110" cy="78" r="1.25"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,206.549,195.832)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="5" font-family="Sans Serif" font-size="4" font-weight="100" font-style="normal"
+ >RX</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,94 L37,94 L37,99 L35,99 L35,94"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,101 L71,101 L71,106 L69,106 L69,101"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,165 L71,165 L71,170 L69,170 L69,165"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,115 L71,115 L71,120 L69,120 L69,115"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,115 L37,115 L37,120 L35,120 L35,115"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,212.395,160.758)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="5" font-family="Sans Serif" font-size="4" font-weight="100" font-style="normal"
+ >L</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,193 L37,193 L37,198 L35,198 L35,193"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,80 L37,80 L37,85 L35,85 L35,80"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M108,75 L112,75 L112,81 L108,81 L108,75"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,151 L71,151 L71,156 L69,156 L69,151"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,80 L71,80 L71,85 L69,85 L69,80"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,66 L37,66 L37,71 L35,71 L35,66"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M97,75 L101,75 L101,81 L97,81 L97,75"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,66 L71,66 L71,71 L69,71 L69,66"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,193 L71,193 L71,198 L69,198 L69,193"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<circle cx="97" cy="222" r="6"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,143 L37,143 L37,148 L35,148 L35,143"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,143 L71,143 L71,148 L69,148 L69,143"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,122 L37,122 L37,127 L35,127 L35,122"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,122 L71,122 L71,127 L69,127 L69,122"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<circle cx="151" cy="25" r="6"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<circle cx="17" cy="222" r="6"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,108 L37,108 L37,113 L35,113 L35,108"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,108 L71,108 L71,113 L69,113 L69,108"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,172 L71,172 L71,177 L69,177 L69,172"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M76,206 L84,206 L84,224 L76,224 L76,206"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,129 L71,129 L71,134 L69,134 L69,129"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,129 L37,129 L37,134 L35,134 L35,129"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M69,87 L71,87 L71,92 L69,92 L69,87"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,87 L37,87 L37,92 L35,92 L35,87"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M66,206 L74,206 L74,224 L66,224 L66,206"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M68,218 L72,218 L72,222 L68,222 L68,218"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M128,28 L132,28 L132,32 L128,32 L128,28"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M78,208 L82,208 L82,212 L78,212 L78,208"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M58,218 L62,218 L62,222 L58,222 L58,218"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<ellipse cx="104.5" cy="115.5" rx="5.5" ry="7.5"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M144,34 L156,34 L156,216 L144,216 L144,34"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M68,208 L72,208 L72,212 L68,212 L68,208"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M78,218 L82,218 L82,222 L78,222 L78,218"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M128,38 L132,38 L132,42 L128,42 L128,38"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M116,36 L134,36 L134,44 L116,44 L116,36"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M104,112 L105,112 L105,120 L104,120 L104,112"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M128,48 L132,48 L132,52 L128,52 L128,48"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,477.402,384.844)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >A5</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M116,26 L134,26 L134,34 L116,34 L116,26"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,457.916,384.844)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >A4</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,438.43,384.844)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >A3</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M118,38 L122,38 L122,42 L118,42 L118,38"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,379.973,384.844)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >A0</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M118,48 L122,48 L122,52 L118,52 L118,48"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,418.945,384.844)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >A2</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M118,28 L122,28 L122,32 L118,32 L118,28"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,399.459,384.844)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >A1</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M116,46 L134,46 L134,54 L116,54 L116,46"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,300.081,131.529)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >~9</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,243.572,127.632)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >12</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,282.544,143.221)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >~10</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,457.916,158.809)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >TX-&gt;1</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,477.402,158.809)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >RX&lt;-0</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,263.058,141.272)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >~11</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,319.567,115.94)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >8</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,397.51,115.94)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >4</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,341.001,115.94)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >7</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,416.996,131.529)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >~3</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,436.482,115.94)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >2</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,222.138,127.632)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >13</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,333.207,139.323)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="7" font-family="Sans Serif" font-size="5" font-weight="400" font-style="normal"
+ >DIGITAL (PWM~)</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,378.024,131.529)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >~5</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,360.487,131.529)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >~6</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,183.166,151.015)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >AREF</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,167 L153,167 L153,173 L147,173 L147,167"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-16,64 L-4,64 L-4,146 L-16,146 L-16,64"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,177 L153,177 L153,183 L147,183 L147,177"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,47 L153,47 L153,53 L147,53 L147,47"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,157 L153,157 L153,163 L147,163 L147,157"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,57 L153,57 L153,63 L147,63 L147,57"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,37 L153,37 L153,43 L147,43 L147,37"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,167 L-7,167 L-7,173 L-13,173 L-13,167"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,147 L153,147 L153,153 L147,153 L147,147"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,137 L153,137 L153,143 L147,143 L147,137"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,197 L153,197 L153,203 L147,203 L147,197"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,127 L153,127 L153,133 L147,133 L147,127"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,207 L153,207 L153,213 L147,213 L147,207"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,97 L-7,97 L-7,103 L-13,103 L-13,97"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,107 L153,107 L153,113 L147,113 L147,107"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,187 L153,187 L153,193 L147,193 L147,187"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-20,-14 C-20,-17.3137 -17.3137,-20 -14,-20 "/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M154,-20 C157.314,-20 160,-17.3137 160,-14 "/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M58,208 L62,208 L62,212 L58,212 L58,208"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,187 L-7,187 L-7,193 L-13,193 L-13,187"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,87 L-7,87 L-7,93 L-13,93 L-13,87"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,117 L153,117 L153,123 L147,123 L147,117"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,77 L153,77 L153,83 L147,83 L147,77"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,197 L-7,197 L-7,203 L-13,203 L-13,197"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,97 L153,97 L153,103 L147,103 L147,97"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,177 L-7,177 L-7,183 L-13,183 L-13,177"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,107 L-7,107 L-7,113 L-13,113 L-13,107"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,87 L153,87 L153,93 L147,93 L147,87"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M147,67 L153,67 L153,73 L147,73 L147,67"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,157 L-7,157 L-7,163 L-13,163 L-13,157"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,77 L-7,77 L-7,83 L-13,83 L-13,77"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,207 L-7,207 L-7,213 L-13,213 L-13,207"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,67 L-7,67 L-7,73 L-13,73 L-13,67"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,127 L-7,127 L-7,133 L-13,133 L-13,127"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,137 L-7,137 L-7,143 L-13,143 L-13,137"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-13,117 L-7,117 L-7,123 L-13,123 L-13,117"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-16,154 L-4,154 L-4,216 L-16,216 L-16,154"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,202.652,145.169)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >GND</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="146,135 154,135 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="non-scaling-stroke" points="113,213 113,79 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,247.47,191.935)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="9" font-family="Sans Serif" font-size="7" font-weight="400" font-style="normal"
+ >ARDUINO</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<ellipse cx="104.5" cy="100.5" rx="5.5" ry="7.5"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M104,97 L105,97 L105,105 L104,105 L104,97"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M101,115 L108,115 L108,116 L101,116 L101,115"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="4,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<ellipse vector-effect="non-scaling-stroke" cx="99.5" cy="159" rx="10.5" ry="16"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,360.487,172.449)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="12" font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+ >UNO</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M56,206 L64,206 L64,224 L56,224 L56,206"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<circle vector-effect="non-scaling-stroke" cx="150" cy="-3" r="5"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="4,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M141,-11 L158,-11 L158,5 L141,5 L141,-11"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M1,-29 L21,-29 L21,2 L1,2 L1,-29"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="1,-22 21,-22 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M6,2 L16,2 L16,3 L6,3 L6,2"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-13,-20 1,-20 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<circle cx="91" cy="78" r="1.25"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M89,75 L93,75 L93,81 L89,81 L89,75"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,206.549,180.244)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="5" font-family="Sans Serif" font-size="4" font-weight="100" font-style="normal"
+ >TX</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(-1.94858,0,0,-1.94858,341.001,295.21)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="7" font-family="Sans Serif" font-size="5" font-weight="400" font-style="normal"
+ >AIMEL</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="non-scaling-stroke" points="45,131 45,117 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M37,65 L69,65 L69,202 L37,202 L37,65"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M35,172 L37,172 L37,177 L35,177 L35,172"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="non-scaling-stroke" points="26,97 26,145 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="non-scaling-stroke" points="26,155 26,213 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="4,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<ellipse vector-effect="non-scaling-stroke" cx="72.5" cy="30" rx="4.5" ry="11"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="1,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<circle vector-effect="non-scaling-stroke" cx="12" cy="51.0001" r="10.2957"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-dasharray="4,2" stroke-dashoffset="0" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M51,-12 L67,-12 L67,-4 L51,-4 L51,-12"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,407.253,223.112)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="0" y="3" font-family="Sans Serif" font-size="2" font-weight="100" font-style="normal"
+ >MADE IN ITALY</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="22,-20 94,-20 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(0,-1.94858,1.94858,0,77.9432,380.947)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="154,-20 131,-20 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,75.0203,458.89)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,75.0203,458.89)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="#000000" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,623.545,88.6604)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M-7,2 L-9,1 L-7,0 L-7,2"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(1.94858,0,0,1.94858,623.545,88.6604)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-7,1 -5.25,1 " />
+</g>
+
+<g fill="#000000" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,623.545,88.6604)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="non-scaling-stroke" fill-rule="evenodd" d="M-9,-2.5 L-7,-3.5 L-7,-1.5 L-9,-2.5"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(1.94858,0,0,1.94858,623.545,88.6604)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-7,-2.5 -5.25,-2.5 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(1.94858,0,0,1.94858,623.545,88.6604)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-5,5 5,5 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,623.545,88.6604)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M-5,-5 L5,-5 L0,5 L-5,-5"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(1.94858,0,0,1.94858,623.545,88.6604)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="0,-20 0,20 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,638.647,72.0974)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,638.647,72.0974)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="4" y="16" font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+ >LED</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,638.647,72.0974)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(1.94858,0,0,1.94858,623.545,419.919)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="0,-10 0,-20 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(1.94858,0,0,1.94858,623.545,419.919)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="0,10 0,20 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(1.94858,0,0,1.94858,623.545,419.919)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="4,10 4,-10 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(1.94858,0,0,1.94858,623.545,419.919)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-4,10 4,10 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(1.94858,0,0,1.94858,623.545,419.919)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="4,-10 -4,-10 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(1.94858,0,0,1.94858,623.545,419.919)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-4,-10 -4,10 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,635.237,397.51)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,635.237,397.51)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="4" y="16" font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+ >Résistance</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,635.237,397.51)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(1.94858,0,0,1.94858,-740.46,-47.7402)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M700,49 L700,40 L540,40 L540,61 L540,70"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,459.865,30.203)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,459.865,30.203)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(1.94858,0,0,1.94858,-740.46,-47.7402)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M700,91 L700,100 L700,150 L700,210 L700,219"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,623.545,262.084)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-1.94858,1.94858,0,623.545,262.084)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(1.94858,0,0,1.94858,-740.46,-47.7402)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M700,261 L700,270 L540,270 L540,239 L540,230"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,459.865,478.376)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1.94858,0,0,1.94858,459.865,478.376)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans" font-size="10" font-weight="400" font-style="normal"
+>
+</g>
+</g>
+</svg>
diff --git a/content/condensateur.jpg b/content/condensateur.jpg
new file mode 100644
index 0000000..6f25b2a
--- /dev/null
+++ b/content/condensateur.jpg
Binary files differ
diff --git a/content/l293d.svg b/content/l293d.svg
new file mode 100644
index 0000000..825d29a
--- /dev/null
+++ b/content/l293d.svg
@@ -0,0 +1,851 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ 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="370.417mm"
+ height="264.583mm"
+ version="1.2"
+ id="svg5081"
+ sodipodi:docname="l293d.svg"
+ inkscape:version="0.92.1 r15371">
+ <metadata
+ id="metadata5085">
+ <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>Qt SVG Document</dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1680"
+ inkscape:window-height="1018"
+ id="namedview5083"
+ showgrid="false"
+ inkscape:zoom="0.77428503"
+ inkscape:cx="586.17238"
+ inkscape:cy="702.53794"
+ inkscape:window-x="0"
+ inkscape:window-y="30"
+ inkscape:window-maximized="0"
+ inkscape:current-layer="svg5081" />
+ <title
+ id="title4859">Qt SVG Document</title>
+ <desc
+ id="desc4861">Generated with Qt</desc>
+ <defs
+ id="defs4863" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4865"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4873"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(-6.25,0,0,-6.25,373.50159,181.25)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:3px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4871"
+ font-style="normal"
+ font-weight="100"
+ font-size="3"
+ y="4"
+ x="0"
+ xml:space="preserve">GROUND</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4877"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,165.447,110.625)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4875"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">8</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4881"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,175,418.75)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4879"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">9</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4885"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,237.5,417.28516)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4883"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">10</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4889"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,300,417.28516)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4887"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">11</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4893"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,362.5,417.28516)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4891"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">12</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4897"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,425,417.28516)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4895"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">13</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4901"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,353.692,110.77759)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4899"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">5</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4905"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,605.338,110.34271)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4903"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">1</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4909"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,413.479,110.73181)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4907"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">4</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4913"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,227.869,110.67078)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4911"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">7</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4917"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,612.5,417.28516)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4915"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">16</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4921"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,291.27,110.51056)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4919"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">6</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4925"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,476.879,110.67841)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4923"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">3</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4929"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,318.75,276.5625)">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path4927"
+ d="m 5.175,-46.43 c 0,2.6924 -2.31693,4.875 -5.175,4.875 -2.85807,0 -5.175,-2.1826 -5.175,-4.875" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4933"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,542.916,111.03699)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4931"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">2</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4937"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,487.5,412.5)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4935"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">14</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4941"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,550,417.28516)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4939"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">15</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4945"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,218.75,362)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4943"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">3A</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4949"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,281.25,363.58691)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4947"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">3Y</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4953"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,467.015,153.23792)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4951"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">1Y</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4957"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,531.25,153.23792)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4955"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">1A</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4961"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,587.5,153.23792)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4959"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">1,2EN</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4965"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,587.5,329.17529)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4963"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">VCC1</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4969"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,531.25,362)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4967"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">4A</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4973"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,468.75,363.58691)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4971"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">4Y</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4977"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(6.25,0,0,6.25,288.99841,368.91223)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:3px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4975"
+ font-style="normal"
+ font-weight="100"
+ font-size="3"
+ y="4"
+ x="0"
+ xml:space="preserve">GROUND</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4981"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,156.25,323.73096)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4979"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">3,4EN</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4985"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,156.25,155.22766)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4983"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">VCC2</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4989"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,218.75,154.2511)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4987"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">2A</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4993"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,281.25,154.2511)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4991"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">2Y</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g4997"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(6.25,0,0,6.25,249.37744,232.26318)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:8px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text4995"
+ font-style="normal"
+ font-weight="400"
+ font-size="8"
+ y="10"
+ x="0"
+ xml:space="preserve">L293D</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g5001"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,318.75,281.25)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path4999"
+ d="M -22,-47 H 20.5 V 43 H -22 v -90" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g5005"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,318.75,281.25)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline5003"
+ points="-27,-37 -22,-37 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g5009"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,318.75,281.25)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline5007"
+ points="-27,-27 -22,-27 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g5013"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,318.75,281.25)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline5011"
+ points="-27,-17 -22,-17 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g5017"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,318.75,281.25)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline5015"
+ points="-27,-7 -22,-7 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g5021"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,318.75,281.25)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline5019"
+ points="-27,3 -22,3 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g5025"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,318.75,281.25)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline5023"
+ points="-27,13 -22,13 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g5029"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,318.75,281.25)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline5027"
+ points="-27,23 -22,23 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g5033"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,318.75,281.25)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline5031"
+ points="-27,33 -22,33 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g5037"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,318.75,281.25)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline5035"
+ points="24.75,33 20.5,33 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g5041"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,318.75,281.25)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline5039"
+ points="20.5,23 24.75,23 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g5045"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,318.75,281.25)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline5043"
+ points="20.5,13 24.75,13 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g5049"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,318.75,281.25)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline5047"
+ points="20.5,3 24.75,3 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g5053"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,318.75,281.25)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline5051"
+ points="20.5,-7 24.75,-7 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g5057"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,318.75,281.25)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline5055"
+ points="20.5,-17 24.75,-17 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g5061"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,318.75,281.25)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline5059"
+ points="20.5,-27 24.75,-27 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g5065"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,318.75,281.25)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline5063"
+ points="20.5,-37 24.75,-37 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g5067"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,756.25,193.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g5073"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="matrix(0,6.25,-6.25,0,756.25,193.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g5075"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g5077"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ transform="scale(0.75)" />
+</svg>
diff --git a/content/nokia_5110.qet b/content/nokia_5110.qet
new file mode 100644
index 0000000..c863054
--- /dev/null
+++ b/content/nokia_5110.qet
@@ -0,0 +1,851 @@
+<project folioSheetQuantity="0" version="0.60" title="">
+ <properties/>
+ <newdiagrams>
+ <border cols="17" rows="8" rowsize="80" displaycols="true" colsize="60" displayrows="true"/>
+ <inset displayAt="bottom" version="" auto_page_num="" author="" filename="" indexrev="" title="" locmach="" date="null" machine="" folio="%id/%total"/>
+ <conductors num="_" numsize="7" displaytext="1" vertirotatetext="270" condsize="1" horizrotatetext="0" function="" onetextperfolio="0" formula="" type="multi" tension-protocol=""/>
+ <report label="%f-%l%c"/>
+ <xrefs>
+ <xref powerprefix="" snapto="label" switchprefix="" slave_label="(%f-%l%c)" displayhas="cross" master_label="%f-%l%c" type="commutator" offset="0" delayprefix="" showpowerctc="false"/>
+ <xref powerprefix="" snapto="label" switchprefix="" slave_label="(%f-%l%c)" displayhas="cross" master_label="%f-%l%c" type="protection" offset="0" delayprefix="" showpowerctc="false"/>
+ <xref powerprefix="" snapto="label" switchprefix="" slave_label="(%f-%l%c)" displayhas="cross" master_label="%f-%l%c" type="coil" offset="0" delayprefix="" showpowerctc="false"/>
+ </xrefs>
+ <conductors_autonums freeze_new_conductors="false" current_autonum=""/>
+ <folio_autonums/>
+ <element_autonums freeze_new_elements="false" current_autonum=""/>
+ </newdiagrams>
+ <diagram colsize="60" displayAt="bottom" freezeNewConductor="false" displaycols="true" displayrows="true" folio="%id/%total" cols="17" rows="8" version="0.60" order="1" auto_page_num="" rowsize="80" locmach="" filename="" date="null" freezeNewElement="false" height="660" machine="" author="" title="" indexrev="">
+ <defaultconductor num="_" numsize="7" displaytext="1" vertirotatetext="270" condsize="1" horizrotatetext="0" function="" onetextperfolio="0" formula="" type="multi" tension-protocol=""/>
+ <elements>
+ <element freezeLabel="false" orientation="3" uuid="{2341edaf-12f1-4f28-bc21-7b914c54e222}" type="embed://import/10_electric/20_manufacturers_articles/arduino/arduino_uno.elmt" prefix="" y="570" x="530">
+ <terminals>
+ <terminal id="0" name="_" orientation="1" number="_" y="210" x="146" nameHidden="0"/>
+ <terminal id="1" name="_" orientation="1" number="_" y="50" x="146" nameHidden="0"/>
+ <terminal id="2" name="_" orientation="1" number="_" y="60" x="146" nameHidden="0"/>
+ <terminal id="3" name="_" orientation="1" number="_" y="70" x="146" nameHidden="0"/>
+ <terminal id="4" name="_" orientation="1" number="_" y="40" x="146" nameHidden="0"/>
+ <terminal id="5" name="_" orientation="3" number="_" y="80" x="-6" nameHidden="0"/>
+ <terminal id="6" name="_" orientation="3" number="_" y="90" x="-6" nameHidden="0"/>
+ <terminal id="7" name="_" orientation="3" number="_" y="100" x="-6" nameHidden="0"/>
+ <terminal id="8" name="_" orientation="3" number="_" y="110" x="-6" nameHidden="0"/>
+ <terminal id="9" name="_" orientation="3" number="_" y="120" x="-6" nameHidden="0"/>
+ <terminal id="10" name="_" orientation="3" number="_" y="170" x="-6" nameHidden="0"/>
+ <terminal id="11" name="_" orientation="3" number="_" y="180" x="-6" nameHidden="0"/>
+ <terminal id="12" name="_" orientation="3" number="_" y="190" x="-6" nameHidden="0"/>
+ <terminal id="13" name="_" orientation="3" number="_" y="200" x="-6" nameHidden="0"/>
+ <terminal id="14" name="_" orientation="3" number="_" y="210" x="-6" nameHidden="0"/>
+ <terminal id="15" name="_" orientation="1" number="_" y="200" x="146" nameHidden="0"/>
+ <terminal id="16" name="_" orientation="1" number="_" y="190" x="146" nameHidden="0"/>
+ <terminal id="17" name="_" orientation="1" number="_" y="180" x="146" nameHidden="0"/>
+ <terminal id="18" name="_" orientation="3" number="_" y="70" x="-6" nameHidden="0"/>
+ <terminal id="19" name="_" orientation="3" number="_" y="160" x="-6" nameHidden="0"/>
+ <terminal id="20" name="_" orientation="1" number="_" y="130" x="146" nameHidden="0"/>
+ <terminal id="21" name="_" orientation="1" number="_" y="140" x="146" nameHidden="0"/>
+ <terminal id="22" name="_" orientation="1" number="_" y="150" x="146" nameHidden="0"/>
+ <terminal id="23" name="_" orientation="1" number="_" y="160" x="146" nameHidden="0"/>
+ <terminal id="24" name="_" orientation="1" number="_" y="170" x="146" nameHidden="0"/>
+ <terminal id="25" name="_" orientation="1" number="_" y="80" x="146" nameHidden="0"/>
+ <terminal id="26" name="_" orientation="1" number="_" y="90" x="146" nameHidden="0"/>
+ <terminal id="27" name="_" orientation="1" number="_" y="120" x="146" nameHidden="0"/>
+ <terminal id="28" name="_" orientation="1" number="_" y="110" x="146" nameHidden="0"/>
+ <terminal id="29" name="_" orientation="1" number="_" y="100" x="146" nameHidden="0"/>
+ <terminal id="30" name="_" orientation="3" number="_" y="130" x="-6" nameHidden="0"/>
+ <terminal id="31" name="_" orientation="3" number="_" y="140" x="-6" nameHidden="0"/>
+ <terminal id="32" name="_" orientation="0" number="_" y="-16" x="10" nameHidden="0"/>
+ <terminal id="33" name="_" orientation="0" number="_" y="-16" x="110" nameHidden="0"/>
+ </terminals>
+ <inputs>
+ <input text="3.3V" y="104" x="-3"/>
+ <input text="3.3V" y="104" x="-3"/>
+ <input text="GND" y="124" x="-3"/>
+ <input text="GND" y="124" x="-3"/>
+ <input text="GND" y="133" x="-3"/>
+ <input text="GND" y="133" x="-3"/>
+ <input text="Vin" y="144" x="-2"/>
+ <input text="Vin" y="144" x="-2"/>
+ <input text="ANALOG IN" y="169" x="17"/>
+ <input text="ANALOG IN" y="169" x="17"/>
+ <input text="POWER" y="112" x="18"/>
+ <input text="POWER" y="112" x="18"/>
+ <input text="RESET" y="93" x="-3"/>
+ <input text="RESET" y="93" x="-3"/>
+ <input text="5V" y="114" x="-3"/>
+ <input text="5V" y="114" x="-3"/>
+ <input text="IO ref" y="84" x="-3"/>
+ <input text="IO ref" y="84" x="-3"/>
+ <input text="RX" y="66" x="90"/>
+ <input text="RX" y="66" x="90"/>
+ <input text="L" y="69" x="108"/>
+ <input text="L" y="69" x="108"/>
+ <input text="A5" y="214" x="-2"/>
+ <input text="A5" y="214" x="-2"/>
+ <input text="A4" y="204" x="-2"/>
+ <input text="A4" y="204" x="-2"/>
+ <input text="A3" y="194" x="-2"/>
+ <input text="A3" y="194" x="-2"/>
+ <input text="A0" y="164" x="-2"/>
+ <input text="A0" y="164" x="-2"/>
+ <input text="A2" y="184" x="-2"/>
+ <input text="A2" y="184" x="-2"/>
+ <input text="A1" y="174" x="-2"/>
+ <input text="A1" y="174" x="-2"/>
+ <input text="~9" y="123" x="128"/>
+ <input text="~9" y="123" x="128"/>
+ <input text="12" y="94" x="130"/>
+ <input text="12" y="94" x="130"/>
+ <input text="~10" y="114" x="122"/>
+ <input text="~10" y="114" x="122"/>
+ <input text="TX->1" y="204" x="114"/>
+ <input text="TX->1" y="204" x="114"/>
+ <input text="RX&lt;-0" y="214" x="114"/>
+ <input text="RX&lt;-0" y="214" x="114"/>
+ <input text="~11" y="104" x="123"/>
+ <input text="~11" y="104" x="123"/>
+ <input text="8" y="133" x="136"/>
+ <input text="8" y="133" x="136"/>
+ <input text="4" y="173" x="136"/>
+ <input text="4" y="173" x="136"/>
+ <input text="7" y="144" x="136"/>
+ <input text="7" y="144" x="136"/>
+ <input text="~3" y="183" x="128"/>
+ <input text="~3" y="183" x="128"/>
+ <input text="2" y="193" x="136"/>
+ <input text="2" y="193" x="136"/>
+ <input text="13" y="83" x="130"/>
+ <input text="13" y="83" x="130"/>
+ <input text="DIGITAL (PWM~)" y="131" x="117"/>
+ <input text="DIGITAL (PWM~)" y="131" x="117"/>
+ <input text="~5" y="163" x="128"/>
+ <input text="~5" y="163" x="128"/>
+ <input text="~6" y="154" x="128"/>
+ <input text="~6" y="154" x="128"/>
+ <input text="AREF" y="63" x="118"/>
+ <input text="AREF" y="63" x="118"/>
+ <input text="GND" y="73" x="121"/>
+ <input text="GND" y="73" x="121"/>
+ <input text="ARDUINO" y="87" x="88"/>
+ <input text="ARDUINO" y="87" x="88"/>
+ <input text="UNO" y="145" x="95"/>
+ <input text="UNO" y="145" x="95"/>
+ <input text="TX" y="66" x="98"/>
+ <input text="TX" y="66" x="98"/>
+ <input text="AIMEL" y="135" x="51"/>
+ <input text="AIMEL" y="135" x="51"/>
+ <input text="MADE IN ITALY" y="169" x="78"/>
+ <input text="MADE IN ITALY" y="169" x="78"/>
+ <input userx="-50" usery="10" text="" y="10" x="-40"/>
+ </inputs>
+ <elementInformations>
+ <elementInformation name="formula" show="0"></elementInformation>
+ <elementInformation name="label" show="1"></elementInformation>
+ </elementInformations>
+ </element>
+ <element freezeLabel="false" orientation="3" uuid="{e725eb49-1363-43ce-9a5f-162b68930bda}" type="embed://import/nokia_5110.elmt" prefix="" y="270" x="570">
+ <terminals>
+ <terminal id="34" name="_" orientation="2" number="_" y="6" x="-35" nameHidden="0"/>
+ <terminal id="35" name="_" orientation="2" number="_" y="6" x="35" nameHidden="0"/>
+ <terminal id="36" name="_" orientation="2" number="_" y="6" x="-25" nameHidden="0"/>
+ <terminal id="37" name="_" orientation="2" number="_" y="6" x="-5" nameHidden="0"/>
+ <terminal id="38" name="_" orientation="2" number="_" y="6" x="25" nameHidden="0"/>
+ <terminal id="39" name="_" orientation="2" number="_" y="6" x="5" nameHidden="0"/>
+ <terminal id="40" name="_" orientation="2" number="_" y="6" x="15" nameHidden="0"/>
+ <terminal id="41" name="_" orientation="2" number="_" y="6" x="-15" nameHidden="0"/>
+ </terminals>
+ <inputs>
+ <input userx="-40" usery="-80" text="Nokia 5110" y="35" x="-95"/>
+ </inputs>
+ <elementInformations>
+ <elementInformation name="formula" show="0">Nokia 5110</elementInformation>
+ <elementInformation name="label" show="1">Nokia 5110</elementInformation>
+ </elementInformations>
+ </element>
+ <element freezeLabel="false" orientation="0" uuid="{f8abe141-b4f8-410b-a9a5-fe3dc4ad71b2}" type="embed://import/74hc4050.elmt" prefix="" y="320" x="780">
+ <terminals>
+ <terminal id="42" name="_" orientation="3" number="_" y="30" x="-26" nameHidden="0"/>
+ <terminal id="43" name="_" orientation="3" number="_" y="-10" x="-26" nameHidden="0"/>
+ <terminal id="44" name="_" orientation="1" number="_" y="-20" x="27" nameHidden="0"/>
+ <terminal id="45" name="_" orientation="1" number="_" y="-10" x="26" nameHidden="0"/>
+ <terminal id="46" name="_" orientation="3" number="_" y="-30" x="-26" nameHidden="0"/>
+ <terminal id="47" name="_" orientation="3" number="_" y="0" x="-26" nameHidden="0"/>
+ <terminal id="48" name="_" orientation="3" number="_" y="-20" x="-27" nameHidden="0"/>
+ <terminal id="49" name="_" orientation="1" number="_" y="10" x="26" nameHidden="0"/>
+ <terminal id="50" name="_" orientation="1" number="_" y="20" x="26" nameHidden="0"/>
+ <terminal id="51" name="_" orientation="1" number="_" y="30" x="26" nameHidden="0"/>
+ <terminal id="52" name="_" orientation="1" number="_" y="40" x="26" nameHidden="0"/>
+ <terminal id="53" name="_" orientation="3" number="_" y="10" x="-26" nameHidden="0"/>
+ <terminal id="54" name="_" orientation="3" number="_" y="40" x="-26" nameHidden="0"/>
+ <terminal id="55" name="_" orientation="3" number="_" y="20" x="-27" nameHidden="0"/>
+ </terminals>
+ <inputs>
+ <input text="3A" y="21" x="-12"/>
+ <input text="3A" y="21" x="-12"/>
+ <input text="3Y" y="31" x="-12"/>
+ <input text="3Y" y="31" x="-12"/>
+ <input text="5Y" y="12" x="2"/>
+ <input text="5Y" y="12" x="2"/>
+ <input text="1Y" y="-9" x="-12"/>
+ <input text="1Y" y="-9" x="-12"/>
+ <input text="5A" y="21" x="2"/>
+ <input text="5A" y="21" x="2"/>
+ <input text="2Y" y="11" x="-12"/>
+ <input text="2Y" y="11" x="-12"/>
+ <input text="6A" y="-9" x="2"/>
+ <input text="6A" y="-9" x="2"/>
+ <input text="2A" y="1" x="-12"/>
+ <input text="2A" y="1" x="-12"/>
+ <input text="4Y" y="31" x="2"/>
+ <input text="4Y" y="31" x="2"/>
+ <input text="6Y" y="-19" x="2"/>
+ <input text="6Y" y="-19" x="2"/>
+ <input text="4A" y="41" x="2"/>
+ <input text="4A" y="41" x="2"/>
+ <input text="9" y="41.67" x="13"/>
+ <input text="9" y="41.67" x="13"/>
+ <input text="10" y="31.67" x="10"/>
+ <input text="10" y="31.67" x="10"/>
+ <input text="11" y="21.67" x="10"/>
+ <input text="11" y="21.67" x="10"/>
+ <input text="12" y="11.67" x="10"/>
+ <input text="12" y="11.67" x="10"/>
+ <input text="6" y="21.67" x="-18"/>
+ <input text="6" y="21.67" x="-18"/>
+ <input text="2" y="-18.3333" x="-19"/>
+ <input text="2" y="-18.3333" x="-19"/>
+ <input text="5" y="11.67" x="-18"/>
+ <input text="5" y="11.67" x="-18"/>
+ <input text="1" y="-28.33" x="-19"/>
+ <input text="1" y="-28.33" x="-19"/>
+ <input text="8" y="41.67" x="-18"/>
+ <input text="8" y="41.67" x="-18"/>
+ <input text="15" y="-18.3333" x="10"/>
+ <input text="15" y="-18.3333" x="10"/>
+ <input text="7" y="31.67" x="-18"/>
+ <input text="7" y="31.67" x="-18"/>
+ <input text="4" y="1.67" x="-18.5"/>
+ <input text="4" y="1.67" x="-18.5"/>
+ <input text="NC" y="-27" x="10"/>
+ <input text="NC" y="-27" x="10"/>
+ <input text="3" y="-8.67" x="-19"/>
+ <input text="3" y="-8.67" x="-19"/>
+ <input userx="-40" usery="-50" text="74HC4050" y="50" x="-40"/>
+ <input text="NC" y="1.67" x="10"/>
+ <input text="NC" y="1.67" x="10"/>
+ <input text="14" y="-8.67" x="10.5"/>
+ <input text="14" y="-8.67" x="10.5"/>
+ <input text="GND" y="40" x="-12"/>
+ <input text="GND" y="40" x="-12"/>
+ <input text="VCC" y="-29" x="-13"/>
+ <input text="VCC" y="-29" x="-13"/>
+ <input text="1A" y="-19" x="-13"/>
+ <input text="1A" y="-19" x="-13"/>
+ </inputs>
+ <elementInformations>
+ <elementInformation name="formula" show="0">74HC4050</elementInformation>
+ <elementInformation name="label" show="1">74HC4050</elementInformation>
+ </elementInformations>
+ </element>
+ </elements>
+ <conductors>
+ <conductor usery="250" tension-protocol="" freezeLabel="false" x="0" vertirotatetext="270" formula="DN(MOSI)" color="#8f5902" onetextperfolio="0" condsize="1" type="multi" displaytext="1" horizrotatetext="0" y="0" terminal1="51" num="DN(MOSI)" numsize="7" function="" userx="660" terminal2="40">
+ <sequentialNumbers/>
+ </conductor>
+ <conductor usery="370" tension-protocol="" freezeLabel="false" x="0" vertirotatetext="270" formula="" color="#40bf73" onetextperfolio="0" condsize="1" type="multi" displaytext="1" horizrotatetext="0" y="0" terminal1="50" num="SLCK" numsize="7" function="" userx="610" terminal2="25">
+ <segment length="9" orientation="horizontal"/>
+ <segment length="11" orientation="horizontal"/>
+ <segment length="30" orientation="vertical"/>
+ <segment length="-220" orientation="horizontal"/>
+ <segment length="41" orientation="vertical"/>
+ <segment length="9" orientation="vertical"/>
+ <sequentialNumbers/>
+ </conductor>
+ <conductor rotation="270" usery="300" tension-protocol="" freezeLabel="false" x="0" vertirotatetext="270" formula="" color="#40bf73" onetextperfolio="0" condsize="1" type="multi" displaytext="1" horizrotatetext="0" y="0" terminal1="49" num="SCLK" numsize="7" function="" userx="830" terminal2="38">
+ <segment length="29.3333" orientation="horizontal"/>
+ <segment length="10.6667" orientation="horizontal"/>
+ <segment length="-85" orientation="vertical"/>
+ <segment length="-270" orientation="horizontal"/>
+ <segment length="0" orientation="horizontal"/>
+ <sequentialNumbers/>
+ </conductor>
+ <conductor rotation="270" usery="300" tension-protocol="" freezeLabel="false" x="0" vertirotatetext="270" formula="D/C" color="#8f5902" onetextperfolio="0" condsize="1" type="multi" displaytext="1" horizrotatetext="0" y="0" terminal1="42" num="D/C" numsize="7" function="" userx="640" terminal2="39">
+ <segment length="0" orientation="horizontal"/>
+ <segment length="-105" orientation="horizontal"/>
+ <segment length="-85" orientation="vertical"/>
+ <segment length="-65" orientation="horizontal"/>
+ <segment length="0" orientation="horizontal"/>
+ <sequentialNumbers/>
+ </conductor>
+ <conductor rotation="0" usery="320" tension-protocol="" freezeLabel="false" x="0" vertirotatetext="270" formula="RST" color="#204a87" onetextperfolio="0" condsize="1" type="multi" displaytext="1" horizrotatetext="0" y="0" terminal1="22" num="RST" numsize="7" function="" userx="680" terminal2="47">
+ <sequentialNumbers/>
+ </conductor>
+ <conductor usery="400" tension-protocol="" freezeLabel="false" x="0" vertirotatetext="270" formula="LED" color="#a640bf" onetextperfolio="0" condsize="1" type="multi" displaytext="1" horizrotatetext="0" y="0" terminal1="45" num="LED" numsize="7" function="" userx="810" terminal2="27">
+ <segment length="22.3333" orientation="horizontal"/>
+ <segment length="7.66667" orientation="horizontal"/>
+ <segment length="86.6667" orientation="vertical"/>
+ <segment length="-190" orientation="horizontal"/>
+ <segment length="7.66667" orientation="vertical"/>
+ <segment length="15.6666" orientation="vertical"/>
+ <sequentialNumbers/>
+ </conductor>
+ <conductor num="D/C" numsize="7" terminal2="55" displaytext="1" vertirotatetext="270" color="#8f5902" freezeLabel="false" condsize="1" horizrotatetext="0" terminal1="23" function="" onetextperfolio="0" formula="D/C" type="multi" y="0" x="0" tension-protocol="">
+ <sequentialNumbers/>
+ </conductor>
+ <conductor usery="380" tension-protocol="" freezeLabel="false" x="0" vertirotatetext="270" formula="SCE" color="#4e9a06" onetextperfolio="0" condsize="1" type="multi" displaytext="1" horizrotatetext="0" y="0" terminal1="21" num="SCE" numsize="7" function="" userx="650" terminal2="48">
+ <sequentialNumbers/>
+ </conductor>
+ <conductor usery="450" tension-protocol="" freezeLabel="false" x="0" vertirotatetext="270" formula="3.3V" color="#cc0000" onetextperfolio="0" condsize="1" type="multi" displaytext="1" horizrotatetext="0" y="0" terminal1="7" num="3.3V" numsize="7" function="" userx="750" terminal2="46">
+ <segment length="9" orientation="vertical"/>
+ <segment length="11" orientation="vertical"/>
+ <segment length="110" orientation="horizontal"/>
+ <segment length="-310" orientation="vertical"/>
+ <segment length="10" orientation="horizontal"/>
+ <segment length="0" orientation="horizontal"/>
+ <sequentialNumbers/>
+ </conductor>
+ <conductor usery="340" tension-protocol="" freezeLabel="false" x="0" vertirotatetext="270" formula="GND" onetextperfolio="0" condsize="1" type="multi" displaytext="1" horizrotatetext="0" y="0" terminal1="54" num="GND" numsize="7" function="" userx="620" terminal2="3">
+ <segment length="0" orientation="horizontal"/>
+ <segment length="0" orientation="horizontal"/>
+ <segment length="-150" orientation="horizontal"/>
+ <segment length="46" orientation="vertical"/>
+ <segment length="14" orientation="vertical"/>
+ <sequentialNumbers/>
+ </conductor>
+ <conductor rotation="0" usery="310" tension-protocol="" freezeLabel="false" x="0" vertirotatetext="270" formula="SCE" color="#4e9a06" onetextperfolio="0" condsize="1" type="multi" displaytext="1" horizrotatetext="0" y="0" terminal1="43" num="SCE" numsize="7" function="" userx="610" terminal2="41">
+ <segment length="0" orientation="horizontal"/>
+ <segment length="-145" orientation="horizontal"/>
+ <segment length="-25" orientation="vertical"/>
+ <segment length="-25" orientation="horizontal"/>
+ <segment length="0" orientation="horizontal"/>
+ <sequentialNumbers/>
+ </conductor>
+ <conductor usery="400" tension-protocol="" freezeLabel="false" x="0" vertirotatetext="270" formula="3.3V" color="#cc0000" onetextperfolio="0" condsize="1" type="multi" displaytext="1" horizrotatetext="0" y="0" terminal1="34" num="3.3V" numsize="7" function="" userx="560" terminal2="7">
+ <segment length="4" orientation="horizontal"/>
+ <segment length="295" orientation="vertical"/>
+ <segment length="46" orientation="horizontal"/>
+ <segment length="-11" orientation="vertical"/>
+ <segment length="-9" orientation="vertical"/>
+ <sequentialNumbers/>
+ </conductor>
+ <conductor usery="360" tension-protocol="" freezeLabel="false" x="0" vertirotatetext="270" formula="GND" onetextperfolio="0" condsize="1" type="multi" displaytext="1" horizrotatetext="0" y="0" terminal1="36" num="GND" numsize="7" function="" userx="580" terminal2="3">
+ <sequentialNumbers/>
+ </conductor>
+ <conductor usery="260" tension-protocol="" freezeLabel="false" x="0" vertirotatetext="270" formula="RST" color="#204a87" onetextperfolio="0" condsize="1" type="multi" displaytext="1" horizrotatetext="0" y="0" terminal1="53" num="RST" numsize="7" function="" userx="710" terminal2="37">
+ <segment length="0" orientation="horizontal"/>
+ <segment length="-15" orientation="horizontal"/>
+ <segment length="-55" orientation="vertical"/>
+ <segment length="-155" orientation="horizontal"/>
+ <segment length="0" orientation="horizontal"/>
+ <sequentialNumbers/>
+ </conductor>
+ <conductor usery="220" tension-protocol="" freezeLabel="false" x="0" vertirotatetext="270" formula="" color="#a640bf" onetextperfolio="0" condsize="1" type="multi" displaytext="1" horizrotatetext="0" y="0" terminal1="44" num="LED" numsize="7" function="" userx="780" terminal2="35">
+ <segment length="9" orientation="horizontal"/>
+ <segment length="10" orientation="horizontal"/>
+ <segment length="-65" orientation="vertical"/>
+ <segment length="-241" orientation="horizontal"/>
+ <segment length="-9" orientation="horizontal"/>
+ <sequentialNumbers/>
+ </conductor>
+ <conductor usery="370" tension-protocol="" freezeLabel="false" x="0" vertirotatetext="270" formula="DN(MOSI)" color="#8f5902" onetextperfolio="0" condsize="1" type="multi" displaytext="1" horizrotatetext="0" y="0" terminal1="29" num="DN(MOSI)" numsize="7" function="" userx="750" terminal2="52">
+ <segment length="-9" orientation="vertical"/>
+ <segment length="-21" orientation="vertical"/>
+ <segment length="189" orientation="horizontal"/>
+ <segment length="-30" orientation="vertical"/>
+ <segment length="-9" orientation="horizontal"/>
+ <sequentialNumbers/>
+ </conductor>
+ </conductors>
+ </diagram>
+ <collection>
+ <category name="import">
+ <names>
+ <name lang="en">Imported elements</name>
+ <name lang="pt">elementos importados</name>
+ <name lang="ro">Elemente importate</name>
+ <name lang="it">Elementi importati</name>
+ <name lang="pl">Elementy importowane</name>
+ <name lang="nl">Elementen geïmporteerd</name>
+ <name lang="hr">Uvezeni elementi</name>
+ <name lang="fr">Éléments importés</name>
+ <name lang="el">Εισηγμένα στοιχεία</name>
+ <name lang="cs">Zavedené prvky</name>
+ <name lang="ca">Elements importats</name>
+ <name lang="ru">Импортированные элементы</name>
+ <name lang="de">Importierte elemente</name>
+ <name lang="es">Elementos importados</name>
+ </names>
+ <category name="10_electric">
+ <names>
+ <name lang="en">Electric</name>
+ <name lang="it">Elettrica</name>
+ <name lang="pl">Elektrotechnika</name>
+ <name lang="nl">Elektrotechniek</name>
+ <name lang="el">Ηλεκτρικά</name>
+ <name lang="fr">Electrique</name>
+ <name lang="cs">Elektrotechnika</name>
+ <name lang="ru">Электротехника</name>
+ <name lang="de">Elektrik</name>
+ <name lang="da">Elektrisk</name>
+ <name lang="es">Eléctrica</name>
+ </names>
+ <category name="10_allpole">
+ <names>
+ <name lang="en">All-pole</name>
+ <name lang="it">Multifilare</name>
+ <name lang="pl">Schematy wieloliniowe</name>
+ <name lang="nl">Veel polig</name>
+ <name lang="el">Πολυγραμμικό</name>
+ <name lang="fr">Multifilaire</name>
+ <name lang="cs">Vícežilový</name>
+ <name lang="ru">Многополюсные</name>
+ <name lang="de">Allpolig</name>
+ <name lang="da">Flere ledere</name>
+ <name lang="es">Multifilar</name>
+ </names>
+ <category name="395_electronics&amp;semiconductors">
+ <names>
+ <name lang="en">Electronics and semiconductors</name>
+ <name lang="it">Elettronica e semiconduttori</name>
+ <name lang="pl">Elektronika i półprzewodniki</name>
+ <name lang="nl">Electronica en halfgeleiders</name>
+ <name lang="fr">Electronique et semi-conducteurs</name>
+ <name lang="el">Ηλεκτρονικά και ημιαγωγοί</name>
+ <name lang="ru">Электроника и полупроводники</name>
+ <name lang="de">Elektronik und Halbleiter</name>
+ <name lang="es">Electrónica y semiconductores</name>
+ </names>
+ <category name="31_integrated_circuits">
+ <names>
+ <name lang="en">Integrated circuits</name>
+ <name lang="it">Circuiti integrati</name>
+ <name lang="pl">Układy scalone</name>
+ <name lang="nl">Geintegreerde schakelingen IC</name>
+ <name lang="el">Ολοκληρωμένα κυκλώματα</name>
+ <name lang="fr">Circuits integrés</name>
+ <name lang="cs">Integrované obvody</name>
+ <name lang="ru">Микросхемы</name>
+ <name lang="ar">دوائر مدمجة</name>
+ <name lang="de">Integrierte Schaltungen</name>
+ </names>
+ <element name="ic16n.elmt">
+ <definition height="190" width="80" version="0.3" hotspot_y="50" orientation="ydyy" type="element" hotspot_x="40">
+ <uuid uuid="{741836C9-1A52-40F2-B4EC-4ED935E6E178}"/>
+ <names>
+ <name lang="ar">دائرة مدمجة 16 دبوس, مُرقّمة</name>
+ <name lang="de">Integrierte Schaltung 16 Anschlüsse nummeriert</name>
+ <name lang="el">Ολοκληρωμένο κύκλωμα 16 ακροδεκτών, αριθμημένο</name>
+ <name lang="en">Integrated Circuit, 16 pins, numbered</name>
+ <name lang="it">Circuito integrato, 16 pin numerati</name>
+ <name lang="fr">Circuit integré 16 broches , numerotées</name>
+ <name lang="pl">Układ scalony, 16 nóżek (ponumerowany)</name>
+ <name lang="cs">Integrovaný obvod, 16 očíslovaných kolíků</name>
+ <name lang="nl">IC 16 pin nummers</name>
+ </names>
+ <informations>Author: The QElectroTech team
+License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
+ <description>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" antialias="false" end1="none" length1="1.5" y1="0" x2="-21" end2="none" y2="0"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" antialias="false" end1="none" length1="1.5" y1="80" x2="-21" end2="none" y2="80"/>
+ <text text="9" size="5" y="100.667" x="13"/>
+ <text text="10" size="5" y="80.6667" x="10"/>
+ <text text="11" size="5" y="60.6667" x="10"/>
+ <text text="12" size="5" y="40.6667" x="10"/>
+ <text text="6" size="5" y="60.6667" x="-18"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" antialias="false" end1="none" length1="1.5" y1="100" x2="-21" end2="none" y2="100"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="21" antialias="false" end1="none" length1="1.5" y1="40" x2="30" end2="none" y2="40"/>
+ <text text="2" size="5" y="-18.3333" x="-19"/>
+ <text text="5" size="5" y="40.6667" x="-18"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="21" antialias="false" end1="none" length1="1.5" y1="60" x2="30" end2="none" y2="60"/>
+ <text text="1" size="5" y="-38.3333" x="-19"/>
+ <text text="8" size="5" y="100.667" x="-18"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" antialias="false" end1="none" length1="1.5" y1="60" x2="-21" end2="none" y2="60"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="21" antialias="false" end1="none" length1="1.5" y1="80" x2="30" end2="none" y2="80"/>
+ <text text="15" size="5" y="-18.3333" x="10"/>
+ <text text="7" size="5" y="80.6667" x="-18"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" antialias="false" end1="none" length1="1.5" y1="40" x2="-21" end2="none" y2="40"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="21" antialias="false" end1="none" length1="1.5" y1="100" x2="30" end2="none" y2="100"/>
+ <text text="4" size="5" y="21.6667" x="-18.5"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" antialias="false" end1="none" length1="1.5" y1="20" x2="-21" end2="none" y2="20"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" antialias="false" end1="none" length1="1.5" y1="-20" x2="-21" end2="none" y2="-20"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" antialias="false" end1="none" length1="1.5" y1="-40" x2="-21" end2="none" y2="-40"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="21" antialias="false" end1="none" length1="1.5" y1="-40" x2="30" end2="none" y2="-40"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="21" antialias="false" end1="none" length1="1.5" y1="-20" x2="30" end2="none" y2="-20"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="21" antialias="false" end1="none" length1="1.5" y1="0" x2="30" end2="none" y2="0"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="21" antialias="false" end1="none" length1="1.5" y1="20" x2="30" end2="none" y2="20"/>
+ <arc height="5" angle="-180" width="5" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="true" start="0" y="-47" x="-2.5"/>
+ <text text="16" size="5" y="-38.3333" x="10"/>
+ <text text="3" size="5" y="1.6667" x="-19"/>
+ <input tagg="label" text="_" size="9" y="122" rotate="true" x="-28.5"/>
+ <text text="13" size="5" y="21.6667" x="10"/>
+ <rect height="150" width="40" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="-45" x="-20"/>
+ <text text="14" size="5" y="1.66667" x="10.5"/>
+ <terminal orientation="e" y="-40" x="31"/>
+ <terminal orientation="e" y="-20" x="31"/>
+ <terminal orientation="e" y="0" x="31"/>
+ <terminal orientation="e" y="20" x="31"/>
+ <terminal orientation="w" y="-40" x="-31"/>
+ <terminal orientation="w" y="20" x="-31"/>
+ <terminal orientation="w" y="-20" x="-31"/>
+ <terminal orientation="e" y="40" x="31"/>
+ <terminal orientation="e" y="60" x="31"/>
+ <terminal orientation="e" y="80" x="31"/>
+ <terminal orientation="e" y="100" x="31"/>
+ <terminal orientation="w" y="40" x="-31"/>
+ <terminal orientation="w" y="100" x="-31"/>
+ <terminal orientation="w" y="60" x="-31"/>
+ <terminal orientation="w" y="80" x="-31"/>
+ <terminal orientation="w" y="0" x="-31"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ </category>
+ </category>
+ <category name="20_manufacturers_articles">
+ <names>
+ <name lang="en">Manufacturers articles</name>
+ <name lang="it">Marchi produttori</name>
+ <name lang="pl">Urządzenia producentów</name>
+ <name lang="el">Κατασκευαστές υλικού</name>
+ <name lang="fr">Articles constructeurs</name>
+ <name lang="ru">База изделий производителей</name>
+ <name lang="de">Herstellerartikel</name>
+ <name lang="da">Producent produkter</name>
+ <name lang="es">Articulos de fabricantes</name>
+ </names>
+ <category name="arduino">
+ <names>
+ <name lang="en">Arduino</name>
+ <name lang="cs">Arduino</name>
+ </names>
+ <element name="arduino_uno.elmt">
+ <definition height="270" width="190" version="0.5" hotspot_y="35" orientation="dyyy" link_type="simple" type="element" hotspot_x="25">
+ <uuid uuid="{adc899b2-6c00-4fcf-a605-6427cc667d01}"/>
+ <names>
+ <name lang="pl">Arduino Uno</name>
+ <name lang="nl">Arduino Uno</name>
+ <name lang="fr">Arduino Uno</name>
+ <name lang="en">Arduino Uno</name>
+ <name lang="cs">Arduino Uno</name>
+ <name lang="it">Arduino Uno</name>
+ </names>
+ <informations>ezza</informations>
+ <description>
+ <rect height="45" width="35" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="-30" x="95"/>
+ <circle style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" diameter="12" y="19" x="-17"/>
+ <text text="3.3V" size="7" y="104" x="-3"/>
+ <text text="GND" size="6" y="124" x="-3"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="94" x="69"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="136" x="35"/>
+ <text text="GND" size="6" y="133" x="-3"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="158" x="35"/>
+ <text text="Vin" size="7" y="144" x="-2"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="186" x="35"/>
+ <text text="ANALOG IN" size="5" rotation="90" y="169" x="17"/>
+ <text text="POWER" size="5" rotation="90" y="112" x="18"/>
+ <text text="RESET" size="6" y="93" x="-3"/>
+ <text text="5V" size="7" y="114" x="-3"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="158" x="69"/>
+ <text text="IO ref" size="7" y="84" x="-3"/>
+ <circle style="line-style:dotted;line-weight:thin;filling:none;color:black" antialias="true" diameter="20.5913" y="13.7044" x="1.7044"/>
+ <polygon closed="false" x8="160" antialias="false" x1="-20" x7="160" style="line-style:normal;line-weight:normal;filling:none;color:black" x4="0" y9="-14" x6="120" y3="223" y1="-14" y8="-14" y2="221" x5="105" y6="220" x3="-10" y7="220" y4="230" y5="230" x9="160" x2="-20"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="179" x="35"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="165" x="35"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="73" x="35"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="179" x="69"/>
+ <circle style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" diameter="2.5" y="76.75" x="97.75"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="136" x="69"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="73" x="69"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="186" x="69"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="101" x="35"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="151" x="35"/>
+ <circle style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" diameter="2.5" y="76.75" x="108.75"/>
+ <text text="RX" size="4" rotation="90" y="66" x="90"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="94" x="35"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="101" x="69"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="165" x="69"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="115" x="69"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="115" x="35"/>
+ <text text="L" size="4" rotation="90" y="69" x="108"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="193" x="35"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="80" x="35"/>
+ <rect height="6" width="4" style="line-style:dotted;line-weight:thin;filling:none;color:black" antialias="false" y="75" x="108"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="151" x="69"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="80" x="69"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="66" x="35"/>
+ <rect height="6" width="4" style="line-style:dotted;line-weight:thin;filling:none;color:black" antialias="false" y="75" x="97"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="66" x="69"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="193" x="69"/>
+ <circle style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" diameter="12" y="216" x="91"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="143" x="35"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="143" x="69"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="122" x="35"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="122" x="69"/>
+ <circle style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" diameter="12" y="19" x="145"/>
+ <circle style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" diameter="12" y="216" x="11"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="108" x="35"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="108" x="69"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="172" x="69"/>
+ <rect height="18" width="8" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="206" x="76"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="129" x="69"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="129" x="35"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="87" x="69"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="87" x="35"/>
+ <rect height="18" width="8" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="206" x="66"/>
+ <rect height="4" width="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="218" x="68"/>
+ <rect height="4" width="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="28" x="128"/>
+ <rect height="4" width="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="208" x="78"/>
+ <rect height="4" width="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="218" x="58"/>
+ <ellipse height="15" width="11" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" y="108" x="99"/>
+ <rect height="182" width="12" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="34" x="144"/>
+ <rect height="4" width="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="208" x="68"/>
+ <rect height="4" width="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="218" x="78"/>
+ <rect height="4" width="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="38" x="128"/>
+ <rect height="8" width="18" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="36" x="116"/>
+ <rect height="8" width="1" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="112" x="104"/>
+ <rect height="4" width="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="48" x="128"/>
+ <text text="A5" size="7" y="214" x="-2"/>
+ <rect height="8" width="18" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="26" x="116"/>
+ <text text="A4" size="7" y="204" x="-2"/>
+ <text text="A3" size="7" y="194" x="-2"/>
+ <rect height="4" width="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="38" x="118"/>
+ <text text="A0" size="7" y="164" x="-2"/>
+ <rect height="4" width="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="48" x="118"/>
+ <text text="A2" size="7" y="184" x="-2"/>
+ <rect height="4" width="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="28" x="118"/>
+ <text text="A1" size="7" y="174" x="-2"/>
+ <rect height="8" width="18" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="46" x="116"/>
+ <text text="~9" size="7" y="123" x="128"/>
+ <text text="12" size="7" y="94" x="130"/>
+ <text text="~10" size="7" y="114" x="122"/>
+ <text text="TX->1" size="7" y="204" x="114"/>
+ <text text="RX&lt;-0" size="7" y="214" x="114"/>
+ <text text="~11" size="7" y="104" x="123"/>
+ <text text="8" size="7" y="133" x="136"/>
+ <text text="4" size="7" y="173" x="136"/>
+ <text text="7" size="7" y="144" x="136"/>
+ <text text="~3" size="7" y="183" x="128"/>
+ <text text="2" size="7" y="193" x="136"/>
+ <text text="13" size="7" y="83" x="130"/>
+ <text text="DIGITAL (PWM~)" size="5" rotation="90" y="131" x="117"/>
+ <text text="~5" size="7" y="163" x="128"/>
+ <text text="~6" size="7" y="154" x="128"/>
+ <text text="AREF" size="7" y="63" x="118"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="167" x="147"/>
+ <rect height="82" width="12" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="64" x="-16"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="177" x="147"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="47" x="147"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="157" x="147"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="57" x="147"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="37" x="147"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="167" x="-13"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="147" x="147"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="137" x="147"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="197" x="147"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="127" x="147"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="207" x="147"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="97" x="-13"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="107" x="147"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="187" x="147"/>
+ <arc height="12" angle="-90" width="12" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" start="-180" y="-20" x="-20"/>
+ <arc height="12" angle="-90" width="12" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" start="90" y="-20" x="148"/>
+ <rect height="4" width="4" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="208" x="58"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="187" x="-13"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="87" x="-13"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="117" x="147"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="77" x="147"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="197" x="-13"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="97" x="147"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="177" x="-13"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="107" x="-13"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="87" x="147"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="67" x="147"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="157" x="-13"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="77" x="-13"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="207" x="-13"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="67" x="-13"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="127" x="-13"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="137" x="-13"/>
+ <rect height="6" width="6" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="117" x="-13"/>
+ <rect height="62" width="12" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="154" x="-16"/>
+ <text text="GND" size="7" y="73" x="121"/>
+ <line length2="1.5" style="line-style:dotted;line-weight:normal;filling:none;color:black" x1="146" antialias="false" end1="none" length1="1.5" y1="135" x2="154" end2="none" y2="135"/>
+ <line length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="113" antialias="false" end1="none" length1="1.5" y1="213" x2="113" end2="none" y2="79"/>
+ <text text="ARDUINO" size="7" rotation="90" y="87" x="88"/>
+ <ellipse height="15" width="11" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" y="93" x="99"/>
+ <rect height="8" width="1" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="97" x="104"/>
+ <rect height="1" width="7" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="115" x="101"/>
+ <ellipse height="32" width="21" style="line-style:dashed;line-weight:thin;filling:none;color:black" antialias="true" y="143" x="89"/>
+ <text text="UNO" size="9" rotation="90" y="145" x="95"/>
+ <rect height="18" width="8" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="206" x="56"/>
+ <circle style="line-style:dotted;line-weight:thin;filling:none;color:black" antialias="true" diameter="10" y="-8" x="145"/>
+ <rect height="16" width="17" style="line-style:dashed;line-weight:thin;filling:none;color:black" antialias="false" y="-11" x="141"/>
+ <rect height="31" width="20" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="-29" x="1"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="1" antialias="false" end1="none" length1="1.5" y1="-22" x2="21" end2="none" y2="-22"/>
+ <rect height="1" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="2" x="6"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-13" antialias="false" end1="none" length1="1.5" y1="-20" x2="1" end2="none" y2="-20"/>
+ <circle style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true" diameter="2.5" y="76.75" x="89.75"/>
+ <rect height="6" width="4" style="line-style:dotted;line-weight:thin;filling:none;color:black" antialias="false" y="75" x="89"/>
+ <text text="TX" size="4" rotation="90" y="66" x="98"/>
+ <text text="AIMEL" size="5" rotation="270" y="135" x="51"/>
+ <line length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="45" antialias="false" end1="none" length1="1.5" y1="131" x2="45" end2="none" y2="117"/>
+ <rect height="137" width="32" style="line-style:dotted;line-weight:thin;filling:none;color:black" antialias="false" y="65" x="37"/>
+ <rect height="5" width="2" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y="172" x="35"/>
+ <line length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="26" antialias="false" end1="none" length1="1.5" y1="97" x2="26" end2="none" y2="145"/>
+ <line length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="26" antialias="false" end1="none" length1="1.5" y1="155" x2="26" end2="none" y2="213"/>
+ <ellipse height="22" width="9" style="line-style:dashed;line-weight:thin;filling:none;color:black" antialias="true" y="19" x="68"/>
+ <circle style="line-style:dotted;line-weight:thin;filling:none;color:black" antialias="true" diameter="20.5913" y="40.7044" x="1.70437"/>
+ <rect height="8" width="16" style="line-style:dashed;line-weight:thin;filling:none;color:black" antialias="false" y="-12" x="51"/>
+ <text text="MADE IN ITALY" size="2" rotation="90" y="169" x="78"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="22" antialias="false" end1="none" length1="1.5" y1="-20" x2="94" end2="none" y2="-20"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="154" antialias="false" end1="none" length1="1.5" y1="-20" x2="131" end2="none" y2="-20"/>
+ <input tagg="label" text="_" size="9" y="10" rotate="true" x="-40"/>
+ <terminal orientation="e" y="210" x="150"/>
+ <terminal orientation="e" y="50" x="150"/>
+ <terminal orientation="e" y="60" x="150"/>
+ <terminal orientation="e" y="70" x="150"/>
+ <terminal orientation="e" y="40" x="150"/>
+ <terminal orientation="w" y="80" x="-10"/>
+ <terminal orientation="w" y="90" x="-10"/>
+ <terminal orientation="w" y="100" x="-10"/>
+ <terminal orientation="w" y="110" x="-10"/>
+ <terminal orientation="w" y="120" x="-10"/>
+ <terminal orientation="w" y="170" x="-10"/>
+ <terminal orientation="w" y="180" x="-10"/>
+ <terminal orientation="w" y="190" x="-10"/>
+ <terminal orientation="w" y="200" x="-10"/>
+ <terminal orientation="w" y="210" x="-10"/>
+ <terminal orientation="e" y="200" x="150"/>
+ <terminal orientation="e" y="190" x="150"/>
+ <terminal orientation="e" y="180" x="150"/>
+ <terminal orientation="w" y="70" x="-10"/>
+ <terminal orientation="w" y="160" x="-10"/>
+ <terminal orientation="e" y="130" x="150"/>
+ <terminal orientation="e" y="140" x="150"/>
+ <terminal orientation="e" y="150" x="150"/>
+ <terminal orientation="e" y="160" x="150"/>
+ <terminal orientation="e" y="170" x="150"/>
+ <terminal orientation="e" y="80" x="150"/>
+ <terminal orientation="e" y="90" x="150"/>
+ <terminal orientation="e" y="120" x="150"/>
+ <terminal orientation="e" y="110" x="150"/>
+ <terminal orientation="e" y="100" x="150"/>
+ <terminal orientation="w" y="130" x="-10"/>
+ <terminal orientation="w" y="140" x="-10"/>
+ <terminal orientation="n" y="-20" x="10"/>
+ <terminal orientation="n" y="-20" x="110"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ </category>
+ </category>
+ <element name="74hc4050.elmt">
+ <definition height="90" width="80" version="0.60" hotspot_y="41" orientation="dyyy" link_type="simple" type="element" hotspot_x="39">
+ <uuid uuid="{6df03328-e597-4781-9a5a-12b2d3334aea}"/>
+ <names>
+ <name lang="en">Integrated Circuit, 16 pins, numbered</name>
+ <name lang="it">Circuito integrato, 16 pin numerati</name>
+ <name lang="nl">IC 16 pin nummers</name>
+ <name lang="pl">Układ scalony, 16 nóżek (ponumerowany)</name>
+ <name lang="el">Ολοκληρωμένο κύκλωμα 16 ακροδεκτών, αριθμημένο</name>
+ <name lang="fr">74HC4050</name>
+ <name lang="cs">Integrovaný obvod, 16 očíslovaných kolíků</name>
+ <name lang="ar">دائرة مدمجة 16 دبوس, مُرقّمة</name>
+ <name lang="de">Integrierte Schaltung 16 Anschlüsse nummeriert</name>
+ </names>
+ <informations>Author: The QElectroTech team
+License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
+ <description>
+ <text text="3A" size="4" y="21" x="-12"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" antialias="false" end1="none" length1="1.5" y1="-10" x2="-21" end2="none" y2="-10"/>
+ <text text="3Y" size="4" y="31" x="-12"/>
+ <text text="5Y" size="4" y="12" x="2"/>
+ <text text="1Y" size="4" y="-9" x="-12"/>
+ <text text="5A" size="4" y="21" x="2"/>
+ <text text="2Y" size="4" y="11" x="-12"/>
+ <text text="6A" size="4" y="-9" x="2"/>
+ <text text="2A" size="4" y="1" x="-12"/>
+ <text text="4Y" size="4" y="31" x="2"/>
+ <text text="6Y" size="4" y="-19" x="2"/>
+ <text text="4A" size="4" y="41" x="2"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-29" antialias="false" end1="none" length1="1.5" y1="30" x2="-20" end2="none" y2="30"/>
+ <text text="9" size="5" y="41.67" x="13"/>
+ <text text="10" size="5" y="31.67" x="10"/>
+ <text text="11" size="5" y="21.67" x="10"/>
+ <text text="12" size="5" y="11.67" x="10"/>
+ <text text="6" size="5" y="21.67" x="-18"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-29" antialias="false" end1="none" length1="1.5" y1="40" x2="-20" end2="none" y2="40"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="21" antialias="false" end1="none" length1="1.5" y1="10" x2="30" end2="none" y2="10"/>
+ <text text="2" size="5" y="-18.3333" x="-19"/>
+ <text text="5" size="5" y="11.67" x="-18"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" antialias="false" end1="none" length1="1.5" y1="20" x2="29" end2="none" y2="20"/>
+ <text text="1" size="5" y="-28.33" x="-19"/>
+ <text text="8" size="5" y="41.67" x="-18"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" antialias="false" end1="none" length1="1.5" y1="20" x2="-21" end2="none" y2="20"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" antialias="false" end1="none" length1="1.5" y1="30" x2="29" end2="none" y2="30"/>
+ <text text="15" size="5" y="-18.3333" x="10"/>
+ <text text="7" size="5" y="31.67" x="-18"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" antialias="false" end1="none" length1="1.5" y1="10" x2="-21" end2="none" y2="10"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="20" antialias="false" end1="none" length1="1.5" y1="40" x2="29" end2="none" y2="40"/>
+ <text text="4" size="5" y="1.67" x="-18.5"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" antialias="false" end1="none" length1="1.5" y1="0" x2="-21" end2="none" y2="0"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" antialias="false" end1="none" length1="1.5" y1="-20" x2="-21" end2="none" y2="-20"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" antialias="false" end1="none" length1="1.5" y1="-30" x2="-21" end2="none" y2="-30"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="21" antialias="false" end1="none" length1="1.5" y1="-30" x2="30" end2="none" y2="-30"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="21" antialias="false" end1="none" length1="1.5" y1="-20" x2="30" end2="none" y2="-20"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="21" antialias="false" end1="none" length1="1.5" y1="-10" x2="30" end2="none" y2="-10"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="21" antialias="false" end1="none" length1="1.5" y1="0" x2="30" end2="none" y2="0"/>
+ <arc height="5" angle="-180" width="5" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="true" start="0" y="-37" x="-2.5"/>
+ <text text="NC" size="4" y="-27" x="10"/>
+ <text text="3" size="5" y="-8.67" x="-19"/>
+ <input tagg="label" text="_" size="9" y="50" rotate="true" x="-40"/>
+ <text text="NC" size="4" y="1.67" x="10"/>
+ <rect height="80" width="40" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="-35" x="-20"/>
+ <text text="14" size="5" y="-8.67" x="10.5"/>
+ <text text="GND" size="3" y="40" x="-12"/>
+ <text text="VCC" size="4" y="-29" x="-13"/>
+ <text text="1A" size="4" y="-19" x="-13"/>
+ <terminal orientation="w" y="30" x="-30"/>
+ <terminal orientation="w" y="-10" x="-30"/>
+ <terminal orientation="e" y="-20" x="31"/>
+ <terminal orientation="e" y="-10" x="30"/>
+ <terminal orientation="w" y="-30" x="-30"/>
+ <terminal orientation="w" y="0" x="-30"/>
+ <terminal orientation="w" y="-20" x="-31"/>
+ <terminal orientation="e" y="10" x="30"/>
+ <terminal orientation="e" y="20" x="30"/>
+ <terminal orientation="e" y="30" x="30"/>
+ <terminal orientation="e" y="40" x="30"/>
+ <terminal orientation="w" y="10" x="-30"/>
+ <terminal orientation="w" y="40" x="-30"/>
+ <terminal orientation="w" y="20" x="-31"/>
+ </description>
+ </definition>
+ </element>
+ <element name="nokia_5110.elmt">
+ <definition height="150" width="150" version="0.60" hotspot_y="134" orientation="dyyy" link_type="simple" type="element" hotspot_x="75">
+ <uuid uuid="{580cc3d6-61af-4f82-860d-50f54b8d5ead}"/>
+ <names>
+ <name lang="fr">Nokia 5110 LCD</name>
+ </names>
+ <informations/>
+ <description>
+ <rect height="140" width="140" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="-130" x="-70"/>
+ <input tagg="label" text="_" size="9" y="35" rotate="true" x="-95"/>
+ <rect height="100" width="120" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="-110" x="-60"/>
+ <rect height="10" width="10" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" y="0" x="-40"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-30" antialias="false" end1="none" length1="1.5" y1="0" x2="40" end2="none" y2="0"/>
+ <line length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="40" antialias="false" end1="none" length1="1.5" y1="0" x2="40" end2="none" y2="10"/>
+ <terminal orientation="s" y="10" x="-35"/>
+ <terminal orientation="s" y="10" x="35"/>
+ <terminal orientation="s" y="10" x="-25"/>
+ <terminal orientation="s" y="10" x="-5"/>
+ <terminal orientation="s" y="10" x="25"/>
+ <terminal orientation="s" y="10" x="5"/>
+ <terminal orientation="s" y="10" x="15"/>
+ <terminal orientation="s" y="10" x="-15"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ </collection>
+</project>
diff --git a/content/nokia_5110.svg b/content/nokia_5110.svg
new file mode 100644
index 0000000..949e730
--- /dev/null
+++ b/content/nokia_5110.svg
@@ -0,0 +1,4031 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+ 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="370.417mm"
+ height="370.417mm"
+ version="1.2"
+ id="svg1178"
+ sodipodi:docname="nokia_5110.svg"
+ inkscape:version="0.92.1 r15371">
+ <metadata
+ id="metadata1182">
+ <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>Qt SVG Document</dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10"
+ gridtolerance="10"
+ guidetolerance="10"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1680"
+ inkscape:window-height="1020"
+ id="namedview1180"
+ showgrid="false"
+ inkscape:zoom="0.95358316"
+ inkscape:cx="292.07885"
+ inkscape:cy="959.11007"
+ inkscape:window-x="0"
+ inkscape:window-y="30"
+ inkscape:window-maximized="0"
+ inkscape:current-layer="svg1178" />
+ <title
+ id="title2">Qt SVG Document</title>
+ <desc
+ id="desc4">Generated with Qt</desc>
+ <defs
+ id="defs6" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g8"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g16"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path14"
+ d="m 95,-30 h 35 V 15 H 95 v -45" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g20"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)">
+ <circle
+ id="circle18"
+ r="6"
+ cy="25"
+ cx="-11" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g24"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,351.207,693.362)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text22"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="9"
+ x="0"
+ xml:space="preserve">3.3V</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g28"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,389.224,693.362)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:6px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text26"
+ font-style="normal"
+ font-weight="400"
+ font-size="6"
+ y="8"
+ x="0"
+ xml:space="preserve">GND</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g32"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path30"
+ d="m 69,94 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g36"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path34"
+ d="m 35,136 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g40"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,405.517,693.362)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:6px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text38"
+ font-style="normal"
+ font-weight="400"
+ font-size="6"
+ y="8"
+ x="0"
+ xml:space="preserve">GND</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g44"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path42"
+ d="m 35,158 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g48"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,423.621,691.552)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text46"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="9"
+ x="0"
+ xml:space="preserve">Vin</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g52"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path50"
+ d="m 35,186 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g56"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,485.172,644.483)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text54"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">ANALOG IN</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g60"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,381.983,642.672)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text58"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">POWER</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g64"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,333.103,693.362)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:6px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text62"
+ font-style="normal"
+ font-weight="400"
+ font-size="6"
+ y="8"
+ x="0"
+ xml:space="preserve">RESET</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g68"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,369.31,693.362)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text66"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="9"
+ x="0"
+ xml:space="preserve">5V</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g72"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path70"
+ d="m 69,158 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g76"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,315,693.362)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text74"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="9"
+ x="0"
+ xml:space="preserve">IO ref</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g80"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)">
+ <circle
+ style="vector-effect:non-scaling-stroke"
+ id="circle78"
+ r="10.2957"
+ cy="24.000099"
+ cx="12" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g84"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline82"
+ points="-20,-14 -20,221 -10,223 0,230 105,230 120,220 160,220 160,-14 160,-14 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g88"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path86"
+ d="m 35,179 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g92"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path90"
+ d="m 35,165 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g96"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path94"
+ d="m 35,73 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g100"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path98"
+ d="m 69,179 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g104"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)">
+ <circle
+ id="circle102"
+ r="1.25"
+ cy="78"
+ cx="99" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g108"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path106"
+ d="m 69,136 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g112"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path110"
+ d="m 69,73 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g116"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path114"
+ d="m 69,186 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g120"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path118"
+ d="m 35,101 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g124"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path122"
+ d="m 35,151 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g128"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)">
+ <circle
+ id="circle126"
+ r="1.25"
+ cy="78"
+ cx="110" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g132"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,298.707,515.948)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text130"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">RX</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g136"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path134"
+ d="m 35,94 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g140"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path138"
+ d="m 69,101 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g144"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path142"
+ d="m 69,165 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g148"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path146"
+ d="m 69,115 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g152"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path150"
+ d="m 35,115 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g156"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,304.138,483.362)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text154"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">L</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g160"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path158"
+ d="m 35,193 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g164"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path162"
+ d="m 35,80 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g168"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path166"
+ d="m 108,75 h 4 v 6 h -4 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g172"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path170"
+ d="m 69,151 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g176"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path174"
+ d="m 69,80 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g180"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path178"
+ d="m 35,66 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g184"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path182"
+ d="m 97,75 h 4 v 6 h -4 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g188"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path186"
+ d="m 69,66 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g192"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path190"
+ d="m 69,193 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g196"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)">
+ <circle
+ id="circle194"
+ r="6"
+ cy="222"
+ cx="97" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g200"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path198"
+ d="m 35,143 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g204"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path202"
+ d="m 69,143 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g208"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path206"
+ d="m 35,122 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g212"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path210"
+ d="m 69,122 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g216"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)">
+ <circle
+ id="circle214"
+ r="6"
+ cy="25"
+ cx="151" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g220"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)">
+ <circle
+ id="circle218"
+ r="6"
+ cy="222"
+ cx="17" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g224"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path222"
+ d="m 35,108 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g228"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path226"
+ d="m 69,108 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g232"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path230"
+ d="m 69,172 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g236"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path234"
+ d="m 76,206 h 8 v 18 h -8 v -18" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g240"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path238"
+ d="m 69,129 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g244"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path242"
+ d="m 35,129 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g248"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path246"
+ d="m 69,87 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g252"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path250"
+ d="m 35,87 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g256"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path254"
+ d="m 66,206 h 8 v 18 h -8 v -18" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g260"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path258"
+ d="m 68,218 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g264"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path262"
+ d="m 128,28 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g268"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path266"
+ d="m 78,208 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g272"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path270"
+ d="m 58,218 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g276"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)">
+ <ellipse
+ id="ellipse274"
+ ry="7.5"
+ rx="5.5"
+ cy="115.5"
+ cx="104.5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g280"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path278"
+ d="m 144,34 h 12 V 216 H 144 V 34" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g284"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path282"
+ d="m 68,208 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g288"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path286"
+ d="m 78,218 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g292"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path290"
+ d="m 128,38 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g296"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path294"
+ d="m 116,36 h 18 v 8 h -18 v -8" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g300"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path298"
+ d="m 104,112 h 1 v 8 h -1 v -8" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g304"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path302"
+ d="m 128,48 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g308"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,550.345,691.552)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text306"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="9"
+ x="0"
+ xml:space="preserve">A5</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g312"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path310"
+ d="m 116,26 h 18 v 8 h -18 v -8" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g316"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,532.241,691.552)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text314"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="9"
+ x="0"
+ xml:space="preserve">A4</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g320"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,514.138,691.552)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text318"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="9"
+ x="0"
+ xml:space="preserve">A3</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g324"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path322"
+ d="m 118,38 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g328"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,459.828,691.552)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text326"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="9"
+ x="0"
+ xml:space="preserve">A0</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g332"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path330"
+ d="m 118,48 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g336"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,496.034,691.552)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text334"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="9"
+ x="0"
+ xml:space="preserve">A2</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g340"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path338"
+ d="m 118,28 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g344"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,477.931,691.552)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text342"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="9"
+ x="0"
+ xml:space="preserve">A1</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g348"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path346"
+ d="m 116,46 h 18 v 8 h -18 v -8" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g352"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,385.603,456.207)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text350"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="9"
+ x="0"
+ xml:space="preserve">~9</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g372"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,351.207,465.259)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text370"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="9"
+ x="0"
+ xml:space="preserve">~11</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g384"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,423.621,441.724)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text382"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="9"
+ x="0"
+ xml:space="preserve">7</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g396"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,313.19,452.586)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text394"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="9"
+ x="0"
+ xml:space="preserve">13</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g400"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,416.379,463.448)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text398"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">DIGITAL (PWM~)</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g404"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,458.017,456.207)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text402"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="9"
+ x="0"
+ xml:space="preserve">~5</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g408"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,441.724,456.207)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text406"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="9"
+ x="0"
+ xml:space="preserve">~6</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g420"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path418"
+ d="m -16,64 h 12 v 82 H -16 V 64" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g432"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path430"
+ d="m 147,157 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g444"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path442"
+ d="m -13,167 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g448"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path446"
+ d="m 147,147 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g452"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path450"
+ d="m 147,137 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g468"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path466"
+ d="m -13,97 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g480"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path478"
+ d="m -20,-14 c 0,-3.3137 2.6863,-6 6,-6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g484"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path482"
+ d="m 154,-20 c 3.314,0 6,2.6863 6,6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g488"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path486"
+ d="m 58,208 h 4 v 4 h -4 v -4" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g492"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path490"
+ d="m -13,187 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g496"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path494"
+ d="m -13,87 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g500"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path498"
+ d="m 147,117 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g504"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path502"
+ d="m 147,77 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g508"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path506"
+ d="m -13,197 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g512"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path510"
+ d="m 147,97 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g516"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path514"
+ d="m -13,177 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g520"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path518"
+ d="m -13,107 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g528"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path526"
+ d="m 147,67 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g532"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path530"
+ d="m -13,157 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g536"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path534"
+ d="m -13,77 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g540"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path538"
+ d="m -13,207 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g544"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path542"
+ d="m -13,67 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g548"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path546"
+ d="m -13,127 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g552"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path550"
+ d="m -13,137 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g556"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path554"
+ d="m -13,117 h 6 v 6 h -6 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g560"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path558"
+ d="m -16,154 h 12 v 62 h -12 v -62" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g564"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,295.086,468.879)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text562"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="9"
+ x="0"
+ xml:space="preserve">GND</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g568"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline566"
+ points="146,135 154,135 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g572"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:non-scaling-stroke;fill:none"
+ id="polyline570"
+ points="113,213 113,79 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g576"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,336.724,512.328)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text574"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="9"
+ x="0"
+ xml:space="preserve">ARDUINO</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g580"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)">
+ <ellipse
+ id="ellipse578"
+ ry="7.5"
+ rx="5.5"
+ cy="100.5"
+ cx="104.5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g584"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path582"
+ d="m 104,97 h 1 v 8 h -1 v -8" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g588"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path586"
+ d="m 101,115 h 7 v 1 h -7 v -1" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-dasharray:4, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g592"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)">
+ <ellipse
+ style="vector-effect:non-scaling-stroke"
+ id="ellipse590"
+ ry="16"
+ rx="10.5"
+ cy="159"
+ cx="99.5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g596"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,441.724,494.224)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text594"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ y="12"
+ x="0"
+ xml:space="preserve">UNO</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g600"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path598"
+ d="m 56,206 h 8 v 18 h -8 v -18" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g604"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)">
+ <circle
+ style="vector-effect:non-scaling-stroke"
+ id="circle602"
+ r="5"
+ cy="-3"
+ cx="150" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:4, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g608"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path606"
+ d="m 141,-11 h 17 V 5 h -17 v -16" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g612"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path610"
+ d="M 1,-29 H 21 V 2 H 1 v -31" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g616"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline614"
+ points="1,-22 21,-22 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g620"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path618"
+ d="M 6,2 H 16 V 3 H 6 V 2" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g624"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline622"
+ points="-13,-20 1,-20 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g628"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)">
+ <circle
+ id="circle626"
+ r="1.25"
+ cy="78"
+ cx="91" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g632"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path630"
+ d="m 89,75 h 4 v 6 h -4 v -6" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g636"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,298.707,501.466)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text634"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">TX</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g640"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(-1.81034,0,0,-1.81034,423.621,608.276)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text638"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">AIMEL</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g644"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:non-scaling-stroke;fill:none"
+ id="polyline642"
+ points="45,131 45,117 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g648"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path646"
+ d="M 37,65 H 69 V 202 H 37 V 65" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g652"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path650"
+ d="m 35,172 h 2 v 5 h -2 v -5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g656"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:non-scaling-stroke;fill:none"
+ id="polyline654"
+ points="26,97 26,145 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g660"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:non-scaling-stroke;fill:none"
+ id="polyline658"
+ points="26,155 26,213 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-dasharray:4, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g664"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)">
+ <ellipse
+ style="vector-effect:non-scaling-stroke"
+ id="ellipse662"
+ ry="11"
+ rx="4.5"
+ cy="30"
+ cx="72.5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g668"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)">
+ <circle
+ style="vector-effect:non-scaling-stroke"
+ id="circle666"
+ r="10.2957"
+ cy="51.000099"
+ cx="12" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:4, 2;stroke-dashoffset:0;stroke-opacity:1"
+ id="g672"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path670"
+ d="m 51,-12 h 16 v 8 H 51 v -8" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g676"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,485.172,541.293)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:2px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text674"
+ font-style="normal"
+ font-weight="100"
+ font-size="2"
+ y="3"
+ x="0"
+ xml:space="preserve">MADE IN ITALY</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g680"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline678"
+ points="22,-20 94,-20 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g684"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,179.224,687.931)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline682"
+ points="154,-20 131,-20 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g686"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,176.509,778.448)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g688"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,176.509,778.448)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g690"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g694"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,251.638,144.828)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path692"
+ d="M -70,-130 H 70 V 10 H -70 v -140" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g698"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,251.638,144.828)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path696"
+ d="M -60,-110 H 60 V -10 H -60 v -100" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g702"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,251.638,144.828)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path700"
+ d="m -40,0 h 10 V 10 H -40 V 0" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g706"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,251.638,144.828)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline704"
+ points="-30,0 40,0 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g710"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,251.638,144.828)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline708"
+ points="40,0 40,10 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g712"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,85.9914,217.241)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g716"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,85.9914,217.241)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text714"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ y="16"
+ x="4"
+ xml:space="preserve">Nokia 5110</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g718"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,85.9914,217.241)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g720"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g724"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,610.086,264.31)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text722"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">3A</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g728"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,631.81,235.345)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline726"
+ points="-30,-10 -21,-10 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g732"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,610.086,282.414)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text730"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">3Y</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g736"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,635.431,248.017)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text734"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">5Y</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g740"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,610.086,210)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text738"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">1Y</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g744"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,635.431,264.31)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text742"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">5A</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g748"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,610.086,246.207)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text746"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">2Y</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g752"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,635.431,210)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text750"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">6A</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g756"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,610.086,228.103)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text754"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">2A</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g760"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,635.431,282.414)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text758"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">4Y</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g764"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,635.431,191.897)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text762"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">6Y</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g768"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,635.431,300.517)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text766"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">4A</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g772"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,631.81,235.345)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline770"
+ points="-29,30 -20,30 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g776"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,655.345,298.109)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text774"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">9</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g780"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,649.914,280.006)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text778"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">10</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g784"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,649.914,261.903)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text782"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">11</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g788"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,649.914,243.799)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text786"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">12</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g792"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,599.224,261.903)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text790"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">6</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g796"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,631.81,235.345)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline794"
+ points="-29,40 -20,40 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g800"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,631.81,235.345)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline798"
+ points="21,10 30,10 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g804"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,597.414,189.483)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text802"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">2</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g808"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,599.224,243.799)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text806"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">5</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g812"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,631.81,235.345)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline810"
+ points="20,20 29,20 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g816"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,597.414,171.385)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text814"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">1</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g820"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,599.224,298.109)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text818"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">8</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g824"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,631.81,235.345)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline822"
+ points="-30,20 -21,20 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g828"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,631.81,235.345)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline826"
+ points="20,30 29,30 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g832"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,649.914,189.483)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text830"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">15</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g836"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,599.224,280.006)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text834"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">7</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g840"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,631.81,235.345)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline838"
+ points="-30,10 -21,10 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g844"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,631.81,235.345)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline842"
+ points="20,40 29,40 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g848"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,598.319,225.696)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text846"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">4</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g852"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,631.81,235.345)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline850"
+ points="-30,0 -21,0 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g856"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,631.81,235.345)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline854"
+ points="-30,-20 -21,-20 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g860"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,631.81,235.345)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline858"
+ points="-30,-30 -21,-30 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g864"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,631.81,235.345)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline862"
+ points="21,-30 30,-30 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g868"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,631.81,235.345)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline866"
+ points="21,-20 30,-20 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g872"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,631.81,235.345)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline870"
+ points="21,-10 30,-10 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g876"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,631.81,235.345)"
+ stroke-miterlimit="2">
+ <polyline
+ style="vector-effect:none;fill:none"
+ id="polyline874"
+ points="21,0 30,0 " />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g880"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,631.81,235.345)">
+ <path
+ style="vector-effect:non-scaling-stroke;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path878"
+ d="m 2.5,-34.5 c 0,1.3807 -1.11929,2.5 -2.5,2.5 -1.38071,0 -2.5,-1.1193 -2.5,-2.5" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g884"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,649.914,177.414)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text882"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">NC</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g888"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,597.414,206.977)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text886"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">3</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g892"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,649.914,229.316)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text890"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">NC</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g896"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,631.81,235.345)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path894"
+ d="M -20,-35 H 20 V 45 H -20 V -35" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g900"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,650.819,206.977)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:5px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text898"
+ font-style="normal"
+ font-weight="400"
+ font-size="5"
+ y="7"
+ x="0"
+ xml:space="preserve">14</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g904"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,610.086,300.517)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:3px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text902"
+ font-style="normal"
+ font-weight="100"
+ font-size="3"
+ y="4"
+ x="0"
+ xml:space="preserve">GND</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g908"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,608.276,173.793)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text906"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">VCC</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g912"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,608.276,191.897)">
+ <text
+ style="font-style:normal;font-weight:100;font-size:4px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text910"
+ font-style="normal"
+ font-weight="100"
+ font-size="4"
+ y="5"
+ x="0"
+ xml:space="preserve">1A</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g914"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,559.397,124.009)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g918"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,559.397,124.009)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:9px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text916"
+ font-style="normal"
+ font-weight="400"
+ font-size="9"
+ y="16"
+ x="4"
+ xml:space="preserve">74HC4050</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g920"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,559.397,124.009)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g922"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#40bf73;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g926"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,-780.259,-343.966)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path924"
+ d="m 810,340 h 9 11 v 30 H 610 v 41 9" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g928"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,324.052,325.862)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g932"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,324.052,325.862)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text930"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="13"
+ x="4"
+ xml:space="preserve">SLCK</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g934"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,324.052,325.862)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g936"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#40bf73;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g940"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,-780.259,-343.966)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path938"
+ d="M 810,330 H 839.333 850 V 245 H 580" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g942"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,722.328,199.138)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g946"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,722.328,199.138)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text944"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="13"
+ x="4"
+ xml:space="preserve">SCLK</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g948"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,722.328,199.138)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g950"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#8f5902;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g954"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,-780.259,-343.966)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path952"
+ d="M 750,350 H 645 v -85 h -65" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g956"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,378.362,199.138)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g960"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,378.362,199.138)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text958"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="13"
+ x="4"
+ xml:space="preserve">D/C</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g962"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,378.362,199.138)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g964"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#204a87;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g968"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,-780.259,-343.966)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path966"
+ d="m 680,420 v -9 -91 h 61 9" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g970"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,450.776,235.345)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g974"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,450.776,235.345)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text972"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="13"
+ x="4"
+ xml:space="preserve">RST</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g976"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,450.776,235.345)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g978"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#a640bf;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g982"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,-780.259,-343.966)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path980"
+ d="M 810,310 H 832.333 840 v 86.667 H 650 V 404.333 420" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g984"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,686.121,380.172)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g988"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,686.121,380.172)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text986"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="13"
+ x="4"
+ xml:space="preserve">LED</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g990"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,686.121,380.172)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g992"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#8f5902;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g996"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,-780.259,-343.966)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path994"
+ d="m 690,420 v -9 -71 h 50 9" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g998"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,468.879,357.755)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1002"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,468.879,357.755)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1000"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="13"
+ x="4"
+ xml:space="preserve">D/C</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1004"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,468.879,357.755)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1006"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#4e9a06;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1010"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,-780.259,-343.966)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path1008"
+ d="m 670,420 v -9 -111 h 70 9" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1012"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,396.466,343.966)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1016"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,396.466,343.966)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1014"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="13"
+ x="4"
+ xml:space="preserve">SCE</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1018"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,396.466,343.966)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1020"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#cc0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1024"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,-780.259,-343.966)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path1022"
+ d="m 630,580 v 9 11 H 740 V 290 h 10" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:#cc0000;fill-opacity:1;fill-rule:evenodd;stroke:#cc0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1032"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,-780.259,-343.966)"
+ stroke-miterlimit="2">
+ <circle
+ id="circle1026"
+ r="1.5"
+ cy="600"
+ cx="630" />
+ <circle
+ id="circle1028"
+ r="1.5"
+ cy="600"
+ cx="630" />
+ <circle
+ id="circle1030"
+ r="1.5"
+ cy="600"
+ cx="630" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1034"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,577.5,470.69)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1038"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,577.5,470.69)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1036"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="13"
+ x="4"
+ xml:space="preserve">3.3V</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1040"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,577.5,470.69)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1042"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1046"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,-780.259,-343.966)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path1044"
+ d="M 750,360 H 600 v 46 14" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1052"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,-780.259,-343.966)"
+ stroke-miterlimit="2">
+ <circle
+ id="circle1048"
+ r="1.5"
+ cy="360"
+ cx="600" />
+ <circle
+ id="circle1050"
+ r="1.5"
+ cy="360"
+ cx="600" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1054"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,342.155,271.552)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1058"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,342.155,271.552)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1056"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="13"
+ x="4"
+ xml:space="preserve">GND</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1060"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,342.155,271.552)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1062"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#4e9a06;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1066"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,-780.259,-343.966)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path1064"
+ d="M 750,310 H 605 v -25 h -25" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1068"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,324.052,217.241)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1072"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,324.052,217.241)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1070"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="13"
+ x="4"
+ xml:space="preserve">SCE</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1074"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,324.052,217.241)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1076"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#cc0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1080"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,-780.259,-343.966)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path1078"
+ d="m 580,305 h 4 v 295 h 46 v -11 -9" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:#cc0000;fill-opacity:1;fill-rule:evenodd;stroke:#cc0000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1092"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,-780.259,-343.966)"
+ stroke-miterlimit="2">
+ <circle
+ id="circle1082"
+ r="1.5"
+ cy="600"
+ cx="630" />
+ <circle
+ id="circle1084"
+ r="1.5"
+ cy="600"
+ cx="630" />
+ <circle
+ id="circle1086"
+ r="1.5"
+ cy="600"
+ cx="630" />
+ <circle
+ id="circle1088"
+ r="1.5"
+ cy="600"
+ cx="630" />
+ <circle
+ id="circle1090"
+ r="1.5"
+ cy="600"
+ cx="630" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1094"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,233.534,380.172)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1098"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,233.534,380.172)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1096"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="13"
+ x="4"
+ xml:space="preserve">3.3V</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1100"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,233.534,380.172)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1102"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1106"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,-780.259,-343.966)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path1104"
+ d="m 580,295 h 9 11 v 116 9" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1108"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,269.741,307.759)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1112"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,269.741,307.759)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1110"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="13"
+ x="4"
+ xml:space="preserve">GND</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1114"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(0,-1.81034,1.81034,0,269.741,307.759)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1116"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#204a87;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1120"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,-780.259,-343.966)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path1118"
+ d="M 750,330 H 735 V 275 H 580" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1122"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,505.086,126.724)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1126"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,505.086,126.724)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1124"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="13"
+ x="4"
+ xml:space="preserve">RST</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1128"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,505.086,126.724)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1130"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#a640bf;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1134"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,-780.259,-343.966)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path1132"
+ d="m 811,300 h 9 10 v -65 h -241 -9" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1136"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,631.81,54.3103)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1140"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,631.81,54.3103)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1138"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="13"
+ x="4"
+ xml:space="preserve">LED</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1142"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,631.81,54.3103)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1144"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#8f5902;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1148"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,-780.259,-343.966)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path1146"
+ d="m 630,420 v -9 -21 h 189 v -30 h -9" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1150"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,577.5,325.862)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1154"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,577.5,325.862)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1152"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="13"
+ x="4"
+ xml:space="preserve">DN(MOSI)</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1156"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,577.5,325.862)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1158"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#8f5902;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:2;stroke-opacity:1"
+ id="g1162"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,-780.259,-343.966)"
+ stroke-miterlimit="2">
+ <path
+ style="vector-effect:none;fill-rule:evenodd"
+ inkscape:connector-curvature="0"
+ id="path1160"
+ d="m 810,350 h 9 v -95 h -230 -9" />
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1164"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,414.569,108.621)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1168"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,414.569,108.621)">
+ <text
+ style="font-style:normal;font-weight:400;font-size:7px;font-family:'Sans Serif';fill:#000000;fill-opacity:1;stroke:none"
+ id="text1166"
+ font-style="normal"
+ font-weight="400"
+ font-size="7"
+ y="13"
+ x="4"
+ xml:space="preserve">DN(MOSI)</text>
+ </g>
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1170"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="matrix(1.81034,0,0,1.81034,414.569,108.621)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1172"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="scale(0.75)" />
+ <g
+ style="font-style:normal;font-weight:400;font-size:10px;font-family:Sans;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-opacity:1"
+ id="g1174"
+ font-style="normal"
+ font-weight="400"
+ font-size="10"
+ transform="scale(0.75)" />
+</svg>
diff --git a/content/nokia_5110_montage.jpg b/content/nokia_5110_montage.jpg
new file mode 100644
index 0000000..5756099
--- /dev/null
+++ b/content/nokia_5110_montage.jpg
Binary files differ
diff --git a/content/ohm.py b/content/ohm.py
new file mode 100644
index 0000000..a189c55
--- /dev/null
+++ b/content/ohm.py
@@ -0,0 +1,24 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+def get_value(r1, r2, vin):
+ va = r2 * vin /(r2 + r1)
+ print("Va: ", va)
+ value = int((va * 1023) / vin)
+
+ if value == 0:
+ return 0, 0
+ realr1 = r2 * ((1023. / value) - 1)
+ return value, int(realr1)
+
+if __name__ == "__main__":
+
+ vin = float(input("vin? "))
+ r2 = int(input("r2? "))
+ while True:
+ r1 = int(input("r1? "))
+ value, realr1 = get_value(r1, r2, vin)
+ i = vin / (r1 + r2)
+ print(value, realr1, i)
+
+
diff --git a/content/piezzo_buzzer.jpg b/content/piezzo_buzzer.jpg
new file mode 100755
index 0000000..103c5ca
--- /dev/null
+++ b/content/piezzo_buzzer.jpg
Binary files differ
diff --git a/content/polarity.svg b/content/polarity.svg
new file mode 100644
index 0000000..281f4e2
--- /dev/null
+++ b/content/polarity.svg
@@ -0,0 +1,115 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ 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="210mm"
+ height="297mm"
+ viewBox="0 0 210 297"
+ version="1.1"
+ id="svg8"
+ inkscape:version="0.92.1 r15371"
+ sodipodi:docname="polarity.svg">
+ <defs
+ id="defs2" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0.0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.7"
+ inkscape:cx="-233.29036"
+ inkscape:cy="679.06302"
+ inkscape:document-units="mm"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:window-width="1680"
+ inkscape:window-height="1018"
+ inkscape:window-x="0"
+ inkscape:window-y="30"
+ inkscape:window-maximized="0" />
+ <metadata
+ id="metadata5">
+ <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 />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Calque 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <circle
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
+ id="path4485"
+ cx="31.372023"
+ cy="89.113091"
+ r="16.630953" />
+ <path
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
+ id="path4485-3"
+ sodipodi:type="arc"
+ sodipodi:cx="-1.9090048"
+ sodipodi:cy="118.69624"
+ sodipodi:rx="16.630953"
+ sodipodi:ry="16.630953"
+ sodipodi:start="1.3996418"
+ sodipodi:end="0.084660028"
+ d="m 0.92358108,135.0842 a 16.630953,16.630953 0 0 1 -17.42841808,-8.41611 16.630953,16.630953 0 0 1 2.338545,-19.21229 16.630953,16.630953 0 0 1 18.9384438,-3.98949 16.630953,16.630953 0 0 1 9.8902322,16.63623"
+ sodipodi:open="true"
+ transform="rotate(-42.272912)" />
+ <circle
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#070000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
+ id="path4485-6"
+ cx="125.48809"
+ cy="89.113091"
+ r="16.630953" />
+ <ellipse
+ style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#070000;stroke-width:0.24691419;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
+ id="path4485-7"
+ cx="78.278755"
+ cy="89.113289"
+ rx="7.6328082"
+ ry="7.8896384" />
+ <path
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
+ d="M 108.85714,90.247022 H 77.863093"
+ id="path4516"
+ inkscape:connector-curvature="0" />
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:17.81786728px;line-height:125%;font-family:'Bitstream Vera Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.4454467px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="118.02338"
+ y="94.698578"
+ id="text4520"><tspan
+ sodipodi:role="line"
+ id="tspan4518"
+ x="118.02338"
+ y="94.698578"
+ style="stroke-width:0.4454467px">+</tspan></text>
+ <text
+ xml:space="preserve"
+ style="font-style:normal;font-weight:normal;font-size:33.56204224px;line-height:125%;font-family:'Bitstream Vera Sans';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.83905101px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ x="25.316761"
+ y="98.306602"
+ id="text4524"><tspan
+ sodipodi:role="line"
+ id="tspan4522"
+ x="25.316761"
+ y="98.306602"
+ style="stroke-width:0.83905101px">-</tspan></text>
+ </g>
+</svg>
diff --git a/content/pont_diviseur.qet b/content/pont_diviseur.qet
new file mode 100644
index 0000000..da8a43f
--- /dev/null
+++ b/content/pont_diviseur.qet
@@ -0,0 +1,333 @@
+<project folioSheetQuantity="0" title="" version="0.5">
+ <properties/>
+ <newdiagrams>
+ <border colsize="60" displayrows="true" cols="17" rows="8" rowsize="80" displaycols="true"/>
+ <inset folio="%id/%total" date="null" title="" displayAt="bottom" author="" filename=""/>
+ <conductors tension-protocol="" type="multi" function="" horizrotatetext="0" num="_" vertirotatetext="270" displaytext="1" numsize="7" onetextperfolio="0"/>
+ <report label="%f-%l%c"/>
+ <xrefs>
+ <xref switchprefix="" type="coil" displayhas="cross" snapto="label" delayprefix="" showpowerctc="false" powerprefix=""/>
+ <xref switchprefix="" type="commutator" displayhas="cross" snapto="label" delayprefix="" showpowerctc="false" powerprefix=""/>
+ <xref switchprefix="" type="protection" displayhas="cross" snapto="label" delayprefix="" showpowerctc="false" powerprefix=""/>
+ </xrefs>
+ <conductors_autonums/>
+ </newdiagrams>
+ <diagram folio="%id/%total" date="null" colsize="60" displayrows="true" cols="17" title="" displayAt="bottom" rows="8" rowsize="80" version="0.5" order="1" author="" filename="" height="660" displaycols="true">
+ <defaultconductor tension-protocol="" type="multi" function="" horizrotatetext="0" num="_" vertirotatetext="270" displaytext="1" numsize="7" onetextperfolio="0"/>
+ <elements>
+ <element type="embed://import/10_electric/10_allpole/114_connections/cross.elmt" x="320" y="360" uuid="{d99a6d16-9838-46fb-855d-7f66a657a100}" orientation="0">
+ <terminals>
+ <terminal x="0" y="0" name="_" id="0" nameHidden="0" number="_" orientation="1"/>
+ <terminal x="0" y="0" name="_" id="1" nameHidden="0" number="_" orientation="2"/>
+ <terminal x="0" y="0" name="_" id="2" nameHidden="0" number="_" orientation="0"/>
+ <terminal x="0" y="0" name="_" id="3" nameHidden="0" number="_" orientation="3"/>
+ </terminals>
+ <inputs>
+ <input x="-0.5" y="-4.45" text="_"/>
+ </inputs>
+ </element>
+ <element type="embed://import/10_electric/10_allpole/114_connections/cross.elmt" x="320" y="170" uuid="{bc2e286f-c11e-4d9c-87c9-fc497e56a523}" orientation="0">
+ <terminals>
+ <terminal x="0" y="0" name="_" id="4" nameHidden="0" number="_" orientation="1"/>
+ <terminal x="0" y="0" name="_" id="5" nameHidden="0" number="_" orientation="2"/>
+ <terminal x="0" y="0" name="_" id="6" nameHidden="0" number="_" orientation="0"/>
+ <terminal x="0" y="0" name="_" id="7" nameHidden="0" number="_" orientation="3"/>
+ </terminals>
+ <inputs>
+ <input x="-0.5" y="-4.45" text="_"/>
+ </inputs>
+ </element>
+ <element type="embed://import/10_electric/10_allpole/114_connections/cross.elmt" x="480" y="360" uuid="{cf172964-69d2-4bb2-adbb-7d4ec27e1048}" orientation="0">
+ <terminals>
+ <terminal x="0" y="0" name="_" id="8" nameHidden="0" number="_" orientation="1"/>
+ <terminal x="0" y="0" name="_" id="9" nameHidden="0" number="_" orientation="2"/>
+ <terminal x="0" y="0" name="_" id="10" nameHidden="0" number="_" orientation="0"/>
+ <terminal x="0" y="0" name="_" id="11" nameHidden="0" number="_" orientation="3"/>
+ </terminals>
+ <inputs>
+ <input x="-0.5" y="-4.45" text="_"/>
+ </inputs>
+ </element>
+ <element type="embed://import/10_electric/10_allpole/114_connections/cross.elmt" x="480" y="250" uuid="{fff73206-f28b-4d0c-b714-17410256678a}" orientation="0">
+ <terminals>
+ <terminal x="0" y="0" name="_" id="12" nameHidden="0" number="_" orientation="1"/>
+ <terminal x="0" y="0" name="_" id="13" nameHidden="0" number="_" orientation="2"/>
+ <terminal x="0" y="0" name="_" id="14" nameHidden="0" number="_" orientation="0"/>
+ <terminal x="0" y="0" name="_" id="15" nameHidden="0" number="_" orientation="3"/>
+ </terminals>
+ <inputs>
+ <input x="-0.5" y="-4.45" text="_"/>
+ </inputs>
+ </element>
+ <element type="embed://import/10_electric/10_allpole/110_network_supplies/masse.elmt" x="400" y="380" uuid="{43f542d9-0cb8-45ab-9e2d-4290b17361f8}" orientation="0">
+ <terminals>
+ <terminal x="0" y="-7" name="_" id="16" nameHidden="0" number="_" orientation="0"/>
+ </terminals>
+ <inputs>
+ <input x="3" y="-12.45" text=""/>
+ </inputs>
+ </element>
+ <element type="embed://import/10_electric/10_allpole/395_electronics&amp;semiconductors/01_resistors/resistance.elmt" x="400" y="310" uuid="{8506203a-c3c2-4b54-ba42-c477d686f1fe}" orientation="0">
+ <terminals>
+ <terminal x="0" y="17" name="_" id="17" nameHidden="0" number="_" orientation="2"/>
+ <terminal x="0" y="-17" name="_" id="18" nameHidden="0" number="_" orientation="0"/>
+ </terminals>
+ <inputs>
+ <input x="6" y="0" text="R2"/>
+ </inputs>
+ </element>
+ <element type="embed://import/10_electric/10_allpole/395_electronics&amp;semiconductors/01_resistors/resistance.elmt" x="400" y="210" uuid="{e363d359-bb51-4614-bb29-91d5af76da2d}" orientation="0">
+ <terminals>
+ <terminal x="0" y="17" name="_" id="19" nameHidden="0" number="_" orientation="2"/>
+ <terminal x="0" y="-17" name="_" id="20" nameHidden="0" number="_" orientation="0"/>
+ </terminals>
+ <inputs>
+ <input x="6" y="0" text="R1"/>
+ </inputs>
+ </element>
+ </elements>
+ <conductors>
+ <conductor tension-protocol="" type="multi" function="" horizrotatetext="0" x="0" y="0" terminal1="0" num="" vertirotatetext="270" terminal2="11" displaytext="1" numsize="7" onetextperfolio="0"/>
+ <conductor tension-protocol="" type="multi" function="" horizrotatetext="0" x="0" y="0" terminal1="4" num="" vertirotatetext="270" terminal2="20" displaytext="1" numsize="7" onetextperfolio="0"/>
+ <conductor tension-protocol="" type="multi" function="" horizrotatetext="0" x="0" y="0" terminal1="16" num="" vertirotatetext="270" terminal2="11" displaytext="1" numsize="7" onetextperfolio="0"/>
+ <conductor tension-protocol="" type="multi" function="" horizrotatetext="0" x="0" y="0" terminal1="19" num="" vertirotatetext="270" terminal2="15" displaytext="1" numsize="7" onetextperfolio="0"/>
+ <conductor tension-protocol="" type="multi" function="" horizrotatetext="0" x="0" y="0" terminal1="18" num="" vertirotatetext="270" terminal2="19" displaytext="1" numsize="7" onetextperfolio="0">
+ <segment orientation="vertical" length="-9"/>
+ <segment orientation="vertical" length="-20"/>
+ <segment orientation="horizontal" length="0"/>
+ <segment orientation="vertical" length="-20"/>
+ <segment orientation="vertical" length="-9"/>
+ </conductor>
+ <conductor tension-protocol="" type="multi" function="" horizrotatetext="0" x="0" y="0" terminal1="16" num="" vertirotatetext="270" terminal2="17" displaytext="1" numsize="7" onetextperfolio="0"/>
+ </conductors>
+ <inputs>
+ <input x="320" y="250" text="&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;>&#xa;&lt;html>&lt;head>&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; />&lt;style type=&quot;text/css&quot;>&#xa;p, li { white-space: pre-wrap; }&#xa;&lt;/style>&lt;/head>&lt;body style=&quot; font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;&quot;>&#xa;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;>Vcc&lt;/p>&lt;/body>&lt;/html>"/>
+ <input x="510" y="300" text="&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;>&#xa;&lt;html>&lt;head>&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; />&lt;style type=&quot;text/css&quot;>&#xa;p, li { white-space: pre-wrap; }&#xa;&lt;/style>&lt;/head>&lt;body style=&quot; font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;&quot;>&#xa;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;>Va&lt;/p>&lt;/body>&lt;/html>"/>
+ </inputs>
+ <shapes>
+ <shape type="Line" y1="180" is_movable="1" y2="210" style="1" x1="320" x2="330"/>
+ <shape type="Line" y1="180" is_movable="1" y2="210" style="1" x1="320" x2="310"/>
+ <shape type="Line" y1="350" is_movable="1" y2="180" style="1" x1="320" x2="320"/>
+ <shape type="Line" y1="250" is_movable="1" y2="280" style="1" x1="510" x2="520"/>
+ <shape type="Line" y1="250" is_movable="1" y2="280" style="1" x1="510" x2="500"/>
+ <shape type="Line" y1="360" is_movable="1" y2="250" style="1" x1="510" x2="510"/>
+ </shapes>
+ </diagram>
+ <collection>
+ <category name="import">
+ <names>
+ <name lang="es">Elementos importados</name>
+ <name lang="nl">Elementen geïmporteerd</name>
+ <name lang="pt">elementos importados</name>
+ <name lang="ca">Elements importats</name>
+ <name lang="de">Importierte elemente</name>
+ <name lang="cs">Zavedené prvky</name>
+ <name lang="it">Elementi importati</name>
+ <name lang="hr">Uvezeni elementi</name>
+ <name lang="ro">Elemente importate</name>
+ <name lang="el">Εισηγμένα στοιχεία</name>
+ <name lang="pl">Elementy importowane</name>
+ <name lang="en">Imported elements</name>
+ <name lang="fr">Éléments importés</name>
+ <name lang="ru">Импортированные элементы</name>
+ </names>
+ <category name="10_electric">
+ <names>
+ <name lang="nl">Elektrotechniek</name>
+ <name lang="de">Elektrik</name>
+ <name lang="it">Elettrica</name>
+ <name lang="cs">Elektrotechnika</name>
+ <name lang="el">Ηλεκτρικά</name>
+ <name lang="pl">Elektrotechnika</name>
+ <name lang="en">Electric</name>
+ <name lang="fr">Electrique</name>
+ <name lang="ru">Электротехника</name>
+ </names>
+ <category name="10_allpole">
+ <names>
+ <name lang="nl">Veel polig</name>
+ <name lang="cs">Vícežilový</name>
+ <name lang="it">Multifilare</name>
+ <name lang="de">Allpolig</name>
+ <name lang="el">Πολυγραμμικό</name>
+ <name lang="pl">Schematy wieloliniowe</name>
+ <name lang="en">All-pole</name>
+ <name lang="fr">Multifilaire</name>
+ <name lang="ru">Многополюсные</name>
+ </names>
+ <category name="110_network_supplies">
+ <names>
+ <name lang="nl">Netwerk voedingen</name>
+ <name lang="it">Alimentazione da rete</name>
+ <name lang="de">Netzquellen</name>
+ <name lang="cs">Síťové zdroje</name>
+ <name lang="el">Παροχές δικτύου</name>
+ <name lang="pl">Sieć elektroenergetyczna</name>
+ <name lang="en">Network supplies</name>
+ <name lang="fr">Sources réseau</name>
+ <name lang="ru">Подвод питания, сеть</name>
+ </names>
+ <element name="masse.elmt">
+ <definition width="20" type="element" link_type="simple" hotspot_x="9" hotspot_y="20" version="0.5" height="30" orientation="dyyy">
+ <uuid uuid="{5983fe6f-de69-4368-a387-a6ce3b9c2951}"/>
+ <names>
+ <name lang="pt">Massa</name>
+ <name lang="es">Masa</name>
+ <name lang="nl">Massa</name>
+ <name lang="el">Σασί</name>
+ <name lang="de">Masse</name>
+ <name lang="cs">Kostra</name>
+ <name lang="pl">Masa</name>
+ <name lang="it">Massa</name>
+ <name lang="ar">هيكل معدني</name>
+ <name lang="en">Chassis</name>
+ <name lang="fr">Masse</name>
+ <name lang="ru">Шасси</name>
+ </names>
+ <informations>Author: The QElectroTech team
+License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
+ <description>
+ <input tagg="label" x="3" y="-12.45" size="9" rotate="true" text="_"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" y1="0.5" y2="3" x1="7.5" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="5"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" y1="3" y2="0.5" x1="-1" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="1.5"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" y1="3" y2="0.5" x1="-7" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-4.5"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" y1="3" y2="0.5" x1="2" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="4.5"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" y1="3" y2="0.5" x1="-4" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-1.5"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" y1="0" y2="0" x1="-7" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="8"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" y1="-10" y2="0" x1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0"/>
+ <terminal x="0" y="-11" orientation="n"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ <category name="395_electronics&amp;semiconductors">
+ <names>
+ <name lang="nl">Electronica en halfgeleiders</name>
+ <name lang="it">Elettronica e semiconduttori</name>
+ <name lang="de">Elektronik und Halbleiter</name>
+ <name lang="el">Ηλεκτρονικά και ημιαγωγοί</name>
+ <name lang="pl">Elektronika i półprzewodniki</name>
+ <name lang="en">Electronics and semiconductors</name>
+ <name lang="fr">Electronique et semi-conducteurs</name>
+ <name lang="ru">Электроника и полупроводники</name>
+ </names>
+ <category name="01_resistors">
+ <names>
+ <name lang="es">Resistencia</name>
+ <name lang="nl">Weerstand</name>
+ <name lang="pt">Resistência</name>
+ <name lang="de">Widerstände</name>
+ <name lang="it">Resistori</name>
+ <name lang="cs">Odporník</name>
+ <name lang="el">Αντιστάσεις</name>
+ <name lang="ar">مُقاومة</name>
+ <name lang="pl">Rezystory</name>
+ <name lang="en">Resistors</name>
+ <name lang="fr">Résistances</name>
+ <name lang="ru">Резисторы</name>
+ </names>
+ <element name="resistance.elmt">
+ <definition width="20" type="element" link_type="simple" hotspot_x="10" hotspot_y="29" version="0.5" height="60" orientation="dyyy">
+ <uuid uuid="{af30335a-4d6f-4d8c-a3a5-60c5e1d43dc7}"/>
+ <names>
+ <name lang="el">Αντίσταση</name>
+ <name lang="fr">Résistance</name>
+ <name lang="de">Widerstand</name>
+ <name lang="cs">Odporník</name>
+ <name lang="ru">Резистор</name>
+ <name lang="es">Resistencia</name>
+ <name lang="ar">مُقاومة</name>
+ <name lang="it">Resistore</name>
+ <name lang="pl">Rezystor</name>
+ <name lang="en">Resistor</name>
+ <name lang="pt">Resistência</name>
+ <name lang="nl">Weerstand</name>
+ </names>
+ <informations>EN 60617: 04-01-01</informations>
+ <description>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" y1="-10" y2="-20" x1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" y1="10" y2="20" x1="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="0"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" y1="10" y2="-10" x1="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="4"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" y1="10" y2="10" x1="-4" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="4"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" y1="-10" y2="-10" x1="4" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-4"/>
+ <line end1="none" end2="none" antialias="false" length1="1.5" length2="1.5" y1="-10" y2="10" x1="-4" style="line-style:normal;line-weight:normal;filling:none;color:black" x2="-4"/>
+ <input tagg="label" x="6" y="0" size="9" text="_" rotate="true"/>
+ <terminal x="0" y="21" orientation="s"/>
+ <terminal x="0" y="-21" orientation="n"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ </category>
+ <category name="114_connections">
+ <names>
+ <name lang="nl">Verbindingen</name>
+ <name lang="de">Verbindungen</name>
+ <name lang="it">Collegamenti</name>
+ <name lang="cs">Spojení</name>
+ <name lang="el">Ενώσεις</name>
+ <name lang="pl">Połączenie</name>
+ <name lang="en">Connections</name>
+ <name lang="fr">Connections</name>
+ <name lang="ru">Соединения</name>
+ </names>
+ <element name="cross.elmt">
+ <definition width="20" type="element" link_type="simple" hotspot_x="9" hotspot_y="9" version="0.5" height="20" orientation="dyyy">
+ <uuid uuid="{eb8040c8-6998-4f43-818b-1d368825ffac}"/>
+ <names>
+ <name lang="en">Cross</name>
+ <name lang="it">Croce</name>
+ <name lang="ru">Пересечение</name>
+ <name lang="fr">Croix</name>
+ <name lang="pl">Połączenie 2</name>
+ <name lang="cs">Kříž</name>
+ </names>
+ <informations/>
+ <description>
+ <circle x="-1" y="-1" antialias="true" style="line-style:normal;line-weight:normal;filling:black;color:black" diameter="2"/>
+ <input tagg="label" x="-0.5" y="-4.45" size="1" rotate="true" text="_"/>
+ <terminal x="4" y="0" orientation="e"/>
+ <terminal x="0" y="4" orientation="s"/>
+ <terminal x="0" y="-4" orientation="n"/>
+ <terminal x="-4" y="0" orientation="w"/>
+ </description>
+ </definition>
+ </element>
+ <element name="corner.elmt">
+ <definition width="20" type="element" link_type="simple" hotspot_x="11" hotspot_y="7" version="0.5" height="20" orientation="dyyy">
+ <uuid uuid="{2c6c492e-8d8e-402e-a449-0cf5a7462ced}"/>
+ <names>
+ <name lang="en">Corner</name>
+ <name lang="it">Angolo</name>
+ <name lang="ru">Угол</name>
+ <name lang="fr">Coin</name>
+ <name lang="pl">Narożnik</name>
+ <name lang="cs">Roh</name>
+ </names>
+ <informations/>
+ <description>
+ <input tagg="label" x="-0.5" y="-0.45" size="1" rotate="true" text="_"/>
+ <terminal x="0" y="4" orientation="s"/>
+ <terminal x="-4" y="0" orientation="w"/>
+ </description>
+ </definition>
+ </element>
+ </category>
+ <category name="120_cables&amp;wiring">
+ <names>
+ <name lang="nl">Kabels en draden</name>
+ <name lang="it">Cavi e collegamenti</name>
+ <name lang="de">Kabel und Verdrahtung</name>
+ <name lang="cs">Kabely a drátové propojení</name>
+ <name lang="el">Καλώδια και καλωδίωση</name>
+ <name lang="pl">Przewody i kable</name>
+ <name lang="en">Cables and wiring</name>
+ <name lang="fr">Câbles et filerie</name>
+ <name lang="ru">Кабели и провода</name>
+ </names>
+ </category>
+ </category>
+ </category>
+ </category>
+ </collection>
+</project>
diff --git a/content/pont_diviseur.svg b/content/pont_diviseur.svg
new file mode 100644
index 0000000..7eb903b
--- /dev/null
+++ b/content/pont_diviseur.svg
@@ -0,0 +1,549 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg width="370.417mm" height="371.828mm"
+ xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
+<title>Qt SVG Document</title>
+<desc>Generated with Qt</desc>
+<defs>
+</defs>
+<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="#ffffff" fill-opacity="1" stroke="none" transform="matrix(3.2788,0,0,3.2788,-978.288,-506.575)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M298.368,154.5 L538.547,154.5 L538.547,395 L298.368,395 L298.368,154.5"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,-978.288,-506.575)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="510,360 510,250 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,-978.288,-506.575)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="510,250 500,280 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,-978.288,-506.575)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="510,250 520,280 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,-978.288,-473.787)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="320,340 320,170 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,-978.288,-506.575)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="320,180 310,210 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,-978.288,-506.575)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="320,180 330,210 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-3.2788,3.2788,0,333.232,654.121)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-3.2788,3.2788,0,333.232,654.121)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,-978.288,-506.575)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M400,369 L400,360 L400,350 L400,340 L400,331"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-3.2788,3.2788,0,333.232,359.029)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0,-3.2788,3.2788,0,333.232,359.029)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,-978.288,-506.575)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M400,289 L400,280 L400,260 L400,240 L400,231"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,429.957,313.125)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,429.957,313.125)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,-978.288,-506.575)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M400,231 L400,240 L400,250 L467,250 L476,250"/>
+</g>
+
+<g fill="#000000" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,-978.288,-506.575)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="400" cy="250" r="1"/>
+<circle cx="400" cy="250" r="1"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,429.957,673.793)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,429.957,673.793)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,-978.288,-506.575)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M400,369 L400,360 L467,360 L476,360"/>
+</g>
+
+<g fill="#000000" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,-978.288,-506.575)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="400" cy="360" r="1"/>
+<circle cx="400" cy="360" r="1"/>
+<circle cx="400" cy="360" r="1"/>
+<circle cx="400" cy="360" r="1"/>
+<circle cx="400" cy="360" r="1"/>
+<circle cx="400" cy="360" r="1"/>
+<circle cx="400" cy="360" r="1"/>
+<circle cx="400" cy="360" r="1"/>
+<circle cx="400" cy="360" r="1"/>
+<circle cx="400" cy="360" r="1"/>
+<circle cx="400" cy="360" r="1"/>
+<circle cx="400" cy="360" r="1"/>
+<circle cx="400" cy="360" r="1"/>
+<circle cx="400" cy="360" r="1"/>
+<circle cx="400" cy="360" r="1"/>
+<circle cx="400" cy="360" r="1"/>
+<circle cx="400" cy="360" r="1"/>
+<circle cx="400" cy="360" r="1"/>
+<circle cx="400" cy="360" r="1"/>
+<circle cx="400" cy="360" r="1"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,210.277,50.8214)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,210.277,50.8214)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,-978.288,-506.575)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M324,170 L333,170 L400,170 L400,180 L400,189"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,320.117,673.793)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,320.117,673.793)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,-978.288,-506.575)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<path vector-effect="none" fill-rule="evenodd" d="M324,360 L333,360 L400,360 L467,360 L476,360"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,333.232,181.973)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="0,-10 0,-20 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,333.232,181.973)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="0,10 0,20 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,333.232,181.973)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="4,10 4,-10 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,333.232,181.973)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-4,10 4,10 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,333.232,181.973)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="4,-10 -4,-10 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,333.232,181.973)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-4,-10 -4,10 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,352.905,145.907)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,352.905,145.907)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="4" y="15" font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+ >R1</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,352.905,145.907)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,333.232,509.853)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="0,-10 0,-20 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,333.232,509.853)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="0,10 0,20 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,333.232,509.853)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="4,10 4,-10 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,333.232,509.853)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-4,10 4,10 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,333.232,509.853)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="4,-10 -4,-10 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,333.232,509.853)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-4,-10 -4,10 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,352.905,473.787)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,352.905,473.787)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="4" y="15" font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+ >R2</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,352.905,473.787)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,333.232,739.369)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="7.5,0.5 5,3 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,333.232,739.369)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-1,3 1.5,0.5 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,333.232,739.369)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-7,3 -4.5,0.5 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,333.232,739.369)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="2,3 4.5,0.5 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,333.232,739.369)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-4,3 -1.5,0.5 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,333.232,739.369)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="-7,0 8,0 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(3.2788,0,0,3.2788,333.232,739.369)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<polyline fill="none" vector-effect="none" points="0,-10 0,0 " />
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,343.069,662.482)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,343.069,662.482)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="#000000" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,595.537,313.125)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="0" cy="0" r="1"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,593.897,283.78)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,593.897,283.78)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="4" y="5" font-family="Sans Serif" font-size="1" font-weight="100" font-style="normal"
+ >_</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,593.897,283.78)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="#000000" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,595.537,673.793)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="0" cy="0" r="1"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,593.897,644.448)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,593.897,644.448)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="4" y="5" font-family="Sans Serif" font-size="1" font-weight="100" font-style="normal"
+ >_</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,593.897,644.448)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="#000000" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,70.9285,50.8214)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="0" cy="0" r="1"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,69.2891,21.4761)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,69.2891,21.4761)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="4" y="5" font-family="Sans Serif" font-size="1" font-weight="100" font-style="normal"
+ >_</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,69.2891,21.4761)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,693.901,477.065)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,693.901,477.065)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="4" y="15" font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+ >Va</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,693.901,477.065)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="#000000" fill-opacity="1" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,70.9285,673.793)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<circle cx="0" cy="0" r="1"/>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,69.2891,644.448)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,69.2891,644.448)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="4" y="5" font-family="Sans Serif" font-size="1" font-weight="100" font-style="normal"
+ >_</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,69.2891,644.448)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,70.9285,313.125)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,70.9285,313.125)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+<text fill="#000000" fill-opacity="1" stroke="none" xml:space="preserve" x="4" y="15" font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+ >Vcc</text>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(3.2788,0,0,3.2788,70.9285,313.125)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+
+<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(0.75,0,0,0.75,0,0)"
+font-family="Sans Serif" font-size="9" font-weight="400" font-style="normal"
+>
+</g>
+</g>
+</svg>
diff --git a/content/s-l500.jpg b/content/s-l500.jpg
new file mode 100644
index 0000000..797a62b
--- /dev/null
+++ b/content/s-l500.jpg
Binary files differ
diff --git a/notes_arduino.rst b/notes_arduino.rst
new file mode 100644
index 0000000..2b4d648
--- /dev/null
+++ b/notes_arduino.rst
@@ -0,0 +1,1260 @@
+.. -*- mode: rst -*-
+.. -*- coding: utf-8 -*-
+
+.. default-role:: literal
+.. role:: smallcaps
+.. role:: index
+.. |led| replace:: :smallcaps:`led`
+
+.. include:: resources/units.rst
+
+.. sectnum::
+ :depth: 2
+
+****************
+La carte Arduino
+****************
+
+.. image:: content/ARDUINO_UNO_DIP_01.png
+ :width: 50%
+ :align: center
+
+.. contents::
+ :depth: 2
+
+.. A partir de maintenant, on insère un saut de page avant chaque nouvelle
+ section, et l'on redéfini l'espace après le titre de la section.
+
+.. raw:: latex
+
+ \newcommand{\sectionbreak}{\clearpage}
+ \titlespacing*{\section}{0pt}{1.1\baselineskip}{100pt}
+
+===============================
+Les sorties de la carte Arduino
+===============================
+
+Premier programme
+=================
+
+Faire clignoter une |led| est l'une des premières étapes avec Arduino. C'est
+aussi une introduction pour comprendre le fonctionnement de la carte.
+
+Ce premier programme ne nécessite pas de branchement : une |led| est présente
+sur la carte et devrait s'allumer automatiquement en lançant le programme.
+
+Décomposition du programme
+--------------------------
+
+L'initialisation
+~~~~~~~~~~~~~~~~
+
+L'initialisation s'exécute seulement au démarrage du programme sur la carte
+(et sera de nouveau exécutée si l'on appuie sur le bouton `reset`).
+
+.. code-block:: arduino
+ :number-lines: 9
+
+ // the setup routine runs once when you press reset:
+ void setup() {
+ // initialize the digital pin as an output.
+ pinMode(13, OUTPUT);
+ }
+
+Une seule instruction est lancée dans cet extrait : :index:`pinMode`
+`pinMode` [#]_. Celle-ci permet d'indiquer au microcontrolleur si la broche
+doit être configurée pour envoyer du courant, ou en recevoir. Puisque nous
+souhaitons ici allumer une |led|, nous lui passons le paramètre `OUTPUT` en
+argument.
+
+.. [#] https://www.arduino.cc/en/Reference/pinMode
+
+L'exécution
+~~~~~~~~~~~
+
+Voici le cœur du programme, ces instructions seront exécutées en boucles,
+indéfiniment, tant que la carte sera sous tension.
+
+.. code-block:: arduino
+ :number-lines: 15
+
+ // the loop routine runs over and over again forever:
+ void loop() {
+ // turn the LED on (HIGH is the voltage level)
+ digitalWrite(13, HIGH);
+ delay(1000); // wait for a second
+ digitalWrite(13, LOW);
+ // turn the LED off by making the voltage LOW
+ delay(1000); // wait for a second
+ }
+
+Ce bloc est composé de quatre instructions, qui appellent deux fonctions
+différentes. :index:`digitalWrite` `digitalWrite` [#]_ permet d'envoyer ou de
+couper le courant sur une broche donnée. Pour allumer la |led|, nous commençons
+donc en donnant `HIGH` en paramètre.
+
+.. [#] https://www.arduino.cc/en/Reference/digitalWrite
+
+Vient ensuite une instruction permettant de faire une pause dans le programme :
+:index:`delay` `delay` [#]_. Cette fonction prend en paramètre la durée de la
+pause (en millisecondes, `1000` vaut donc une seconde).
+
+.. [#] https://www.arduino.cc/en/Reference/delay
+
+Afin de faire clignoter la |led|, il est nécessaire de l'éteindre ensuite.
+C'est pourquoi nous retrouvons l'instruction `digitalWrite`, mais cette fois
+avec la valeur `LOW`, suivi d'une nouvelle pause d'une seconde.
+
+.. sidebar:: digital
+
+ digital signifie *numérique*. Le terme indique une valeur que l'on peut
+ exprimer en nombre entier (1, 2, 3…).
+
+Le programme complet
+--------------------
+
+.. sidebar:: Chargement
+
+ Ce programme est disponible dans l'environnement Arduino dans les exemples :
+ Basic / Blink
+
+.. code-block:: arduino
+
+ /*
+ Blink
+ Turns on an LED on for one second, then off for one
+ second, repeatedly.
+
+ This example code is in the public domain.
+ */
+
+ // the setup routine runs once when you press reset:
+ void setup() {
+ // initialize the digital pin as an output.
+ pinMode(13, OUTPUT);
+ }
+
+ // the loop routine runs over and over again forever:
+ void loop() {
+ // turn the LED on (HIGH is the voltage level)
+ digitalWrite(13, HIGH);
+ delay(1000); // wait for a second
+ digitalWrite(13, LOW);
+ // turn the LED off by making the voltage LOW
+ delay(1000); // wait for a second
+ }
+
+Utiliser une led externe
+========================
+
+.. sidebar:: Une led
+
+ .. image:: content/5mm_Red_LED.jpg
+ :align: center
+ :width: 100%
+
+Suite à ce premier exemple, nous allons maintenant faire évoluer notre
+programme pour l'adapter à une |led| que nous allons brancher à la carte.
+Puisque nous intégrons un composant externe, nous allons devoir veiller à ce
+que celui-ci soit compatible avec l'alimentation de la carte Arduino : certains
+composants nécessitent une tension plus importante (par exemple un moteur),
+d'autre des tensions plus faibles (au risque de faire griller le composant).
+
+Le tableau suivant indique la valeur minimale et maximale supportée par
+différents types de |led|, ainsi que l'intensité du courant pour la tension
+minimale et maximale.
+
+======= =========== ============== ================
+Taille Couleur Tension (`V`) Intensité (`mA`)
+======= =========== ============== ================
+3mm rouge `1.8`-`2.5` `5`-`18`
+3mm vert `2.1`-`2.6` `5`-`17.5`
+3mm jaune `1.8`-`2.0` `5`-`17.5`
+5mm rouge `1.9`-`2.3` `5`-`18`
+5mm vert `1.9`-`2.5` `4`-`14`
+5mm jaune `1.9`-`2.5` `5`-`15`
+======= =========== ============== ================
+
+.. sidebar:: Polarisation
+
+ la |led| ne laisse passer le courant que dans un seul sens. C'est pourquoi
+ les deux broches ne sont pas de la même longueur. La patte la plus courte
+ doit être branchée sur le pôle `-`.
+
+.. admonition:: Attention
+ :class: warning
+
+ La tension de sortie de la carte est de 5 |V|. Or, en lisant le tableau, on
+ voit bien que les |led|\ s ne supporteront pas cette tension à leur borne, il
+ est donc nécessaire de mettre en place un système pour réduire la tension
+ dans les limites de ce qui est acceptable par la |led|.
+
+Dans notre situation, la tension délivrée par la carte Arduino et le courant
+qui traversera la |led| sont stables — la |led| ne modifie pas son comportement
+pendant son fonctionnement. Nous pouvons utiliser le schéma le plus simple pour
+réduire la tension : *la résistance chutrice*.
+
+.. figure:: content/cligo_led.pdf
+ :width: 100%
+
+ Arduino, LED et une résistance
+
+Calcul de la résistance
+-----------------------
+
+La résistance à placer se calcule de la manière suivante :
+
+.. math::
+
+ R = \frac{(U-Ul)}{I}
+
+.. sidebar:: Valeurs
+
+ :R: Résistance
+ :U: Tension de l'alimentation
+ :Ul: Tension de la |led|
+ :I: Intensité de la |led|
+
+Dans notre exemple, en prenant l'intensité maximale supportée par la |LED| nous
+obtenons le calcul suivant :
+
+.. math::
+
+ R &= \frac{(5-2.5)}{0.018} \\
+ &= 139\ \Omega
+
+.. sidebar:: Déjà des calculs ?
+
+ Ce petit calcul peut sembler théorique, toutefois nous en aurons besoin par
+ la suite, quand il sera nécessaire d'alimenter des composants avec des
+ tensions différentes que l'alimentation. (Nous aborderons cela plus loin avec
+ les notions de *Pont diviseur*, ainsi que les *régulateurs de tension*).
+
+La résistance choisie doit donc avoir une valeur supérieure. En consultant la
+série E12 [#]_, on peut choisir la valeur la plus proche (par exemple 220
+:math:`\Omega`).
+
+.. [#] Série de douze valeurs utilisées dans les composants électroniques :
+ https://fr.wikipedia.org/wiki/CEI_60063
+
+Vérification de l'intensité
+---------------------------
+
+On sait que : :math:`I = \frac{U}{R}` soit ici :
+
+.. math::
+
+ I &= \frac{U-Ul}{R} \\
+ &= \frac{5-2.5}{220} \\
+ &= 11.36\ mA
+
+Ce qui est suffisant pour alimenter notre composant.
+
+
+Mise à jour du programme
+------------------------
+
+Nous pouvons maintenant mettre à jour notre programme. Il s'agit toujours du
+même code que celui présenté plus haut avec toutefois une légère différence :
+au lieu d'envoyer du courant sur la broche `13`, nous l'envoyons désormais sur
+la broche `9`. Il est donc nécessaire de faire quelques modifications au lignes
+`12`, `18` et `20`.
+
+Faire varier la luminosité
+==========================
+
+Il existe 6 ports sur la carte Arduino permettant de faire varier la tension de
+sortie : `3`, `5`, `6`, `9`, `10` et `11`. Les autres port permettent seulement
+d'envoyer la tension `HIGH` ou `LOW`, c'est-à-dire 5 |V| ou 0 |V|.
+
+Il est possible d'utiliser la fonction :index:`analogWrite` `analogWrite` [#]_
+sur chacun de ses ports, en envoyant une valeur comprise entre `0` et `255`.
+
+.. [#] https://www.arduino.cc/en/Reference/AnalogWrite
+
+.. raw:: latex
+
+
+ \begin{center}
+ \begin{tikzpicture}[scale=2.6]
+
+ \foreach \x in {0,0.5,...,5} {
+ \pgfmathtruncatemacro\result{\x * 255 / 5}
+ \draw (\x,-4pt) -- (\x,4pt)
+ node [below,yshift=-20] {\pgfmathprintnumber{\result}}
+ node [above] {$\x$V};
+ }
+
+ \draw (0,0) -- (5,0);
+
+ \end{tikzpicture}
+ \end{center}
+
+.. sidebar:: `PWM`
+
+ La variation de la tension est réalisée via la *modulation de largeur
+ d'impulsions* [#]_ qui permet de faire varier la tension en faisant varier de
+ manière très brève la durée pendnant laquelle le courant est émis.
+
+.. [#] https://fr.wikipedia.org/wiki/Modulation_de_largeur_d'impulsion
+
+.. note::
+
+ Les valeurs présentées ici sont des tensions *moyennes*. En envoyant la
+ valeur `127`, la tension sur la broche sera de 5 |V|, mais pendant une durée
+ très courte :
+
+ .. raw:: latex
+
+ \begin{tikzpicture}
+ \draw[help lines] (0,0) grid (7,1);
+ \draw[thick] (0,0) node[anchor=base east] {0V} -- ++(0,0)
+ \foreach \x in {1,...,7}{
+ -- +(0,1) -- +(0.5,1) -- +(0.5,0) -- ++(1,0)
+ } -- +(0,.5);
+ \draw[thick,anchor=north east] (0,1) node {5V};
+ \end{tikzpicture}
+
+ Avec la valeur `192` la tension reste à 5 |V| pendant une durée plus longue :
+
+ .. raw:: latex
+
+ \begin{tikzpicture}
+ \draw[help lines] (0,0) grid (7,1);
+ \draw[thick] (0,0) node[anchor=south east] {0V} -- ++(0,0)
+ \foreach \x in {1,...,7}{
+ -- +(0,1) -- +(0.75,1) -- +(0.75,0) -- ++(1,0)
+ } -- +(0,.5);
+ \draw[thick,anchor=north east] (0,1) node {5V};
+ \end{tikzpicture}
+
+ Dans tous les cas, la tension à la sortie de la borne sera de 5 |V|. Il est
+ toutefois possible de transformer ce signal en une vraie tension linéaire, à
+ l'aide d'un condensateur supplémentaire [#]_.
+
+.. [#] https://provideyourown.com/2011/analogwrite-convert-pwm-to-voltage/
+
+.. admonition:: Mesure de la tension
+ :class: exercice
+
+ Avec un multimètre, mesurer la tension en sortie de la borne en fonction de
+ diverses valeurs.
+
+Programme
+---------
+
+.. sidebar:: Ressource limitée !
+
+ Cette capacité à contrôler la tension de sortie est très intéressante (par
+ exemple pour demander à un moteur de tourner plus ou moins vite), mais est
+ limitée à 6 bornes seulement. Il vaut mieux les réserver quand nous avons
+ besoin d'une sortie analogique.
+
+.. code-block:: arduino
+
+ // Fade
+
+ // This example shows how to fade an LED on pin 9
+ // using the analogWrite() function.
+
+ // This example code is in the public domain.
+
+ int led = 9; // the pin that the LED is attached to
+ int brightness = 0; // how bright the LED is
+ int fadeAmount = 5; // how many points to fade the LED by
+
+ // the setup routine runs once when you press reset:
+ void setup() {
+ // declare pin 9 to be an output:
+ pinMode(led, OUTPUT);
+ }
+
+ // the loop routine runs over and over again forever:
+ void loop() {
+ // set the brightness of pin 9:
+ analogWrite(led, brightness);
+
+ // change the brightness for next time through the loop:
+ brightness = brightness + fadeAmount;
+
+ // reverse the direction of the fading
+ // at the ends of the fade:
+ if (brightness == 0 || brightness == 255) {
+ fadeAmount = -fadeAmount ;
+ }
+ // wait for 30 milliseconds to see the dimming effect
+ delay(30);
+ }
+
+
+Générer du son
+==============
+
+.. sidebar:: Un piezzo buzzer
+
+ .. image:: content/piezzo_buzzer.jpg
+ :align: center
+ :width: 100%
+
+Avec un piezzo buzzer il est possible d'ajouter une sortie sonore au programme.
+Ceux que l'on trouve dans le commerce supportent une tension allant de 3 à
+24 |V|, ce qui permet de brancher le buzzer directement en sortie de la carte.
+
+Le composant permet de produire du son en fonction de la fréquence du signal de
+sortie.
+
+Il est possible d'utiliser la fonction `digitalWrite` sur une borne pour
+produire un beep, mais il est plus intéressant de pouvoir contrôler la
+fréquence de sortie. Nous utiliserons pour cela la fonction :index:`tone`
+`tone` [#]_. (Cette instruction peut être utilisée sur une sortie numérique, il
+n'est donc pas nécessaire de réserver une sortie analogique pour le buzzer.)
+
+.. [#] https://www.arduino.cc/en/Reference/Tone
+
+.. sidebar:: Qualité du son
+
+ La fonction `tone` ne sait produire qu'un signal carré, ce qui signifie que
+ le son n'aura jamais les harmoniques d'un fichier :smallcaps:`mp3` ou
+ :smallcaps:`wav`.
+
+.. note::
+
+ La fonction `tone` n'est pas disponible sur toutes les cartes Arduino. Si
+ vous utilisez une carte *Gemma* ou *Due* (ou un autre microcontrolleur), la
+ fonction ne sera pas disponible.
+
+ Dans ce cas, il est possible d'écrire soit même la fonction en utilisant
+ les instructions `delayMicroseconds` et `digitalWrite`. Dans ce cas la
+ fréquence des sons ne sera pas garantie, mais le but n'est pas de faire de la
+ carte Arduino un outil `hi-fi` :
+
+ .. code-block:: arduino
+
+ void tone(int targetPin, long frequency, long length) {
+ // calculate the delay value between transitions
+ // 1 second's worth of microseconds, divided by the
+ // frequency, then split in half since there are two
+ // phases to each cycle
+ long delayValue = 1000000/frequency/2;
+ // calculate the number of cycles for proper timing
+ // multiply frequency, which is really cycles per
+ // second, by the number of seconds to get the
+ // total number of cycles to produce
+ long numCycles = frequency * length/ 1000;
+ for (long i=0; i < numCycles; i++) {
+ // write the buzzer pin high to push out the diaphram
+ digitalWrite(targetPin,HIGH);
+ // wait for the calculated delay value
+ delayMicroseconds(delayValue);
+ // write the buzzer pin low to pull back the diaphram
+ digitalWrite(targetPin,LOW);
+ // wait again or the calculated delay value
+ delayMicroseconds(delayValue);
+ }
+ }
+
+Par exemple, en connectant le buzzer sur la broche `8`, l'instruction suivante
+permettra de jouer un *la* pendant une seconde :
+
+.. code-block:: arduino
+
+ tone(8, 440, 1000);
+
+En faisant varier la fréquence ainsi que la durée de chaque note, nous pourrons
+ainsi jouer des mélodies (simples). Il est par contre nécessaire de connaître
+la fréquence de la note que l'on souhaite jouer. (La table peut être obtenue
+facilement sur internet [#]_).
+
+.. [#] https://fr.wikipedia.org/wiki/Note_de_musique
+
+.. sidebar:: Codification des notes
+
+ En anglais, chaque note est codée par une lettre de A à G : C pour Do, D pour
+ Ré, F pour Mi, etc.
+
+Plutôt que d'écrire directement les fréquence dans le programme, il est plus
+simple de coder les notes, et laisser l'application jouer les notes
+correspondantes ; la notation anglaise est souvent utilisée. En associant
+chaque fréquence à une valeur dans le programme, il devient plus facile
+d'écrire la mélodie qui peut être codée en écrivant directement les notes de
+musiques !
+
+.. admonition:: Exercice
+ :class: exercice
+
+ Écrire une petite mélodie !
+
+Contrôler un moteur
+===================
+
+Avec ces instructions, il est temps de passer aux choses sérieuses. En
+contrôlant les sorties à l'aide de l'instruction `digitalWrite`, nous allons
+pouvoir donner du mouvement au robot en lui donant des roues. Mettre en route
+un moteur n'est pas difficile, mais nécessite de prendre certaines précautions
+avant de connecter notre moteur.
+
+.. admonition:: Attention
+ :class: warning
+
+ Ne jamais brancher un moteur directement à la carte Arduino. D'une part parce
+ que la tension nécessaire pour activer le moteur risque d'être trop
+ importante pour la carte (dans le meilleur des cas, le moteur ne tournera
+ pas, dans le pire des cas la carte grillera), mais aussi parce qu'un moteur
+ fonctionne de la même manière qu'une dynamo : il produit du courant quand il
+ tourne. Ce courant risque de remonter dans la carte et générer un
+ court-circuit.
+
+Pour cette raison, nous utiliserons un contrôleur externe, destiné à nous
+éviter de nombreuses complications : le L293D [#]_. Cette puce va nous permettre :
+
+.. [#] http://www.ti.com/lit/ds/symlink/l293d.pdf [#]_
+
+.. [#] Prenez le temps de lire les spécification des composants. Elles sont en
+ anglais, mais donnent toutes les informations nécessaire pour utiliser
+ le composant au mieux : les caractéristiques générale, mais également
+ les cas d'utilisation, les valeurs maximales supportées, les conseils
+ de branchement etc.
+
+.. sidebar:: Une puce L293D
+
+ .. image:: content/L293D_Motor_Driver.jpg
+ :align: center
+ :width: 100%
+
+- de protéger la carte Arduino en empêchant les surtensions : il intègre des
+ diodes de protections et des contrôleurs thermiques pour protéger le circuit.
+- de limiter le cablage et les composants à utiliser : le composant supporte
+ des tensions de fonctionnement allant de 4,5 à 36 |V|, et permettra donc de
+ délivrer des tensions beaucoup plus puissantes que ce que peut fournir la
+ carte Arduino.
+
+.. note::
+
+ Il est parfaitement possible de contrôler un moteur directement à partir de
+ la carte Arduino sans utiler ce type de composant, mais nous compliquons
+ alors le schéma de cablage inutilement. La documentation technique du
+ composant nous montre comment réaliser le cablage équivalent avec des diodes
+ et des transitors (un double pont en H).
+
+En fait, la puce ne permet pas simplement de contrôler un moteur, mais quatre
+! (ou alors deux moteurs pouvant tourner dans les deux sens). Cela correspond à
+notre robot qui aura deux roues motrices : une seule puce et quelques fils
+pourront permettre de faire rouler notre robot et lui faire réaliser quelques
+manœuvres.
+
+.. figure:: content/l293d.pdf
+ :width: 50%
+
+ L293D
+
+ :EN: Puissance du moteur : permet de contrôler la vitesse de rotation du
+ moteur en fonction de la tension appliquée à la borne. Cette borne
+ peut être reliée à une borne analogique de la carte Arduino.
+ :A: Activation du moteur : permet d'activer le moteur connecté. Ces
+ bornes sont à relier aux sorties digitales de la carte.
+ :Y: Sortie à relier aux bornes des moteurs.
+ :VCC2: Alimentation des moteurs : cette borne est à relier à
+ l'alimentation générale (36 |V| max.)
+ :VCC1: Alimentation du composant (5 |V|) : cette borne est à relier à
+ l'alimentation stabilisée de la carte Arduino.
+ :ground: Ces bornes sont à relier à la masse
+
+Montage général
+---------------
+
+Il y a trois types de bornes sur le composant : celles destinées à être
+connectées au moteur (`Y`), celles destinées à la carte Arduino (`EN` et `A`),
+et celles qui qui servent à l'alimentation (`VCC`). Comme il est possible de
+contrôler plusieurs moteurs, les bornes sont numérotées en fonction du moteur
+contrôlé.
+
+Dans le cas d'un moteur devant tourner dans les deux sens, les bornes `Y`
+doivent être connectées aux deux pattes du moteur : en envoyant du courant sur
+l'une des deux bornes `A`, il devient possible de faire tourner le moteur dans
+un sens ou un autre (le tableau présente l'exemple d'un moteur connecté aux
+bornes `1` et `2`, un deuxième moteur pourra être contrôlé de la même manière
+en le branchant sur les bornes `3` et `4`) :
+
+.. sidebar:: frein électromagnétique
+
+ Le moteur génère de l'électricité en tournant (comme une dynamo). En
+ alimentant le moteur avec l'électricité qu'il produit lui-même, on peut ainsi
+ freiner le moteur avec sa propre énergie !
+
+=========== =========== =============================================
+Tension 1A Tension 2A Résultat
+=========== =========== =============================================
+`LOW` `LOW` Arrêt du moteur (frein électromagnétique)
+`LOW` `HIGH` Faire tourner le moteur dans un sens
+`HIGH` `LOW` Faire tourner le moteur en sens inverse
+`HIGH` `HIGH` Arrêt du moteur (frein électromagnétique)
+=========== =========== =============================================
+
+Voir le schéma de branchement avec deux moteurs contrôlés depuis la carte
+Arduino.
+
+.. figure:: content/arduino_l293d.pdf
+ :width: 100%
+
+ L293D, Arduino et deux moteurs
+
+ Les cables reliant le L293D à la masse, et l'alimentation des moteurs ne sont
+ pas représentés.
+
+ :Cable bleu: Marche avant
+ :Cable vert: Marche arrière
+ :Cable orange: Puissance du moteur
+
+.. raw:: latex
+
+ \pagebreak
+
+Programme
+---------
+
+.. sidebar:: Valeurs
+
+ Les valeurs ne sont pas choisies par hasard : elles correspondent aux
+ paramètres des fonctions `digitalWrite` et `analogWrite` !
+
+Ce programme n'est pas disponible dans l'environnement Arduino, cette fois nous
+allons devoir l'écrire nous même. Afin de simplifier l'écriture, nous allons
+définir une fonction `runMotor` qui prendra trois paramètres :
+
+:motor: Le numéro du moteur à activer, le 1er moteur déclaré aura la numéro `0`
+:direction: La direction du moteur, elle peut prendre deux valeurs `HIGH` ou
+ `LOW`
+:speed: La vitesse de rotation, cette valeur peut aller de `0` à `255`
+
+.. code-block:: arduino
+
+ void runMotor(int motor, int direction, int speed) {
+ // …
+ }
+
+
+.. admonition:: Contrôle du moteur
+ :class: exercice
+
+ Avec la fonction `runMotor`, nous pouvons donner du mouvement au robot. En
+ donnant des paramètres de sens et de vitesse différents à la roue gauche et
+ droite le robot se déplacera différement. Donnez les paramètres de la
+ fonction `runMotor` pour réaliser les actions suivantes :
+
+ - Marche avant
+ - Marche arrière
+ - Faire tourner le robot sur lui-même
+ - Faire un virage serré
+ - Faire un virage large
+ - Arrêt complet
+
+.. ========================= ========================= ==========================
+.. Moteur 1 Moteur 2 Effet
+.. ========================= ========================= ==========================
+.. `runMotor(0, HIGH, 255)` `runMotor(1, HIGH, 255)` Marche avant
+.. `runMotor(0, LOW, 255)` `runMotor(1, HIGH, 255)` Tourner sur lui-même
+.. `runMotor(0, HIGH, 255)` `runMotor(1, LOW, 255)` Tourner sur lui-même (sens
+.. inverse)
+.. `runMotor(0, LOW, 255)` `runMotor(1, LOW, 255)` Marche arrière
+.. `runMotor(0, LOW, 0)` `runMotor(1, HIGH, 255)` Virage serré
+.. `runMotor(0, HIGH, 127)` `runMotor(1, HIGH, 255)` Virage large
+.. `runMotor(0, LOW, 0)` `runMotor(1, LOW, 0)` Arrêt complet
+.. ========================= ========================= ==========================
+
+Connecter un écran Nokia 5110
+=============================
+
+.. sidebar:: L'écran LCD
+
+ .. image:: content/s-l500.jpg
+ :align: center
+ :width: 100%
+
+L'écran Nokia 5110 est un composant de base et peu honéreux (environ 2€)
+permettant un affichage depuis la carte Arduino. Il permet un affichage sur une
+grille de 84x48 pixels, soit 4 lignes de textes.
+
+.. admonition:: Tension de fonctionnement
+ :class: warning
+
+ Le composant fonctionne sous 3,3 |V|, il n'est donc pas recommandé de le
+ brancher directement sur la carte Arduino (même si certains le font [#]_).
+ Dans le doute, commencez avec un correcteur de courant.
+
+.. [#] https://circuitdigest.com/microcontroller-projects/nokia5110-graphical-lcd-arduino-interfacing
+
+Level shifter 74HC4050N
+-----------------------
+
+Ce composant est *unidirectionnel* et *High to Low* : en alimentant le
+composant en 3.3 |V|, nous avons la possibilité de générer une sortie à 3.3 |V|
+à partir de la carte Arduino : le composant possède 6 entrées et 6 sorties : à
+chaque fois que la tension sur une borne d'entrée est supérieure à la tension
+d'alimentation, la sortie correspondante sera activée.
+
+.. admonition:: Broches non connectées
+ :class: note
+
+ Deux bornes ne sont pas connectées sur le composants : les bornes `13` et
+ `16`. Attention au moment du cablage !
+
+.. sidebar:: Cablage
+
+ Le cablage sur le composant `74HC4050N` importe peu, tant que chaque entrée
+ est bien associée à la sortie correspondantes.
+
+.. figure:: content/nokia_5110.pdf
+ :width: 100%
+
+ Arduino, Nokia 5110, 74HC4050N
+
+ :Cable Rouge: +3.3 |V|
+ :Cable Noir: Masse
+ :Cable Vert: Broche 7 - 3 (SCE)
+ :Cable Bleu: Broche 6 - 4 (RST)
+ :Cable Orange: Broche 5 - 5 (D/C)
+ :Cable Maron: Broches 11 - 6 (DN(MOSI))
+ :Cable Cyan: Broche 13 - 7 (SeriaL CLock)
+ :Cable Mauve: Broche 9 - 8 (LED)
+
+
+Le programme [#]_
+
+.. image:: content/nokia_5110_montage.jpg
+ :width: 100%
+
+
+.. [#] https://learn.sparkfun.com/tutorials/graphic-lcd-hookup-guide
+
+
+.. default-role:: literal
+.. role:: smallcaps
+.. role:: index
+.. |lcd| replace:: :smallcaps:`lcd`
+.. |usb| replace:: :smallcaps:`usb`
+
+===============================
+Les entrées de la carte Arduino
+===============================
+
+Maintenant que nous avons vu comment contrôler les sorties de la carte Arduino,
+il est temps de se poser la question d'utiliser les entrées de la carte : c'est
+par ce moyen que nous allons pouvoir donner un peu de réaction à notre robot, à
+travers des capteurs qui nous fournirons des informations sur le monde
+extérieur.
+
+Utiliser Arduino comme ohmmètre
+===============================
+
+Lecture de la tension
+---------------------
+
+Il existe six ports sur la carte Arduino permettant de lire des valeurs
+analogiques (`A0` — `A5`).
+
+Par exemple, la tension peut être lue le port `A0` sur avec l'instruction
+:index:`analogRead` `analogRead(A0)` [#]_. Celle-ci est lue sur dix bits (soit
+une valeur comprise entre `0` et `1023`), en fonction de la tension
+d'alimentation de la carte Arduino (normalement 5 |V|).
+
+.. [#] https://www.arduino.cc/en/Reference/AnalogRead
+
+.. raw:: latex
+
+ \begin{center}
+ \begin{tikzpicture}[scale=2.5]
+
+ \foreach \x in {0,0.5,...,5} {
+ \pgfmathtruncatemacro\result{\x * 1023 / 5}
+ \draw (\x,-4pt) -- (\x,4pt)
+ node [below,yshift=-20] {\pgfmathprintnumber{\result}}
+ node [above] {$\x$ V};
+ }
+
+ \draw (0,0) -- (5.0,0);
+
+ \end{tikzpicture}
+ \end{center}
+
+.. note::
+
+ Lors de l'écriture sur un port analogique, la précision est réalisée sur huit
+ bits (soit une valeur comprise entre `0` et `255`). Attention donc en
+ redirigeant l'entrée d'un port vers une sortie !
+
+On peut donc utiliser la carte comme un voltmètre simple, pour mesurer une
+tension entre 0 |V| et la tension d'alimentation (5 |V|). La formule suivante
+permet de calculer la tension en fonction de la valeur retournée par la
+fonction `AnalogRead` :
+
+.. math::
+
+ V = \frac{5 \times \mathtt{AnalogRead()}}{1023}
+
+Utiliser l'Arduino comme ohmmètre
+---------------------------------
+
+Notre premier montage pour illustrer la lecture d'une valeur consiste à
+utiliser l'Arduino pour connaître la valeur d'une résistance. Nous allons
+utiliser un *pont diviseur* (voir le schéma) avec une résistance connue, et une
+autre dont on souhaitera déterminer la valeur : en lisant la tension
+:math:`V_A`, il sera possible de déterminer la valeur de la résistance
+inconnue.
+
+.. figure:: content/pont_diviseur.pdf
+ :width: 50%
+ :align: center
+
+ Le pont diviseur
+
+
+ La plus simple représentation du diviseur de tension consiste à placer deux
+ résistances électriques en série. Ce type d'association de résistances étant
+ omniprésent dans les montages électriques, le pont diviseur en devient une des
+ notions fondamentales en électronique.
+
+
+ Il est possible de calculer facilement la valeur de :math:`V_A` dans le
+ montage, à la condition de connaitre les valeurs des résistances et la valeur
+ de la tension Vcc. La première formule à utiliser est celle de la loi d'Ohm qui
+ permet de citer cette équation :
+
+ .. math::
+
+ I = \frac{V_\text{cc}}{R_1+R_2}
+
+ En utilisant la loi d'Ohm une seconde fois, il est possible de déterminer
+ l'équation suivante:
+
+ .. math::
+
+ V_a = R_2 \times I
+
+ Dans la formule ci-dessous, il suffit de remplacer le courant :math:`I` par
+ sa valeur équivalente (la première équation) pour déterminer facilement
+ l'équation de :math:`V_A`:
+
+ .. math::
+
+ V_a = R_2 \times (\frac{V_\text{cc}}{R_1+R_2})
+
+ **Exemple**
+
+ Prenons les valeurs suivantes :
+
+ - :math:`V_\text{cc}`: 9V
+ - :math:`R_1`: 1k :math:`\Omega`
+ - :math:`R_2`: 3k :math:`\Omega`
+
+ .. math::
+
+ V_a &= R_2 \times \frac{V_\text{cc}}{R_1 + R_2} \\
+ &= 3000 \times \frac{9}{1000+3000} \\
+ & = \frac{27000}{4000} \\
+ &= 6.75V
+
+ La différence de potentiel :math:`V_A` sera égal à 6.75 |V| en utilisant les valeurs
+ précédentes.
+
+Dans notre cas, nous connaissons la tension ainsi que la valeur de la
+résistance :math:`R_2`. Donc en reprenant la formule du calcul de :math:`V_A`
+nous obtenons :
+
+.. math::
+
+ %V_a &= R_2 \times \frac{V_\text{cc}}{R_1 + R_2} \\
+ %(R_1 + R_2) \times V_a &= R_2 \times V_\text{cc} \\
+ %R_1 \times V_a + R_2 \times V_a &= R_2 \times V_\text{cc} \\
+ %R_1 \times V_a &= R_2 \times V_\text{cc} - R_2 \times V_a \\
+ %R_1 &= \frac{R_2 \times V_\text{cc}}{V_a} - \frac{R_2 \times V_a}{V_a} \\
+ %R_1 &= \frac{R_2 \times V_\text{cc}}{V_a} - R_2 \\
+ %R_1 &= R_2 \times \left(\frac{V_\text{cc}}{V_a} - 1\right) \\
+ R_1 &= R_2 \times \left(\frac{1023}{\mathtt{AnalogRead()}} - 1\right)
+
+.. .. note::
+..
+..
+.. La dernière ligne du calcul peut se retrouver ainsi : on sait que la tension
+.. lue par fonction `analogRead()` est échelonée de `0` à `1023` par rapport à
+.. la tension d'alimentation, ce que l'on peut représenter dans la ligne
+.. suivante :
+..
+.. .. math::
+..
+.. V_A &= \frac{V_\text{cc} \times \mathtt{AnalogRead()}}{1023} && \text{donc} \\
+.. \frac{V_\text{cc}}{V_A} &= \frac{V_\text{cc}}{\frac{V_\text{cc} \times \mathtt{AnalogRead()}}{1023}} \\
+.. \frac{V_\text{cc}}{V_A} &= V_\text{cc} \times {\frac{1023}{V_\text{cc} \times \mathtt{AnalogRead()}}} \\
+.. \frac{V_\text{cc}}{V_A} &= \frac{1023}{\mathtt{AnalogRead()}}
+
+Contrôle théorique
+~~~~~~~~~~~~~~~~~~
+
+Ce programme en python permet de prédire les différentes valeurs qui seront
+lues par la carte Arduino. Il reproduit (dans une certaine mesure) les erreurs
+d'arrondis qui seront susceptible d'arriver sur la carte lors du calcul des
+valeurs :
+
+.. sidebar:: Programme
+
+ Ce programme va calculer la tension :math:`V_A`, la valeur lue par la fonction
+ `analogRead`, la valeur de la résistance calculée, et l'intensité qui
+ traverse les composants.
+
+.. include:: content/ohm.py
+ :code: python
+
+.. raw:: latex
+
+ \pagebreak
+
+
+Il permet de construire le tableau de valeurs suivant (avec :math:`R_2` = 1000
+:math:`\Omega`, et :math:`V_\text{cc}` = 5 |V|) :
+
+.. sidebar:: Tension théorique
+
+ Ce tableau est construit à partir de la différence de potentielle théorique
+ au niveau de la résistance :math:`R_2`. Les valeurs réelles seront toujours
+ légèrement différentes lors du montage.
+
+=================== ================= ============= ===================
+Résistance Tension théorique Valeur lue Résistance calculée
+=================== ================= ============= ===================
+10 :math:`\Omega` 4,95 |V| 1012 10
+220 :math:`\Omega` 4,1 |V| 838 220
+1k :math:`\Omega` 2.5 |V| 511 1 001
+10k :math:`\Omega` 0,45 |V| 93 10 000
+220k :math:`\Omega` 0,02 |V| 4 254 750
+=================== ================= ============= ===================
+
+Au delà de 220k :math:`\Omega`, la tension qui traverse :math:`R_2` devient si
+faible que la valeur lue par la fonction `analogRead` tombe à `0`, ce qui
+empêche toute mesure. En prenant une valeur plus importante pour la résistance
+:math:`R_2`, la plage d'erreur sera plus faible pour des valeurs plus
+importante de :math:`R_1`
+
+Montage
+-------
+
+Le montage reste simple à mettre en place, il ne nécessite que deux résistances
+(dont celle dont on souhaite calculer la valeur).
+
+.. figure:: content/arduino_ohmetre.pdf
+ :width: 70%
+
+ Arduino comme ohmmètre
+
+ La résistance :math:`R_1` sera calculée en fonction de la valeur de
+ :math:`R_2`.
+
+ La résistance :math:`R_2` peut être choisie avec une valeur de
+ 1000 :math:`\Omega` par défaut, et changée en fonction du besoin.
+
+Le programme reprend la formule que nous avons calculé ci-dessus, et affiche le
+résultat sur la console.
+
+.. code-block:: arduino
+
+ // La résistance r2 doit être connue et
+ // renseignée dans le programme
+ int r2 = ...;
+
+ void setup() {
+ Serial.begin(9600);
+ }
+
+ void loop() {
+
+ int r1 = r2 * ((1023 / (float)analogRead(A0)) - 1);
+
+ Serial.print("R1: ");
+ Serial.println(r1);
+
+ delay(1000);// wait for a second
+ }
+
+.. [#] https://www.arduino.cc/en/Serial/Print
+
+.. note::
+
+ Nous découvrons à l'occasion de ce programme la librairie `Serial` [#]_ qui
+ permet d'envoyer des données à l'ordinateur via le port |usb|. Il s'agit d'un
+ moyen pratique pour transmettre une valeur lue sur la carte.
+
+ Nous pourrions enrichir ce schéma avec une sortie sur un écran |lcd| plutôt
+ que d'envoyer l'information vers l'ordinateur : nous aurons ainsi un ohmmètre
+ autonome !
+
+
+Capteur de proximité infrarouge
+===============================
+
+Dans un projet de robot mobile, il est nécessaire de tester la présence
+d'objets à proximité pour éviter que celui-ci ne percute les obstacles.
+
+.. sidebar:: Capteur infrarouge
+
+ .. image:: content/Sharp_GP2Y0A21YK.jpg
+ :align: center
+ :width: 100%
+
+Nous retrouvons deux types de senseurs sur les robots : des senseurs
+optiques, ou par ultrasons. Le senseur Sharp relève de la première catégorie.
+Il permet de détecter la présence d'un objet entre 10 et 80 cm, à partir du
+retour de lumière infrarouge.
+
+Montage général
+---------------
+
+Le schéma suivant indique comment placer les différents câbles du connecteur
+:smallcaps:`JST`.
+
+.. sidebar:: Condensateur
+
+ Le condensateur présent sur le schéma permet ici de lisser les variations de
+ la tension. On l'appelle *Condensateur de découplage* [#]_.
+
+.. [#] https://fr.wikipedia.org/wiki/Condensateur_de_d%C3%A9couplage
+
+.. figure:: content/capteur_infra.pdf
+ :width: 100%
+
+ Arduino, `GP2Y0A21YK`
+
+ :Cable Rouge: +5 |V|
+ :Cable Noir: GND/Masse
+ :Cable Jaune ou Blanc: Entrée Analogique `A0`
+
+Tension de sortie
+~~~~~~~~~~~~~~~~~
+
+.. sidebar:: Tension d'entrée
+
+ Même si le composant supporte une tension allant jusque 7 |V|, il fonctionne de
+ manière optimale avec des valeurs allant de 4,5 à 5,5 |V|.
+
+La tension de sortie, sur le fil jaune, nous indique la distance de l'objet.
+Celle-ci varie entre 0,5 |V| et 3 |V| selon la distance de l'obstacle [#]_.
+
+.. [#] http://www.sharp-world.com/products/device/lineup/data/pdf/datasheet/gp2y0a21yk_e.pdf
+
+.. image:: content/gp2y0a21yk_e.pdf
+ :width: 100%
+
+.. Mesure de la tension en fonction de la distance
+
+Exemple
+~~~~~~~
+
+Ce programme lit l'entrée sur la broche `A0` et allume une |led| si un objet
+est détecté à proximité (±20 |cm|) :
+
+.. code-block:: arduino
+
+
+ int ledPin = 9; // LED connected to digital pin 9
+
+ void setup() {}
+
+ void loop() {
+ int sensorValue = analogRead(A0);
+ if (sensorValue < 220)
+ sensorValue = 0;
+
+ analogWrite(ledPin, sensorValue >> 2);
+ delay(200); // delay 200 milliseconds
+ }
+
+.. Déclencher le capteur sur demande
+.. ---------------------------------
+..
+.. Plutôt que d'activer le capteur en continu, nous allons modifier le programme
+.. pour n'activer la détection d'objets seulement en cas de mouvements du robot
+.. (il n'est pas nécessaire de chercher à tester les obstacles si le robot ne se
+.. déplace pas). Cela permettra d'augmenter l'autonomie du robot (en contre-partie
+.. d'un port digital utilisé). La consommation du composant étant de 30 |mA|, nous
+.. pouvons connecter directement la broche à l'Arduino, il sera capable de fournir
+.. le courant nécessaire.
+..
+.. Le capteur nécessite un délai minimal avant de fournir une valeur fiable.
+..
+.. Créer une tension seuil
+.. -----------------------
+..
+.. Nous n'avons pas un besoin réel d'évaluer la distance de l'objet, simplement de
+.. pouvoir arrêter le robot s'il s'approche trop près d'un objet. Si l'on connaît
+.. la distance d'arrêt souhaitée (et donc la tension) avant de construire le
+.. robot, nous pouvons paramétrer le seuil de déclenchement de l'alarme, et
+.. utiliser une broche digitale au lieu d'une broche analogique.
+
+
+.. -*- mode: rst -*-
+.. -*- coding: utf-8 -*-
+
+.. default-role:: literal
+.. role:: smallcaps
+.. role:: index
+
+
+=========================
+L'alimentation du système
+=========================
+
+USB
+===
+
+L'|usb| fourni une tension de 5 |V| avec une intensité maximale de 100 |mA| sur
+les bornes d'alimentation. Il est donc possible d'alimenter une carte Arduino
+avec un câble |usb| (c'est d'ailleurs ainsi que l'on procède lorsque l'on
+programme la carte).
+
+Source externe
+==============
+
+.. sidebar:: Régulateur LM1117
+
+ .. image:: content/LM1117.jpg
+ :align: center
+ :width: 75%
+
+La carte Arduino possède un régulateur de tension intégré capable de produire
+une tension de 5 |V|. Il est donc possible d'alimenter la carte avec une
+tension supérieure pour alimenter le circuit.
+
+.. note::
+
+ La régulation de la tension est réalisée en convertissant la puissance
+ superflue en chaleur. Si la tension est trop importante, le composant va trop
+ chauffer et la carte va s'abîmer.
+
+ De même, le régulateur consomme également du courant en fonctionnement,
+ donner une tension de 5 |V| sera trop juste pour alimenter le circuit.
+
+ Aussi, la tension recommandée pour un bon fonctionnement est comprise entre 7
+ à 12 |V|.
+
+.. sidebar:: Attention au sens !
+
+ En inversant le sens des fils entre la masse et l'alimentation, on applique
+ l'opposé de la tension attendue, ce qui ne plaira pas beaucoup au circuit !
+ [#]_
+
+.. [#] https://www.rugged-circuits.com/10-ways-to-destroy-an-arduino
+
+Il existe deux points de connexions sur la carte permettant d'utiliser le
+régulateur de tension : la prise jack, ainsi que la borne `Vin`.
+
+Alimentation via prise jack
+---------------------------
+
+Il s'agit de la manière la plus simple pour alimenter le circuit, puisque la
+carte Arduino possède une prise Jack. En respectant les limites des tensions
+indiquées ci-dessus, il ne reste qu'à brancher la fiche sur la carte.
+
+Dans le cas d'un transformateur externe, il faut veiller à ce que symbole suivant
+
+.. image:: content/polarity.pdf
+ :width: 25%
+ :align: center
+
+soit présent sur la carte : c'est à dire que le fil `+` soit connecée au centre
+de la borne d'alimentation.
+
+Alimentation directe sur la carte
+---------------------------------
+
+La borne `Vin` permet de connecter directement une alimentation à la carte :
+elle est également reliée au régulateur de tension et supporte donc une tension
+supérieure jusque 12 |V|.
+
+Là encore, il faut veiller à connecter les deux fils sur les bonnes bornes : la
+carte Arduino n'offre aucune protection en cas d'erreur…
+
+Alimentation externe 5 |V|
+==========================
+
+.. note::
+
+ Cette solution peut être utilisée si la tension d'entrée est supérieure à
+ 12 |V| : l'utilisation d'un régulateur de tension externe tel que le `LM7805`
+ permettra de prendre en entrée une tension jusqu'à 20 |V|.
+
+Si la tension externe est déjà stabilisée à 5 |V|, il n'est pas possible de se
+connecter sur la broche `Vin` de la carte, puisqu'il faut au minimum du 7 |V|
+pour avoir une tension de fonctionnement correcte.
+
+Alimentation par usb
+--------------------
+
+.. sidebar:: Cable
+
+ .. image :: content/USB-2-0-B-MALE-TO-5.jpg
+ :width: 100%
+
+La solution la plus sûre dans ce cas est de brancher cette alimentation sur
+l'entrée |usb| de la carte. On gagne ainsi en sécurité, au détriment d'un petit
+peu de cablage supplémentaire.
+
+Alimentation par la broche 5V
+-----------------------------
+
+Autre solution envisageable, brancher l'alimentation directement sur la broche
+`5V` de la carte Arduino : cette borne est reliée au circuit 5 |V| de la carte,
+et n'est pas uniquement une borne de sortie : elle relie l'ensemble des
+composants qui ont besoin d'être alimentés avec cette tension.
+
+.. admonition:: Attention
+ :class: warning
+
+ Alimenter la carte par la prise `5V` de la carte n'est pas recommandé :
+
+ - Étant donné que l'on passe outre le régulateur de tension, il y a un risque
+ important de griller la carte si l'on applique une tension trop importante.
+ - Il interdit d'utiliser en même temps la prise |usb|
+ - Il interdit d'utiliser en même temps la prise `Vin` sous risque de griller
+ la carte
+
+En effet, cette prise est directement reliée au circuit 5 |V| et outrepasse
+**toutes** les protections de la carte, qui n'est pas prévue pour être
+alimentée ainsi. Il faut réserver cet usage a des cas particuliers (par exemple
+alimenter deux cartes Arduino ensemble)
+
+Tableau récapitulatif
+=====================
+
+Les différentes tensions admissibles :
+
+================ =============== =============== ==============
+Entrée Tension min. Tension max. Intensité max.
+================ =============== =============== ==============
+Port USB 4,5 |V| 5,5 |V|
+Broche `5V` 4,5 |V| 5,5 |V|
+Prise jack 7 |V| 12 |V|
+Broche `Vin` 6,6 |V| 12 |V|
+================ =============== =============== ==============
+
+
+==============================
+Créer sa propre plaque arduino
+==============================
+
+Il suffit d'un microcontrolleur pour faire fonctionner son programme arduino,
+il n'est pas nécessaire d'acheter la carte déjà montée !
+
+.. Avec un ATMege328
+.. =================
+..
+.. Voir le tutoriel [#]_
+..
+.. .. [#] https://www.arduino.cc/en/Tutorial/ArduinoToBreadboard
+..
+.. RBBB propose de monter soit même son arduino
+
+Avec un AtTiny85
+================
+
+.. figure:: content/attiny_programatter.pdf
+ :width: 100%
+
+ Cablage du programmateur
+
diff --git a/resources/CaviarDreams.ttf b/resources/CaviarDreams.ttf
new file mode 100755
index 0000000..4ba4279
--- /dev/null
+++ b/resources/CaviarDreams.ttf
Binary files differ
diff --git a/resources/admonitions.tex b/resources/admonitions.tex
new file mode 100644
index 0000000..5ab78ca
--- /dev/null
+++ b/resources/admonitions.tex
@@ -0,0 +1,36 @@
+\usepackage{DUStyle}
+\definecolor{orangeColor}{RGB}{255, 165, 0}
+\definecolor{redColor}{RGB}{211, 38, 38}
+\definecolor{blueColor}{RGB}{38, 38, 211}
+\definecolor{lightBlueColor}{RGB}{0, 89, 255}
+\definecolor{greenColor}{RGB}{38, 211, 38}
+
+
+\usepackage{fontspec}
+\RequirePackage{fontawesome}
+% Style pour les avertissements
+\createIconifiedDUStyle{warning}{orangeColor}{\faExclamation}{CaviarDreamsFont}
+% Style pour les notes
+\createIconifiedDUStyle{note}{lightBlueColor}{\faComment}{CaviarDreamsFont}
+% Style pour les exercices
+\createIconifiedDUStyle{exercice}{greenColor}{\faPencil}{CaviarDreamsFont}
+
+\let\oldttfamily\ttfamily
+
+\newenvironment{DUCLASScode}{%
+ \begin{mdframed}[topline=false,%
+ bottomline=false,%
+ rightline=false,%
+ leftline=false,%
+ linecolor=black,%
+ linewidth=3pt,%
+ skipabove=0.5cm,%
+ backgroundcolor=black!5]
+ %\small
+ %\let\ttfamily\DejaVuSansMono
+}{%
+ \let\ttfamily\oldttfamily
+ \end{mdframed}
+}
+
+
diff --git a/resources/colors.tex b/resources/colors.tex
new file mode 100755
index 0000000..ebecdb6
--- /dev/null
+++ b/resources/colors.tex
@@ -0,0 +1,5 @@
+\RequirePackage{color, framed}
+
+\definecolor{grisfonce}{RGB}{49,49,49}
+\definecolor{blanc}{RGB}{255,255,255}
+\ProcessOptions
diff --git a/resources/figures.tex b/resources/figures.tex
new file mode 100644
index 0000000..2957756
--- /dev/null
+++ b/resources/figures.tex
@@ -0,0 +1,20 @@
+\usepackage{float}
+\floatplacement{figure}{htbp} % here, top, bottom, extra-page
+%\floatstyle{boxed}
+%\restylefloat{figure}
+
+
+\usepackage{caption}
+\captionsetup[figure]{name=Schéma}
+
+\let\legacyFigure\figure
+\let\endlegacyFigure\endfigure
+
+\renewenvironment{figure}{%
+ \begin{legacyFigure}%
+ \begin{mdframed}[linecolor=gray]%
+}{%
+ \end{mdframed}%
+ \end{legacyFigure}%
+}
+
diff --git a/resources/header_footer.tex b/resources/header_footer.tex
new file mode 100755
index 0000000..af80d26
--- /dev/null
+++ b/resources/header_footer.tex
@@ -0,0 +1,44 @@
+\RequirePackage{fancyhdr}
+
+\fancyhf{}
+\pagestyle{fancy} % mise en page
+
+\makeatletter
+
+%%%% Commande \docutitre pour l'en-tete.
+%%%% Il faut entrer le contenu via la commande: \docutitre{blablabla}
+\newcommand*{\docutitre}[1]{\gdef\@docutitre{#1}}
+\docutitre{}
+
+%% En-tete
+%pages impaires
+\fancyhead[RO]{\color{grisfonce}\@docutitre}
+\fancyhead[LO]{\color{grisfonce}\@date}
+
+%pages paires
+\fancyhead[RE]{\color{grisfonce}\@date }
+\fancyhead[LE]{\color{grisfonce}\@docutitre }
+
+
+%%%Pieds de page
+%pages impaires
+\fancyfoot[RO]{
+%\fcolorbox{fondtitre}{fondtitre}{\color{blanc}page \thepage}} % ici le num de page
+{page \thepage}} % ici le num de page
+\fancyfoot[LO]{
+\fcolorbox{blanc}{blanc}{\color{grisfonce}\@author}} % ici l'auteur
+%pages paires
+\fancyfoot[LE]{
+%\fcolorbox{fondtitre}{fondtitre}{\color{blanc}page \thepage}} % ici le num de page
+{page \thepage}} % ici le num de page
+\fancyfoot[RE]{
+\fcolorbox{blanc}{blanc}{\color{grisfonce}\@author}} % ici l'auteur
+
+\makeatother
+
+%%%%%%% ligne de l'entete %%%%%%%%%%%
+% pour la rendre invisible, sur un fond blanc... on la peint en blanc
+
+\renewcommand{\headrule}{
+}
+
diff --git a/resources/language.tex b/resources/language.tex
new file mode 100755
index 0000000..631a814
--- /dev/null
+++ b/resources/language.tex
@@ -0,0 +1,8 @@
+\RequirePackage[frenchb]{babel}
+
+%\frenchbsetup{ItemLabeli=\color{fondetsection}\ding{251}}
+
+\selectlanguage{french}
+\frenchspacing
+\FrenchFootnotes
+
diff --git a/resources/modules b/resources/modules
new file mode 100755
index 0000000..931111e
--- /dev/null
+++ b/resources/modules
@@ -0,0 +1,11 @@
+parskip # Ne pas indenter la premiere ligne d'un paragraphe
+#ulem # Souligner le texte en emphase
+
+# Polices mathematiques.
+amsmath
+amsfonts
+amssymb
+
+DUpygments-tango
+DUsmallcaps
+marginfix
diff --git a/resources/nowidows.tex b/resources/nowidows.tex
new file mode 100755
index 0000000..3b96931
--- /dev/null
+++ b/resources/nowidows.tex
@@ -0,0 +1,2 @@
+\widowpenalty=1000
+\clubpenalty=500
diff --git a/resources/preamble.tex b/resources/preamble.tex
new file mode 100644
index 0000000..b524b89
--- /dev/null
+++ b/resources/preamble.tex
@@ -0,0 +1,51 @@
+
+%\RequirePackage[utf8]{inputenc} % attention a l'UTF8, on peut choisir latin1...
+%\RequirePackage[a4paper, top=3 cm, bottom=3 cm, left=2 cm, right=2 cm]{geometry}
+\usepackage[a4paper, top=1.5cm, bottom=1.5cm, outer=5cm, inner=2cm, heightrounded, marginparwidth=3.5cm, marginparsep=0.9cm]{geometry}
+%\renewcommand{\baselinestretch}{1.0}
+
+\usepackage{fontspec}
+\setmainfont[Mapping=tex-text]{Linux Libertine O}
+
+
+\newfontfamily\LibertineFont[Mapping=tex-text]{Linux Libertine O}
+\newfontfamily\CaviarDreamsFont[Path=resources/, Mapping=tex-text]{CaviarDreams}
+\newfontfamily\DejaVuSansMono{DejaVu Sans Mono}
+
+\setmonofont{Latin Modern Mono Light}
+
+%\RequirePackage[linecolor=blueColor]{DUsidebar}
+\RequirePackage{DUsidebar}
+
+\definecolor{darkGray}{gray}{0.3}
+
+%\newcommand{\DUrolecode}[1]{\colorBox{black}{#1}}
+
+\newcommand{\DUtitletitle}[1]{%
+ {\normalsize\CaviarDreamsFont{#1}}
+}
+
+\usepackage{longtable}
+\usepackage{tabu}
+% alternate rowcolors for all long-tables
+\newenvironment{mytable}[2][c]%
+{\longtabu to \linewidth [#1]{#2}\tableHeaderStyle}%
+{\endlongtabu}
+
+
+% This red commes from a triad on the blue
+\colorlet{tableHeader}{redColor}
+\definecolor{tableLineOne}{RGB}{245, 245, 245}
+\definecolor{tableLineTwo}{RGB}{224, 224, 224}
+
+\newcommand{\tableHeaderStyle}{
+ \rowfont{\leavevmode\color{white}\bfseries}
+ \rowcolor{tableHeader}
+}
+
+\taburowcolors[2] 2{tableLineOne .. tableLineTwo}
+\tabulinesep = ^4mm_3mm
+\everyrow{\tabucline[.4mm white]{}}
+
+\usepackage{etoolbox}
+\patchcmd{\quote}{\rightmargin}{\leftmargin 0em \rightmargin}{}{}
diff --git a/resources/title_style.tex b/resources/title_style.tex
new file mode 100755
index 0000000..e3cf026
--- /dev/null
+++ b/resources/title_style.tex
@@ -0,0 +1,67 @@
+\usepackage{titlesec}
+
+%% mise en page du titre
+
+%\let\oldtitle\title
+%\renewcommand{\title}[1]{\oldtitle {titre}}
+
+%\makeatletter
+%\def\maketitle{%
+%%\thispagestyle{empty} %si on veut que la premiere page n'ai pas d'en-tete
+%% \vspace*{\fill}
+%%\begin{center}
+%% \fcolorbox{grisfonce}{fondtitre}{
+%% \begin{minipage}{0.97\textwidth}
+%% \vspace*{0.8cm}
+%% \begin{center}
+%% \begin{Huge}\sffamily\color{blanc}
+%% \@title
+%% \end{Huge}
+%% \vfill
+%% \end{center}
+%% \begin{flushright}\sffamily\color{blanc}
+%%% \@date \\ %si pas d'en-tete premiere page, alors mettre date ici
+%% \@author
+%% \end{flushright}
+%% \end{minipage}
+%% }
+%%\end{center}
+%%\vspace*{\fill}
+%}
+%\makeatother
+
+\newcommand{\periodafter}[1]{#1.}
+
+\titleformat{\section}[display]% shape
+ {\huge\bfseries}% format
+ {
+ \makebox[0pt][l]{%
+ \raisebox{-66pt}[100pt][0pt]{%
+ \textcolor{black!30}{\fontsize{136pt}{136pt}\selectfont\thesection}%
+ }
+ }
+ }
+ {0pt}
+ {\CaviarDreamsFont\Huge\bfseries}
+
+\newlength\marginSecLen
+\setlength\marginSecLen{\dimexpr\oddsidemargin+0.8in+\hoffset\relax}
+
+% Titre de niveau 2
+\titleformat{\subsection}[block]
+ {\bfseries\Large}
+ {\llap{\hspace*{-\marginSecLen}\huge\textcolor{redColor}\thesubsection\hfill}}
+ {0em}
+ {}
+% {\huge\textcolor{redColor}\thesubsection}
+% {5pt}
+% {}
+
+% Titre de niveau 3
+\titleformat{\subsubsection}
+ {\CaviarDreamsFont\selectfont\bfseries\large}
+ {\thesubsubsection}
+ {2em}
+ {}
+ {}
+
diff --git a/resources/units.rst b/resources/units.rst
new file mode 100755
index 0000000..b4ee7fe
--- /dev/null
+++ b/resources/units.rst
@@ -0,0 +1,16 @@
+.. -*- mode: rst -*-
+.. -*- coding: utf-8 -*-
+
+.. default-role:: literal
+
+.. |V| unicode:: 0xA0 V
+ :ltrim:
+
+.. |cm| unicode:: 0xA0 cm
+ :ltrim:
+
+.. |mA| unicode:: 0xA0 mA
+ :ltrim:
+
+.. |Ohm| unicode:: 0xA0 :math:`\Omega`
+ :ltrim:
diff --git a/resources/zz_ref.tex b/resources/zz_ref.tex
new file mode 100755
index 0000000..ce338a7
--- /dev/null
+++ b/resources/zz_ref.tex
@@ -0,0 +1,35 @@
+\usepackage[
+ pdfencoding=auto,
+ linkbordercolor={0.5 0 0},
+ citebordercolor={0 0 0.5},
+ urlbordercolor={0 0 0.8},
+ pdfborderstyle={/S/U/W 1}
+]{hyperref}
+
+% Remove the underline for the footnotes
+\providecommand*{\DUfootnotemark}[3]{%
+ \hypersetup{pdfborderstyle={/W 0}}%
+ \raisebox{1em}{\hypertarget{#1}{}}%
+ \hyperlink{#2}{\textsuperscript{#3}}%
+ \hypersetup{pdfborderstyle={/S/U/W 1}}%
+}
+
+\providecommand{\DUfootnotetext}[4]{%
+ \begingroup%
+ \renewcommand{\thefootnote}{%
+ \protect\hypersetup{pdfborderstyle={/W 0}}%
+ \protect\raisebox{1em}{\protect\hypertarget{#1}{}}%
+ \protect\hyperlink{#2}{#3}
+ \protect\hypersetup{pdfborderstyle={/S/U/W 1}}%
+ }%
+ \footnotetext{#4}%
+ \endgroup%
+}
+
+\let\tableofcontentsWithoutRefMarks\tableofcontents
+
+\renewcommand{\tableofcontents}{%
+ \protect\hypersetup{pdfborderstyle={/W 0}}%
+ \tableofcontentsWithoutRefMarks
+ \protect\hypersetup{pdfborderstyle={/S/U/W 1}}%
+}