Merge branch 'master' into terminal_strip

* master:
  BugFix : default element collection path is wrong
  snap: Remove framework snap prompt
  Update translation and add cn chinese ts files
  Danish translation updated
  Danish translation
  Danish translation
  Add new thumbnail element
  Flatpak add --share=network
Flatpak : add --socket=cups see :
https://github.com/flathub/org.libreoffice.LibreOffice/issues/90
  Graphics item handler is bigger when overred
  Add toolbar widget for edit size of handler in diagram editor.
  Fix Multiple translation in elements
  Fix Multiple translation in elements
  Fix segfault.
  new Analog-In - Module
  cleanup and upgraded elements
  modified:   lang/qet_nl.qm 	modified:   lang/qet_nl.ts
  Add Russian translation, thanks "А.Разживин"
  little modification in hungarian language
  Fixed typo
This commit is contained in:
joshua
2022-01-14 19:47:28 +01:00
136 changed files with 22886 additions and 10974 deletions

View File

@@ -12,8 +12,6 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: snapcore/action-build@v1 - uses: snapcore/action-build@v1
id: build id: build
with:
snapcraft-args: --enable-experimental-extensions
- uses: snapcore/action-publish@v1 - uses: snapcore/action-publish@v1
with: with:
store_login: ${{ secrets.STORE_LOGIN }} store_login: ${{ secrets.STORE_LOGIN }}

View File

@@ -13,6 +13,8 @@
"--socket=fallback-x11", "--socket=fallback-x11",
"--device=dri", "--device=dri",
"--share=ipc", "--share=ipc",
"--share=network",
"--socket=cups",
"--filesystem=host" "--filesystem=host"
], ],
"modules": [ "modules": [

View File

@@ -1,17 +1,5 @@
#!/bin/sh #!/bin/sh
# check if _only_ the correct framework snap is connected
framework_name=$(grep "name:" $SNAP/kf5/meta/snap.yaml | cut -d" " -f2)
if [ "$framework_name" != "kde-frameworks-5-qt-5-15-3-core20" ]; then
downloads_dir=$(xdg-user-dir DOWNLOAD)
test ! -d "$downloads_dir" && mkdir -p "$downloads_dir"
instructions_file="snap.qelectrotech.update-instructions.html"
target="$downloads_dir/$instructions_file"
cp "$SNAP/update-instructions/$instructions_file" "$target"
xdg-open "$target"
exit 1
fi
# migrate .qet directory from SNAP_USER_DATA to SNAP_USER_COMMON # migrate .qet directory from SNAP_USER_DATA to SNAP_USER_COMMON
from="$SNAP_USER_DATA/.qet" from="$SNAP_USER_DATA/.qet"
to="$SNAP_USER_COMMON/.qet" to="$SNAP_USER_COMMON/.qet"

File diff suppressed because one or more lines are too long

View File

@@ -56,12 +56,6 @@ parts:
organize: organize:
'*': bin/ '*': bin/
update-instructions:
plugin: dump
source: build-aux/snap/local/update-instructions
organize:
'*': update-instructions/
qet-tb-generator: qet-tb-generator:
plugin: python plugin: python
source: https://github.com/raulroda/qet_tb_generator-plugin.git source: https://github.com/raulroda/qet_tb_generator-plugin.git
@@ -82,7 +76,7 @@ parts:
- rsync - rsync
override-build: | override-build: |
rsync -a --ignore-existing /snap/kde-frameworks-5-qt-5-15-3-core20-sdk/current/ / rsync -a --ignore-existing /snap/kde-frameworks-5-qt-5-15-3-core20-sdk/current/ /
dxf-to-qet: dxf-to-qet:
after: [kde-sdk-setup] after: [kde-sdk-setup]
plugin: nil plugin: nil
@@ -101,16 +95,14 @@ parts:
build-packages: build-packages:
- git - git
- libsqlite3-dev - libsqlite3-dev
override-pull: | override-build: |
snapcraftctl pull
displayed_version=$(grep "displayedVersion" sources/qet.h | tr -d "\";" | cut -d" " -f5) displayed_version=$(grep "displayedVersion" sources/qet.h | tr -d "\";" | cut -d" " -f5)
snap_version="${displayed_version}~$(git rev-parse --short=8 HEAD)" snap_version="${displayed_version}-g$(git rev-parse --short=8 HEAD)"
modified_displayed_version="${snap_version}.snap" modified_displayed_version="${snap_version}.snap"
sed -i -E "s|const QString displayedVersion =.*|const QString displayedVersion =\"$modified_displayed_version\";|" sources/qet.h sed -i -E "s|const QString displayedVersion =.*|const QString displayedVersion =\"$modified_displayed_version\";|" sources/qet.h
snapcraftctl set-version "$snap_version" snapcraftctl set-version "$snap_version"
override-build: |
qmake "$SNAPCRAFT_PART_SRC/qelectrotech.pro" qmake "$SNAPCRAFT_PART_SRC/qelectrotech.pro"
make -j$(nproc) make -j${SNAPCRAFT_PARALLEL_BUILD_COUNT}
make install INSTALL_ROOT="$SNAPCRAFT_PART_INSTALL" make install INSTALL_ROOT="$SNAPCRAFT_PART_INSTALL"
override-stage: | override-stage: |
snapcraftctl stage snapcraftctl stage

View File

@@ -12,7 +12,7 @@
<name lang="fr">Source tripolaire + PEN</name> <name lang="fr">Source tripolaire + PEN</name>
<name lang="ar">مصدر ثلاثي القطبيّة + PEN</name> <name lang="ar">مصدر ثلاثي القطبيّة + PEN</name>
<name lang="cs">Přípojnice 3f+PEN pravá</name> <name lang="cs">Přípojnice 3f+PEN pravá</name>
<name lang="hu">3F + PEN</name> <name lang="hu">3F + PEN</name>
</names> </names>
<elementInformations/> <elementInformations/>
<informations>Author: The QElectroTech team <informations>Author: The QElectroTech team

View File

@@ -12,7 +12,7 @@
<name lang="fr">Source tripolaire + PEN</name> <name lang="fr">Source tripolaire + PEN</name>
<name lang="ar">مصدر ثلاثي القطبيّة + PEN</name> <name lang="ar">مصدر ثلاثي القطبيّة + PEN</name>
<name lang="cs">Přípojnice 3f+N+PE pravá</name> <name lang="cs">Přípojnice 3f+N+PE pravá</name>
<name lang="hu">3F + N + PE</name> <name lang="hu">3F + N + PE</name>
</names> </names>
<elementInformations/> <elementInformations/>
<informations>Author: The QElectroTech team <informations>Author: The QElectroTech team

View File

@@ -14,7 +14,7 @@
<name lang="es">Masa</name> <name lang="es">Masa</name>
<name lang="ar">هيكل معدني</name> <name lang="ar">هيكل معدني</name>
<name lang="fr">Masse</name> <name lang="fr">Masse</name>
<name lang="hu">Test</name> <name lang="hu">Test</name>
</names> </names>
<elementInformations> <elementInformations>
<elementInformation name="comment" show="1"></elementInformation> <elementInformation name="comment" show="1"></elementInformation>

View File

@@ -13,7 +13,7 @@
<name lang="en">Chassis</name> <name lang="en">Chassis</name>
<name lang="fr">Masse</name> <name lang="fr">Masse</name>
<name lang="ru">Шасси</name> <name lang="ru">Шасси</name>
<name lang="hu">Vázszerkezet</name> <name lang="hu">Vázszerkezet</name>
</names> </names>
<informations>Author: The QElectroTech team <informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations> License: see http://qelectrotech.org/wiki/doc/elements_license</informations>

View File

@@ -12,7 +12,7 @@
<name lang="en">Single-pole source + PE +N</name> <name lang="en">Single-pole source + PE +N</name>
<name lang="fr">Source unipolaire + PE +N</name> <name lang="fr">Source unipolaire + PE +N</name>
<name lang="ru">Однополюсный + PE +N</name> <name lang="ru">Однополюсный + PE +N</name>
<name lang="hu">F + N + PE</name> <name lang="hu">F + N + PE</name>
</names> </names>
<informations>Author: The QElectroTech team <informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations> License: see http://qelectrotech.org/wiki/doc/elements_license</informations>

View File

@@ -12,7 +12,7 @@
<name lang="en">Single-pole source +PEN</name> <name lang="en">Single-pole source +PEN</name>
<name lang="fr">Source unipolaire + PEN</name> <name lang="fr">Source unipolaire + PEN</name>
<name lang="ru">Однополюсный + PEN</name> <name lang="ru">Однополюсный + PEN</name>
<name lang="hu">F + PEN</name> <name lang="hu">F + PEN</name>
</names> </names>
<informations>Author: The QElectroTech team <informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations> License: see http://qelectrotech.org/wiki/doc/elements_license</informations>

View File

@@ -13,7 +13,7 @@
<name lang="en">Single-pole source + neutral</name> <name lang="en">Single-pole source + neutral</name>
<name lang="fr">Source unipolaire + neutre</name> <name lang="fr">Source unipolaire + neutre</name>
<name lang="ru">Однополюсный + нейтраль</name> <name lang="ru">Однополюсный + нейтраль</name>
<name lang="hu">F + N</name> <name lang="hu">F + N</name>
</names> </names>
<informations>Author: The QElectroTech team <informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations> License: see http://qelectrotech.org/wiki/doc/elements_license</informations>

View File

@@ -13,7 +13,7 @@
<name lang="en">Three-pole source</name> <name lang="en">Three-pole source</name>
<name lang="fr">Source tripolaire</name> <name lang="fr">Source tripolaire</name>
<name lang="ru">Трёхполюсный</name> <name lang="ru">Трёхполюсный</name>
<name lang="hu">3F</name> <name lang="hu">3F</name>
</names> </names>
<informations>Author: The QElectroTech team <informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations> License: see http://qelectrotech.org/wiki/doc/elements_license</informations>

View File

@@ -12,7 +12,7 @@
<name lang="en">Three-pole source + PE +N</name> <name lang="en">Three-pole source + PE +N</name>
<name lang="fr">Source tripolaire + PE +N</name> <name lang="fr">Source tripolaire + PE +N</name>
<name lang="ru">Трёхполюсный + PE +N</name> <name lang="ru">Трёхполюсный + PE +N</name>
<name lang="hu">3F + N + PE</name> <name lang="hu">3F + N + PE</name>
</names> </names>
<informations>Author: The QElectroTech team <informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations> License: see http://qelectrotech.org/wiki/doc/elements_license</informations>

View File

@@ -12,7 +12,7 @@
<name lang="en">Three-pole source + PEN</name> <name lang="en">Three-pole source + PEN</name>
<name lang="fr">Source tripolaire + PEN</name> <name lang="fr">Source tripolaire + PEN</name>
<name lang="ru">Трёхполюсный + PEN</name> <name lang="ru">Трёхполюсный + PEN</name>
<name lang="hu">3F + PEN</name> <name lang="hu">3F + PEN</name>
</names> </names>
<informations>Author: The QElectroTech team <informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations> License: see http://qelectrotech.org/wiki/doc/elements_license</informations>

View File

@@ -13,7 +13,7 @@
<name lang="en">Three-pole source + neutral</name> <name lang="en">Three-pole source + neutral</name>
<name lang="fr">Source tripolaire + neutre</name> <name lang="fr">Source tripolaire + neutre</name>
<name lang="ru">Трёхполюсный + нейтраль</name> <name lang="ru">Трёхполюсный + нейтраль</name>
<name lang="hu">3F + N</name> <name lang="hu">3F + N</name>
</names> </names>
<informations>Author: The QElectroTech team <informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations> License: see http://qelectrotech.org/wiki/doc/elements_license</informations>

View File

@@ -13,7 +13,7 @@
<name lang="en">Neutral source</name> <name lang="en">Neutral source</name>
<name lang="fr">Source neutre</name> <name lang="fr">Source neutre</name>
<name lang="ru">Нейтраль</name> <name lang="ru">Нейтраль</name>
<name lang="hu">N</name> <name lang="hu">N</name>
</names> </names>
<informations>Author: The QElectroTech team <informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations> License: see http://qelectrotech.org/wiki/doc/elements_license</informations>

View File

@@ -13,7 +13,7 @@
<name lang="en">Phase source</name> <name lang="en">Phase source</name>
<name lang="fr">Source phase</name> <name lang="fr">Source phase</name>
<name lang="ru">Фаза</name> <name lang="ru">Фаза</name>
<name lang="hu">F</name> <name lang="hu">F</name>
</names> </names>
<informations>Author: The QElectroTech team <informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations> License: see http://qelectrotech.org/wiki/doc/elements_license</informations>

View File

@@ -11,7 +11,7 @@
<name lang="en">Distribution point TN-C >TN-S</name> <name lang="en">Distribution point TN-C >TN-S</name>
<name lang="fr">Point de distribution TN-C >TN-S</name> <name lang="fr">Point de distribution TN-C >TN-S</name>
<name lang="ru">Распределительный пункт TN-C >TN-S</name> <name lang="ru">Распределительный пункт TN-C >TN-S</name>
<name lang="hu">3F + PEN szétválasztva TN-C-ről TN-S-re</name> <name lang="hu">3F + PEN szétválasztva TN-C-ről TN-S-re</name>
</names> </names>
<informations>Author: The QElectroTech team <informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations> License: see http://qelectrotech.org/wiki/doc/elements_license</informations>

View File

@@ -10,7 +10,6 @@
<name lang="el">Λυχνία</name> <name lang="el">Λυχνία</name>
<name lang="pt">Lâmpada</name> <name lang="pt">Lâmpada</name>
<name lang="cs">Kontrolka</name> <name lang="cs">Kontrolka</name>
<name lang="en">Light</name>
<name lang="pl">Lampa</name> <name lang="pl">Lampa</name>
<name lang="nl">Lamp</name> <name lang="nl">Lamp</name>
<name lang="en">Light</name> <name lang="en">Light</name>

View File

@@ -3,6 +3,5 @@
<name lang="en">Grundfos</name> <name lang="en">Grundfos</name>
<name lang="de">Grundfos</name> <name lang="de">Grundfos</name>
<name lang="cs">Grundfos</name> <name lang="cs">Grundfos</name>
<name lang="cs">Grundfos</name> </names>
</names>
</qet-directory> </qet-directory>

View File

@@ -1,11 +1,11 @@
<definition link_type="simple" width="200" height="180" hotspot_x="99" type="element" version="0.5" hotspot_y="81"> <definition link_type="simple" width="200" height="180" hotspot_x="99" type="element" version="0.5" hotspot_y="81">
<uuid uuid="{78B4397B-43EC-4795-BBF7-242CBBF25EC0}"/><names> <uuid uuid="{78B4397B-43EC-4795-BBF7-242CBBF25EC0}"/>
<names>
<name lang="en">Schneider Touch Screen HMISTU855</name> <name lang="en">Schneider Touch Screen HMISTU855</name>
<name lang="fr">Ecran tactile Schneider HMISTU855</name> <name lang="fr">Ecran tactile Schneider HMISTU855</name>
<name lang="cs">Dotykový displej HMISTU855</name> <name lang="cs">Dotykový displej HMISTU855</name>
<name lang="pl">Dotyková obrazovka Schneider HMISTU855</name>
</names> </names>
<name lang="cs">Dotyková obrazovka Schneider HMISTU855</name>
<informations>Author: The QElectroTech team <informations>Author: The QElectroTech team
License: see http://qelectrotech.org/wiki/doc/elements_license</informations> License: see http://qelectrotech.org/wiki/doc/elements_license</informations>
<description> <description>

View File

@@ -6,7 +6,7 @@
<name lang="pl">Zasilacz trójfazowy</name> <name lang="pl">Zasilacz trójfazowy</name>
<name lang="fr">ABL8RPS24050</name> <name lang="fr">ABL8RPS24050</name>
<name lang="en">Power supply AC/DC 3 poles</name> <name lang="en">Power supply AC/DC 3 poles</name>
<name lang="en">ABL8RPS24050</name> <name lang="cs">ABL8RPS24050</name>
</names> </names>
<elementInformations> <elementInformations>
<elementInformation name="unity" show="1"></elementInformation> <elementInformation name="unity" show="1"></elementInformation>

View File

@@ -2,7 +2,7 @@
<names> <names>
<name lang="en">Input Output cards</name> <name lang="en">Input Output cards</name>
<name lang="fr">Cartes d'entrées sorties</name> <name lang="fr">Cartes d'entrées sorties</name>
<name lang="en">Vstupní a výstupní karty</name> <name lang="cs">Vstupní a výstupní karty</name>
</names> </names>
</qet-directory> </qet-directory>

View File

@@ -8,7 +8,7 @@
<elementInformations> <elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation> <elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">750-450</elementInformation> <elementInformation show="1" name="designation">750-450</elementInformation>
<elementInformation show="1" name="description">4AI / 4-Channel RTD, config.</elementInformation> <elementInformation show="1" name="description">4AI / 4-Channel RTD, config. (Pt100, Pt1000)</elementInformation>
</elementInformations> </elementInformations>
<informations>Author: plc-user for QElectroTech <informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license License:see https://qelectrotech.org/wiki_new/doc/elements_license

View File

@@ -0,0 +1,85 @@
<definition hotspot_x="364" height="110" type="element" hotspot_y="55" link_type="simple" version="0.90" width="730">
<names>
<name lang="cs">750-471</name>
<name lang="en">750-471</name>
<name lang="fr">750-471</name>
<name lang="de">750-471</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">750-471</elementInformation>
<elementInformation show="1" name="description">4AI 0mA 4mA 20mA 10V diff. config.</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<rect x="180" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" height="20" ry="0" y="-40" width="120" rx="0"/>
<rect x="-140" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" height="20" ry="0" y="-40" width="120" rx="0"/>
<rect x="-300" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" height="20" ry="0" y="-40" width="120" rx="0"/>
<rect x="20" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" height="20" ry="0" y="-40" width="120" rx="0"/>
<rect x="-360" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" height="90" ry="0" y="-40" width="720" rx="0"/>
<text x="-354" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="8" text="0V" color="#000000"/>
<text x="-355" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="-12" text="24V" color="#000000"/>
<line length2="1.5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5" end2="none" x2="360" end1="none" y2="10" x1="-360" y1="10"/>
<dynamic_text x="342" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text_width="-1" keep_visual_rotation="true" text_from="ElementInfo" y="29.5" Valignment="AlignBottom" frame="false" z="6" uuid="{b1bce22f-cf42-4cbd-9005-6a0a52afa4fc}" Halignment="AlignRight">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<line length2="1.5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" length1="1.5" end2="none" x2="360" end1="none" y2="-10" x1="-360" y1="-10"/>
<text x="-116" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42" text="2" color="#000000"/>
<text x="-129" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="-24" text="AI2+" color="#000000"/>
<text x="112" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="-24" text="AI3-" color="#000000"/>
<text x="125" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42" text="7" color="#000000"/>
<text x="-179" font="Sans Serif,8,-1,5,50,0,0,0,0,0" rotation="0" y="45" text="4AI 0/4..20mA / ±20mA / 0..10V / ±10V diff. config." color="#000000"/>
<text x="-196" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42" text="5" color="#000000"/>
<text x="-209" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="-24" text="AI1-" color="#000000"/>
<text x="191" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="-24" text="AI4+" color="#000000"/>
<text x="206" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42" text="4" color="#000000"/>
<text x="-276" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42" text="1" color="#000000"/>
<text x="-289" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="-24" text="AI1+" color="#000000"/>
<text x="271" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="-24" text="AI4-" color="#000000"/>
<text x="286" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42" text="8" color="#000000"/>
<text x="-330" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" y="45" text="WAGO 750-471" color="#000000"/>
<text x="-36" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42" text="6" color="#000000"/>
<text x="-49" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="-24" text="AI2-" color="#000000"/>
<text x="32" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" y="-24" text="AI3+" color="#000000"/>
<text x="46" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" y="-42" text="3" color="#000000"/>
<polygon antialias="false" style="line-style:normal;line-weight:hight;filling:none;color:black" closed="false" x2="-356" y2="-10" x1="-362" y1="-10"/>
<arc x="360" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" height="5" start="90" y="-12.5" width="5" angle="180"/>
<polygon antialias="false" style="line-style:normal;line-weight:hight;filling:none;color:black" closed="false" x2="-356" y2="10" x1="-362" y1="10"/>
<arc x="360" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" height="5" start="90" y="7.5" width="5" angle="180"/>
<circle x="117.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" diameter="5"/>
<circle x="-122.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" diameter="5"/>
<circle x="197.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" diameter="5"/>
<circle x="-202.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" diameter="5"/>
<circle x="277.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" diameter="5"/>
<circle x="-282.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" diameter="5"/>
<circle x="37.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" diameter="5"/>
<circle x="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" diameter="5"/>
<dynamic_text x="-258" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" rotation="0" text_width="-1" keep_visual_rotation="false" text_from="UserText" y="-34" Valignment="AlignTop" frame="false" z="38" uuid="{ceca6fb8-89b5-40ef-a0f0-4682acc8ddf7}" Halignment="AlignHCenter">
<text>0..20mA</text>
</dynamic_text>
<dynamic_text x="-98" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" rotation="0" text_width="-1" keep_visual_rotation="false" text_from="UserText" y="-34" Valignment="AlignTop" frame="false" z="38" uuid="{ceca6fb8-89b5-40ef-a0f0-4682acc8ddf7}" Halignment="AlignHCenter">
<text>0..20mA</text>
</dynamic_text>
<dynamic_text x="62" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" rotation="0" text_width="-1" keep_visual_rotation="false" text_from="UserText" y="-34" Valignment="AlignTop" frame="false" z="38" uuid="{ceca6fb8-89b5-40ef-a0f0-4682acc8ddf7}" Halignment="AlignHCenter">
<text>0..20mA</text>
</dynamic_text>
<dynamic_text x="222" font="Sans Serif,6,-1,5,0,0,0,0,0,0,normal" rotation="0" text_width="-1" keep_visual_rotation="false" text_from="UserText" y="-34" Valignment="AlignTop" frame="false" z="38" uuid="{ceca6fb8-89b5-40ef-a0f0-4682acc8ddf7}" Halignment="AlignHCenter">
<text>0..20mA</text>
</dynamic_text>
<terminal x="360" orientation="e" name="" type="Generic" y="10" uuid="{a5528ef9-c69a-4ce8-bb96-3c6d1319a857}"/>
<terminal x="360" orientation="e" name="" type="Generic" y="-10" uuid="{5bb58b3f-4b63-4de4-b83e-d003848e8cbf}"/>
<terminal x="-120" orientation="n" name="" type="Generic" y="-40" uuid="{6f655774-e8d9-4e72-b42f-3b58cddf609b}"/>
<terminal x="-200" orientation="n" name="" type="Generic" y="-40" uuid="{f39c3b48-bfbe-48c0-ae57-3a924b52c41f}"/>
<terminal x="-280" orientation="n" name="" type="Generic" y="-40" uuid="{438dbfeb-6341-488e-a5d1-7f55e0b61f5e}"/>
<terminal x="200" orientation="n" name="" type="Generic" y="-40" uuid="{45b4bbd2-9ade-4087-a05d-4c5b9b7c88a8}"/>
<terminal x="120" orientation="n" name="" type="Generic" y="-40" uuid="{784abfa6-c624-454e-a555-86f7da20e418}"/>
<terminal x="280" orientation="n" name="" type="Generic" y="-40" uuid="{5cc0e034-2c81-4c8b-948c-52bb87afc4df}"/>
<terminal x="-40" orientation="n" name="" type="Generic" y="-40" uuid="{e08373f5-04e0-4dda-b558-6ab624e40452}"/>
<terminal x="40" orientation="n" name="" type="Generic" y="-40" uuid="{81dbfce5-081c-4636-ab8a-c8d15f7d7dcc}"/>
<terminal x="-360" orientation="w" name="" type="Generic" y="10" uuid="{21fe85f9-c1b5-4975-bb50-ef24a30b668b}"/>
<terminal x="-360" orientation="w" name="" type="Generic" y="-10" uuid="{68ab316f-2b24-4df7-95ae-5cf4fd289341}"/>
</description>
</definition>

View File

@@ -1,14 +0,0 @@
<qet-directory>
<names>
<name lang="pl">Controller</name>
<name lang="de">Controller</name>
<name lang="el">Controller</name>
<name lang="it">Controller</name>
<name lang="ru">Controller</name>
<name lang="nl">Controller</name>
<name lang="cs">Controller</name>
<name lang="en">Controller</name>
<name lang="fr">Controller</name>
<name lang="da">Controller</name>
</names>
</qet-directory>

View File

@@ -1,78 +0,0 @@
<definition type="element" link_type="simple" hotspot_x="364" hotspot_y="55" height="110" width="730" version="0.80">
<names>
<name lang="en">768-3301</name>
<name lang="pt">768-3301</name>
<name lang="ar">768-3301</name>
<name lang="pl">768-3301</name>
<name lang="el">768-3301</name>
<name lang="fr">768-3301</name>
<name lang="cs">768-3301</name>
<name lang="it">768-3301</name>
<name lang="es">768-3301</name>
<name lang="nl">768-3301</name>
<name lang="de">768-3301</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">768-3301</elementInformation>
<elementInformation show="1" name="description">PFC200 ADV 2ETH</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<rect rx="0" y="-40" width="720" ry="0" x="-360" height="90" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<circle y="17.5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-362.5" antialias="true" diameter="5"/>
<line x2="200" length2="1.5" y1="10" style="line-style:normal;line-weight:thin;filling:white;color:black" end2="none" antialias="false" x1="200" y2="-38" end1="none" length1="1.5"/>
<text y="24" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="Eth2" x="-355" rotation="0" color="#000000"/>
<line x2="120" length2="1.5" y1="-8.5" style="line-style:normal;line-weight:thin;filling:black;color:black" end2="none" antialias="false" x1="120" y2="-38" end1="circle" length1="1.5"/>
<circle y="-2.5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-362.5" antialias="true" diameter="5"/>
<line x2="280" length2="1.5" y1="11" style="line-style:normal;line-weight:thin;filling:black;color:black" end2="none" antialias="false" x1="280" y2="-37" end1="circle" length1="1.5"/>
<line x2="40" length2="1.5" y1="-10" style="line-style:normal;line-weight:thin;filling:white;color:black" end2="none" antialias="false" x1="40" y2="-38" end1="none" length1="1.5"/>
<circle y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-42.5" antialias="true" diameter="5"/>
<circle y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-122.5" antialias="true" diameter="5"/>
<circle y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="277.5" antialias="true" diameter="5"/>
<circle y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="197.5" antialias="true" diameter="5"/>
<circle y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="117.5" antialias="true" diameter="5"/>
<circle y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="37.5" antialias="true" diameter="5"/>
<line x2="358" length2="1.5" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" antialias="false" x1="200" y2="10" end1="none" length1="1.5"/>
<line x2="358" length2="1.5" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" antialias="false" x1="40" y2="-10" end1="none" length1="1.5"/>
<text y="45" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="WAGO 768-3301" x="-330" rotation="0" color="#000000"/>
<text y="4" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="IP-Adr.: " x="-304" rotation="0" color="#000000"/>
<text y="-22" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="0V" x="-39" rotation="0" color="#000000"/>
<text y="-22" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V" x="-119" rotation="0" color="#000000"/>
<text y="-31" font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="_" x="283" rotation="0" color="#000000"/>
<text y="-31" font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="_" x="203" rotation="0" color="#000000"/>
<text y="-22" font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+" x="121" rotation="0" color="#000000"/>
<text y="-22" font="Sans Serif,12,-1,5,50,0,0,0,0,0" text="+" x="41" rotation="0" color="#000000"/>
<text y="4" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="Eth1" x="-355" rotation="0" color="#000000"/>
<dynamic_text y="-11.5" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{bbebb605-ca40-42dc-b301-bc09057979c7}" Valignment="AlignTop" x="-260" text_from="UserText" frame="false" text_width="-1" rotation="0" Halignment="AlignLeft" z="42">
<text>192.168.1.17</text>
</dynamic_text>
<text y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="1" x="-115" rotation="0" color="#000000"/>
<text y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="2" x="-35" rotation="0" color="#000000"/>
<text y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="3" x="45" rotation="0" color="#000000"/>
<text y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="4" x="125" rotation="0" color="#000000"/>
<text y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="5" x="205" rotation="0" color="#000000"/>
<text y="-42" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="6" x="285" rotation="0" color="#000000"/>
<text y="45" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="Ethernet Controller" x="-138" rotation="0" color="#000000"/>
<dynamic_text y="29.5" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{d4e265c8-5560-47d1-8a18-63a02011d1fd}" Valignment="AlignTop" x="220" text_from="ElementInfo" frame="false" text_width="-1" rotation="0" Halignment="AlignLeft" z="53">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text y="9" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X1" x="-371" rotation="0" color="#000000"/>
<text y="29" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X2" x="-371" rotation="0" color="#000000"/>
<arc start="90" y="-12.5" angle="180" width="5" x="360" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
<arc start="90" y="7.5" angle="180" width="5" x="360" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
<terminal y="-40" orientation="n" x="-40"/>
<terminal y="0" orientation="w" x="-360"/>
<terminal y="-40" orientation="n" x="280"/>
<terminal y="-40" orientation="n" x="200"/>
<terminal y="-40" orientation="n" x="40"/>
<terminal y="-40" orientation="n" x="-120"/>
<terminal y="-40" orientation="n" x="120"/>
<terminal y="10" orientation="e" x="360"/>
<terminal y="-10" orientation="e" x="360"/>
<terminal y="20" orientation="w" x="-360"/>
</description>
</definition>

View File

@@ -1,14 +0,0 @@
<qet-directory>
<names>
<name lang="pl">Coupler</name>
<name lang="de">Koppler</name>
<name lang="el">Coupler</name>
<name lang="it">Coupler</name>
<name lang="ru">Coupler</name>
<name lang="nl">Coupler</name>
<name lang="cs">Komunikační modul</name>
<name lang="en">Coupler</name>
<name lang="fr">Coupleur</name>
<name lang="da">Coupler</name>
</names>
</qet-directory>

View File

@@ -1,78 +0,0 @@
<definition height="110" hotspot_y="55" type="element" link_type="simple" hotspot_x="364" width="730" version="0.80">
<names>
<name lang="es">768-2201</name>
<name lang="pt">768-2201</name>
<name lang="cs">768-2201</name>
<name lang="en">768-2201</name>
<name lang="ar">768-2201</name>
<name lang="de">768-2201</name>
<name lang="el">768-2201</name>
<name lang="pl">768-2201</name>
<name lang="nl">768-2201</name>
<name lang="fr">768-2201</name>
<name lang="it">768-2201</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">768-2201</elementInformation>
<elementInformation show="1" name="description">FC ADV ETHERCAT</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<rect rx="0" y="-40" width="720" ry="0" x="-360" height="90" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<circle y="17.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-362.5" antialias="true"/>
<line x1="200" end1="none" length2="1.5" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-38" x2="200" length1="1.5" end2="none" antialias="false"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="24" rotation="0" x="-355" text="Eth2" color="#000000"/>
<line x1="120" end1="circle" length2="1.5" y1="-8.5" style="line-style:normal;line-weight:thin;filling:black;color:black" y2="-38" x2="120" length1="1.5" end2="none" antialias="false"/>
<circle y="-2.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-362.5" antialias="true"/>
<line x1="280" end1="circle" length2="1.5" y1="11" style="line-style:normal;line-weight:thin;filling:black;color:black" y2="-37" x2="280" length1="1.5" end2="none" antialias="false"/>
<line x1="40" end1="none" length2="1.5" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-38" x2="40" length1="1.5" end2="none" antialias="false"/>
<circle y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-42.5" antialias="true"/>
<circle y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="-122.5" antialias="true"/>
<circle y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="277.5" antialias="true"/>
<circle y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="197.5" antialias="true"/>
<circle y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="117.5" antialias="true"/>
<circle y="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" x="37.5" antialias="true"/>
<line x1="200" end1="none" length2="1.5" y1="10" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="10" x2="358" length1="1.5" end2="none" antialias="false"/>
<line x1="40" end1="none" length2="1.5" y1="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-10" x2="358" length1="1.5" end2="none" antialias="false"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="45" rotation="0" x="-330" text="WAGO 768-2201" color="#000000"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="4" rotation="0" x="-304" text="Adr.: " color="#000000"/>
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" y="-11.5" z="42" rotation="0" text_from="UserText" uuid="{bbebb605-ca40-42dc-b301-bc09057979c7}" x="-270" text_width="-1" Valignment="AlignTop" Halignment="AlignLeft">
<text>0 0</text>
</dynamic_text>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-22" rotation="0" x="-39" text="0V" color="#000000"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="-22" rotation="0" x="-119" text="24V" color="#000000"/>
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-31" rotation="0" x="283" text="_" color="#000000"/>
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-31" rotation="0" x="203" text="_" color="#000000"/>
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" rotation="0" x="121" text="+" color="#000000"/>
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" y="-22" rotation="0" x="41" text="+" color="#000000"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="4" rotation="0" x="-355" text="Eth1" color="#000000"/>
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" y="29.5" z="53" rotation="0" text_from="ElementInfo" uuid="{d4e265c8-5560-47d1-8a18-63a02011d1fd}" x="220" text_width="-1" Valignment="AlignTop" Halignment="AlignLeft">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" rotation="0" x="-115" text="1" color="#000000"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" rotation="0" x="-35" text="2" color="#000000"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" rotation="0" x="45" text="3" color="#000000"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" rotation="0" x="125" text="4" color="#000000"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" rotation="0" x="205" text="5" color="#000000"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" y="-42" rotation="0" x="285" text="6" color="#000000"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" y="45" rotation="0" x="-138" text="Ethercat IO Coupler" color="#000000"/>
<text y="9" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X1" x="-371" rotation="0" color="#000000"/>
<text y="29" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="X2" x="-371" rotation="0" color="#000000"/>
<arc start="90" y="-12.5" angle="180" width="5" x="360" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
<arc start="90" y="7.5" angle="180" width="5" x="360" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
<terminal orientation="n" y="-40" x="-40"/>
<terminal orientation="w" y="0" x="-360"/>
<terminal orientation="n" y="-40" x="280"/>
<terminal orientation="n" y="-40" x="200"/>
<terminal orientation="n" y="-40" x="40"/>
<terminal orientation="n" y="-40" x="-120"/>
<terminal orientation="n" y="-40" x="120"/>
<terminal orientation="e" y="10" x="360"/>
<terminal orientation="e" y="-10" x="360"/>
<terminal orientation="w" y="20" x="-360"/>
</description>
</definition>

View File

@@ -1,14 +0,0 @@
<qet-directory>
<names>
<name lang="pl">DigitalIN</name>
<name lang="de">DigitalIN</name>
<name lang="el">DigitalIN</name>
<name lang="it">DigitalIN</name>
<name lang="ru">DigitalIN</name>
<name lang="nl">DigitalIN</name>
<name lang="cs">DigitalIN</name>
<name lang="en">DigitalIN</name>
<name lang="fr">DigitalIN</name>
<name lang="da">DigitalIN</name>
</names>
</qet-directory>

View File

@@ -1,109 +0,0 @@
<definition version="0.80" link_type="simple" width="730" hotspot_x="364" hotspot_y="55" type="element" height="110">
<names>
<name lang="de">763-1108</name>
<name lang="en">763-1108</name>
<name lang="fr">763-1108</name>
<name lang="cs">763-1108</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-1108</elementInformation>
<elementInformation show="1" name="description">8DI ADV 24 V DC HS</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<rect rx="0" y="-40" width="720" ry="0" x="-360" height="90" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<circle y="-42.5" diameter="5" x="207.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="24V" color="#000000" rotation="0" y="-12" x="-355"/>
<line x1="-190" end2="circle" length2="1.5" x2="-190" length1="1.5" y1="-38" end1="none" y2="-8.5" style="line-style:normal;line-weight:thin;filling:black;color:black" antialias="false"/>
<line x1="-30" end2="circle" length2="1.5" x2="-30" length1="1.5" y1="-38" end1="none" y2="-8.5" style="line-style:normal;line-weight:thin;filling:black;color:black" antialias="false"/>
<line x1="290" end2="circle" length2="1.5" x2="290" length1="1.5" y1="-38" end1="none" y2="-8.5" style="line-style:normal;line-weight:thin;filling:black;color:black" antialias="false"/>
<line x1="130" end2="circle" length2="1.5" x2="130" length1="1.5" y1="-38" end1="none" y2="-8.5" style="line-style:normal;line-weight:thin;filling:black;color:black" antialias="false"/>
<circle y="-42.5" diameter="5" x="87.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<line x1="50" end2="circle" length2="1.5" x2="50" length1="1.5" y1="-38" end1="none" y2="-8.5" style="line-style:normal;line-weight:thin;filling:black;color:black" antialias="false"/>
<line x1="-110" end2="circle" length2="1.5" x2="-110" length1="1.5" y1="-38" end1="none" y2="-8.5" style="line-style:normal;line-weight:thin;filling:black;color:black" antialias="false"/>
<line x1="-360" end2="none" length2="1.5" x2="360" length1="1.5" y1="10" end1="none" y2="10" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/>
<line x1="210" end2="circle" length2="1.5" x2="210" length1="1.5" y1="-38" end1="none" y2="-8.5" style="line-style:normal;line-weight:thin;filling:black;color:black" antialias="false"/>
<circle y="-42.5" diameter="5" x="247.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="0V" color="#000000" rotation="0" y="8" x="-355"/>
<circle y="-42.5" diameter="5" x="-112.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<circle y="-42.5" diameter="5" x="47.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<circle y="-42.5" diameter="5" x="287.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<circle y="-42.5" diameter="5" x="-232.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<circle y="-42.5" diameter="5" x="7.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<circle y="-42.5" diameter="5" x="167.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<circle y="-42.5" diameter="5" x="-72.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<circle y="-42.5" diameter="5" x="127.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<circle y="-42.5" diameter="5" x="-272.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<circle y="-42.5" diameter="5" x="-32.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<circle y="-42.5" diameter="5" x="-312.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="11" color="#000000" rotation="0" y="-42" x="94"/>
<circle y="-42.5" diameter="5" x="-152.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<circle y="-42.5" diameter="5" x="-192.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DI6" color="#000000" rotation="0" y="-24" x="91"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V" color="#000000" rotation="0" y="-24" x="212"/>
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{b4886cfb-afcd-4027-80d3-57e95a88e35b}" frame="false" text_from="ElementInfo" Halignment="AlignLeft" rotation="0" y="29.5" Valignment="AlignTop" x="220" z="31" text_width="-1">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="14" color="#000000" rotation="0" y="-42" x="215"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="10" color="#000000" rotation="0" y="-42" x="54"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V" color="#000000" rotation="0" y="-24" x="51"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DI8" color="#000000" rotation="0" y="-24" x="251"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="15" color="#000000" rotation="0" y="-42" x="256"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="9" color="#000000" rotation="0" y="-42" x="14"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DI5" color="#000000" rotation="0" y="-24" x="11"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V" color="#000000" rotation="0" y="-24" x="291"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="16" color="#000000" rotation="0" y="-42" x="296"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="12" color="#000000" rotation="0" y="-42" x="134"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V" color="#000000" rotation="0" y="-24" x="131"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DI7" color="#000000" rotation="0" y="-24" x="172"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="13" color="#000000" rotation="0" y="-42" x="176"/>
<line x1="-360" end2="none" length2="1.5" x2="360" length1="1.5" y1="-10" end1="none" y2="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="3" color="#000000" rotation="0" y="-42" x="-226"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DI2" color="#000000" rotation="0" y="-24" x="-229"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V" color="#000000" rotation="0" y="-24" x="-108"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="6" color="#000000" rotation="0" y="-42" x="-105"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="2" color="#000000" rotation="0" y="-42" x="-266"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V" color="#000000" rotation="0" y="-24" x="-269"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DI4" color="#000000" rotation="0" y="-24" x="-69"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="7" color="#000000" rotation="0" y="-42" x="-64"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="1" color="#000000" rotation="0" y="-42" x="-306"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DI1" color="#000000" rotation="0" y="-24" x="-309"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V" color="#000000" rotation="0" y="-24" x="-29"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="8" color="#000000" rotation="0" y="-42" x="-24"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="4" color="#000000" rotation="0" y="-42" x="-186"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="WAGO 763-1108" color="#000000" rotation="0" y="45" x="-339"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V" color="#000000" rotation="0" y="-24" x="-189"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DI3" color="#000000" rotation="0" y="-24" x="-148"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="5" color="#000000" rotation="0" y="-42" x="-144"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="8-Channel DI, DC 24V" color="#000000" rotation="0" y="45" x="-130"/>
<line x1="-270" end2="circle" length2="1.5" x2="-270" length1="1.5" y1="-38" end1="none" y2="-8.5" style="line-style:normal;line-weight:thin;filling:black;color:black" antialias="false"/>
<polygon x1="-362" x2="-356" y1="-10" closed="false" y2="-10" style="line-style:normal;line-weight:hight;filling:none;color:black" antialias="false"/>
<arc start="90" y="-12.5" angle="180" width="5" x="360" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
<polygon x1="-362" x2="-356" y1="10" closed="false" y2="10" style="line-style:normal;line-weight:hight;filling:none;color:black" antialias="false"/>
<arc start="90" y="7.5" angle="180" width="5" x="360" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
<terminal orientation="w" y="10" x="-360"/>
<terminal orientation="n" y="-40" x="-230"/>
<terminal orientation="n" y="-40" x="-270"/>
<terminal orientation="n" y="-40" x="-310"/>
<terminal orientation="n" y="-40" x="-70"/>
<terminal orientation="n" y="-40" x="-110"/>
<terminal orientation="n" y="-40" x="-30"/>
<terminal orientation="e" y="10" x="360"/>
<terminal orientation="e" y="-10" x="360"/>
<terminal orientation="n" y="-40" x="-190"/>
<terminal orientation="n" y="-40" x="-150"/>
<terminal orientation="w" y="-10" x="-360"/>
<terminal orientation="n" y="-40" x="170"/>
<terminal orientation="n" y="-40" x="10"/>
<terminal orientation="n" y="-40" x="50"/>
<terminal orientation="n" y="-40" x="90"/>
<terminal orientation="n" y="-40" x="250"/>
<terminal orientation="n" y="-40" x="210"/>
<terminal orientation="n" y="-40" x="290"/>
<terminal orientation="n" y="-40" x="130"/>
</description>
</definition>

View File

@@ -1,74 +0,0 @@
<definition width="730" height="110" link_type="simple" hotspot_x="364" hotspot_y="55" type="element" version="0.80">
<names>
<name lang="de">763-1108 (I) </name>
<name lang="en">763-1108 (I) </name>
<name lang="fr">763-1108 (I) </name>
<name lang="cs">763-1108 (I) </name>
</names>
<elementInformations>
<elementInformation show="1" name="designation">763-1108</elementInformation>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="description">8DI ADV 24 V DC HS</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<polygon x3="-360" y1="-40" closed="false" y3="50" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="360" x2="-360" y2="-40" y4="50" x4="360"/>
<line y1="-38" end1="none" length1="1.5" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" length2="1.5" x1="120" x2="120" y2="-8.5" end2="circle"/>
<line y1="-38" end1="none" length1="1.5" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" length2="1.5" x1="-40" x2="-40" y2="-8.5" end2="circle"/>
<text text="24V" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="-12" x="-355"/>
<line y1="-38" end1="none" length1="1.5" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" length2="1.5" x1="280" x2="280" y2="-8.5" end2="circle"/>
<line y1="10" end1="none" length1="1.5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5" x1="-360" x2="360" y2="10" end2="none"/>
<text text="0V" rotation="0" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" y="8" x="-355"/>
<circle antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="117.5"/>
<circle antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="-122.5"/>
<circle antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="197.5"/>
<circle antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="-202.5"/>
<circle antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="277.5"/>
<circle antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="-282.5"/>
<circle antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="37.5"/>
<circle antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="-42.5"/>
<dynamic_text rotation="0" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{f2c738ac-b810-43d2-95a0-21dab8e21d1e}" Valignment="AlignTop" frame="false" z="16" Halignment="AlignLeft" text_from="ElementInfo" y="29.5" x="220">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<line y1="-40" end1="none" length1="1.5" antialias="false" style="line-style:dashdotted;line-weight:normal;filling:none;color:black" length2="1.5" x1="360" x2="360" y2="50" end2="none"/>
<line y1="-10" end1="none" length1="1.5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" length2="1.5" x1="-360" x2="360" y2="-10" end2="none"/>
<text text="3" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" x="-116"/>
<text text="DI2" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" x="-119"/>
<text text="24V" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" x="122"/>
<text text="6" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" x="125"/>
<text text="2" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" x="-196"/>
<text text="24V" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" x="-199"/>
<text text="DI4" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" x="201"/>
<text text="7" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" x="206"/>
<text text="1" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" x="-276"/>
<text text="DI1" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" x="-279"/>
<text text="24V" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" x="281"/>
<text text="8" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" x="286"/>
<text text="4" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" x="-36"/>
<text text="WAGO 763-1108/0000-0000 (I)" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="45" x="-339"/>
<text text="24V" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" x="-39"/>
<text text="DI3" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="-24" x="42"/>
<text text="5" rotation="0" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" y="-42" x="46"/>
<text text="8-Channel DI, DC 24 V" rotation="0" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" y="45" x="-130"/>
<line y1="-38" end1="none" length1="1.5" antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" length2="1.5" x1="-200" x2="-200" y2="-8.5" end2="circle"/>
<polygon y1="-10" closed="false" antialias="false" style="line-style:normal;line-weight:hight;filling:none;color:black" x1="-362" x2="-356" y2="-10"/>
<arc width="5" height="5" antialias="true" start="90" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-12.5" angle="180" x="360"/>
<polygon y1="10" closed="false" antialias="false" style="line-style:normal;line-weight:hight;filling:none;color:black" x1="-362" x2="-356" y2="10"/>
<arc width="5" height="5" antialias="true" start="90" style="line-style:normal;line-weight:normal;filling:none;color:black" y="7.5" angle="180" x="360"/>
<terminal orientation="n" y="-40" x="-280"/>
<terminal orientation="n" y="-40" x="-200"/>
<terminal orientation="w" y="-10" x="-360"/>
<terminal orientation="w" y="10" x="-360"/>
<terminal orientation="n" y="-40" x="-120"/>
<terminal orientation="n" y="-40" x="200"/>
<terminal orientation="n" y="-40" x="120"/>
<terminal orientation="n" y="-40" x="280"/>
<terminal orientation="e" y="10" x="360"/>
<terminal orientation="e" y="-10" x="360"/>
<terminal orientation="n" y="-40" x="-40"/>
<terminal orientation="n" y="-40" x="40"/>
</description>
</definition>

View File

@@ -1,74 +0,0 @@
<definition hotspot_x="364" height="110" hotspot_y="55" type="element" width="730" version="0.80" link_type="simple">
<names>
<name lang="de">763-1108 (II) </name>
<name lang="fr">763-1108 (II) </name>
<name lang="en">763-1108 (II) </name>
<name lang="cs">763-1108 (II) </name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-1108</elementInformation>
<elementInformation show="1" name="description">8DI ADV 24 V DC HS</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<polygon antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" y2="-40" y1="-40" y3="50" x4="-360" closed="false" y4="50" x3="360" x2="360" x1="-360"/>
<line antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" end2="circle" y2="-8.5" y1="-38" length1="1.5" length2="1.5" x2="120" x1="120" end1="none"/>
<line antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" end2="circle" y2="-8.5" y1="-38" length1="1.5" length2="1.5" x2="-40" x1="-40" end1="none"/>
<text x="-355" font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="24V" y="-12" color="#000000" rotation="0"/>
<line antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" end2="circle" y2="-8.5" y1="-38" length1="1.5" length2="1.5" x2="280" x1="280" end1="none"/>
<line antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" y2="10" y1="10" length1="1.5" length2="1.5" x2="360" x1="-360" end1="none"/>
<text x="-355" font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="0V" y="8" color="#000000" rotation="0"/>
<circle antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" x="117.5" y="-42.5" diameter="5"/>
<circle antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-122.5" y="-42.5" diameter="5"/>
<circle antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" x="197.5" y="-42.5" diameter="5"/>
<circle antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-202.5" y="-42.5" diameter="5"/>
<line antialias="false" style="line-style:dashdotted;line-weight:normal;filling:none;color:black" end2="none" y2="50" y1="-40" length1="1.5" length2="1.5" x2="-360" x1="-360" end1="none"/>
<circle antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" x="277.5" y="-42.5" diameter="5"/>
<circle antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-282.5" y="-42.5" diameter="5"/>
<circle antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" x="37.5" y="-42.5" diameter="5"/>
<circle antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-42.5" y="-42.5" diameter="5"/>
<dynamic_text x="220" Halignment="AlignLeft" text_width="-1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Valignment="AlignTop" y="29.5" z="19" uuid="{8985f823-7369-4bcf-9a43-f6a7165b53c6}" text_from="ElementInfo" rotation="0" frame="false">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<line antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" end2="none" y2="-10" y1="-10" length1="1.5" length2="1.5" x2="360" x1="-360" end1="none"/>
<text x="-116" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="11" y="-42" color="#000000" rotation="0"/>
<text x="-119" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DI6" y="-24" color="#000000" rotation="0"/>
<text x="122" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V" y="-24" color="#000000" rotation="0"/>
<text x="125" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="14" y="-42" color="#000000" rotation="0"/>
<text x="-196" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="10" y="-42" color="#000000" rotation="0"/>
<text x="-199" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V" y="-24" color="#000000" rotation="0"/>
<text x="201" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DI8" y="-24" color="#000000" rotation="0"/>
<text x="206" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="15" y="-42" color="#000000" rotation="0"/>
<text x="-276" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="9" y="-42" color="#000000" rotation="0"/>
<text x="-279" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DI5" y="-24" color="#000000" rotation="0"/>
<text x="281" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V" y="-24" color="#000000" rotation="0"/>
<text x="286" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="16" y="-42" color="#000000" rotation="0"/>
<text x="-36" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="12" y="-42" color="#000000" rotation="0"/>
<text x="-339" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="WAGO 763-1108/0000-0000 (II)" y="45" color="#000000" rotation="0"/>
<text x="-39" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="24V" y="-24" color="#000000" rotation="0"/>
<text x="42" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DI7" y="-24" color="#000000" rotation="0"/>
<text x="46" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="13" y="-42" color="#000000" rotation="0"/>
<text x="-130" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="8-Channel DI, DC 24 V" y="45" color="#000000" rotation="0"/>
<line antialias="false" style="line-style:normal;line-weight:thin;filling:black;color:black" end2="circle" y2="-8.5" y1="-38" length1="1.5" length2="1.5" x2="-200" x1="-200" end1="none"/>
<polygon antialias="false" style="line-style:normal;line-weight:hight;filling:none;color:black" y2="-10" y1="-10" closed="false" x2="-356" x1="-362"/>
<arc antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="360" height="5" angle="180" y="-12.5" width="5" start="90"/>
<polygon antialias="false" style="line-style:normal;line-weight:hight;filling:none;color:black" y2="10" y1="10" closed="false" x2="-356" x1="-362"/>
<arc antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" x="360" height="5" angle="180" y="7.5" width="5" start="90"/>
<terminal x="-200" orientation="n" y="-40"/>
<terminal x="-360" orientation="w" y="-10"/>
<terminal x="-360" orientation="w" y="10"/>
<terminal x="-120" orientation="n" y="-40"/>
<terminal x="200" orientation="n" y="-40"/>
<terminal x="120" orientation="n" y="-40"/>
<terminal x="280" orientation="n" y="-40"/>
<terminal x="360" orientation="e" y="10"/>
<terminal x="360" orientation="e" y="-10"/>
<terminal x="-40" orientation="n" y="-40"/>
<terminal x="40" orientation="n" y="-40"/>
<terminal x="-280" orientation="n" y="-40"/>
</description>
</definition>

View File

@@ -1,101 +0,0 @@
<definition hotspot_y="55" width="730" link_type="simple" height="110" hotspot_x="364" version="0.80" type="element">
<names>
<name lang="de">763-1116</name>
<name lang="en">763-1116</name>
<name lang="fr">763-1116</name>
<name lang="cs">763-1116</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-1116</elementInformation>
<elementInformation show="1" name="description">16DI ADV 24 V DC HS</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<rect antialias="false" width="720" height="90" rx="0" ry="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-360" y="-40"/>
<circle antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="207.5" y="-42.5"/>
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" x="-355" color="#000000" y="-12" text="24V"/>
<circle antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="87.5" y="-42.5"/>
<line x2="360" y1="10" x1="-360" y2="10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" end2="none"/>
<circle antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="247.5" y="-42.5"/>
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" x="-355" color="#000000" y="8" text="0V"/>
<circle antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-112.5" y="-42.5"/>
<circle antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="47.5" y="-42.5"/>
<circle antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="287.5" y="-42.5"/>
<circle antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-232.5" y="-42.5"/>
<circle antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="7.5" y="-42.5"/>
<circle antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="167.5" y="-42.5"/>
<circle antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-72.5" y="-42.5"/>
<circle antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="127.5" y="-42.5"/>
<circle antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-272.5" y="-42.5"/>
<circle antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-32.5" y="-42.5"/>
<circle antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-312.5" y="-42.5"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="94" color="#000000" y="-42" text="11"/>
<circle antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-152.5" y="-42.5"/>
<circle antialias="true" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black" x="-192.5" y="-42.5"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="91" color="#000000" y="-24" text="DI11"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="212" color="#000000" y="-24" text="DI14"/>
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="ElementInfo" text_width="-1" frame="false" Valignment="AlignTop" rotation="0" z="24" x="220" uuid="{ffb3404a-b005-4f38-8da7-a14c2ceb927b}" y="29.5" Halignment="AlignLeft">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="215" color="#000000" y="-42" text="14"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="54" color="#000000" y="-42" text="10"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="51" color="#000000" y="-24" text="DI10"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="251" color="#000000" y="-24" text="DI15"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="256" color="#000000" y="-42" text="15"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="14" color="#000000" y="-42" text="9"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="11" color="#000000" y="-24" text="DI9"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="291" color="#000000" y="-24" text="DI16"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="296" color="#000000" y="-42" text="16"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="134" color="#000000" y="-42" text="12"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="131" color="#000000" y="-24" text="DI12"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="172" color="#000000" y="-24" text="DI13"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="176" color="#000000" y="-42" text="13"/>
<line x2="360" y1="-10" x1="-360" y2="-10" antialias="false" length1="1.5" length2="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" end2="none"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="-226" color="#000000" y="-42" text="3"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="-229" color="#000000" y="-24" text="DI3"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="-108" color="#000000" y="-24" text="DI6"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="-105" color="#000000" y="-42" text="6"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="-266" color="#000000" y="-42" text="2"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="-269" color="#000000" y="-24" text="DI2"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="-69" color="#000000" y="-24" text="DI7"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="-64" color="#000000" y="-42" text="7"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="-306" color="#000000" y="-42" text="1"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="-309" color="#000000" y="-24" text="DI1"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="-29" color="#000000" y="-24" text="DI8"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="-24" color="#000000" y="-42" text="8"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="-186" color="#000000" y="-42" text="4"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="-339" color="#000000" y="45" text="WAGO 763-1116"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="-189" color="#000000" y="-24" text="DI4"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="-148" color="#000000" y="-24" text="DI5"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" x="-144" color="#000000" y="-42" text="5"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" x="-130" color="#000000" y="45" text="16-Channel DI, DC 24V"/>
<polygon x2="-356" y1="-10" x1="-362" y2="-10" antialias="false" style="line-style:normal;line-weight:hight;filling:none;color:black" closed="false"/>
<arc antialias="true" width="5" angle="180" height="5" start="90" style="line-style:normal;line-weight:normal;filling:none;color:black" x="360" y="-12.5"/>
<polygon x2="-356" y1="10" x1="-362" y2="10" antialias="false" style="line-style:normal;line-weight:hight;filling:none;color:black" closed="false"/>
<arc antialias="true" width="5" angle="180" height="5" start="90" style="line-style:normal;line-weight:normal;filling:none;color:black" x="360" y="7.5"/>
<terminal orientation="n" x="-310" y="-40"/>
<terminal orientation="n" x="-70" y="-40"/>
<terminal orientation="n" x="-270" y="-40"/>
<terminal orientation="n" x="-230" y="-40"/>
<terminal orientation="w" x="-360" y="10"/>
<terminal orientation="n" x="-110" y="-40"/>
<terminal orientation="n" x="-30" y="-40"/>
<terminal orientation="e" x="360" y="10"/>
<terminal orientation="e" x="360" y="-10"/>
<terminal orientation="n" x="-190" y="-40"/>
<terminal orientation="n" x="-150" y="-40"/>
<terminal orientation="w" x="-360" y="-10"/>
<terminal orientation="n" x="170" y="-40"/>
<terminal orientation="n" x="10" y="-40"/>
<terminal orientation="n" x="50" y="-40"/>
<terminal orientation="n" x="90" y="-40"/>
<terminal orientation="n" x="250" y="-40"/>
<terminal orientation="n" x="210" y="-40"/>
<terminal orientation="n" x="290" y="-40"/>
<terminal orientation="n" x="130" y="-40"/>
</description>
</definition>

View File

@@ -1,70 +0,0 @@
<definition type="element" height="110" hotspot_y="55" hotspot_x="364" width="730" link_type="simple" version="0.80">
<names>
<name lang="en">763-1116 (I) </name>
<name lang="de">763-1116 (I) </name>
<name lang="fr">763-1116 (I) </name>
<name lang="cs">763-1116 (I) </name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-1116</elementInformation>
<elementInformation show="1" name="description">16DI ADV 24 V DC HS</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<polygon x3="-360" x4="360" closed="false" x1="360" y4="50" y2="-40" y1="-40" x2="-360" y3="50" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false"/>
<text rotation="0" y="-12" text="24V" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" x="-355"/>
<line end1="none" end2="none" x1="-360" length2="1.5" y2="10" y1="10" length1="1.5" x2="360" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/>
<text rotation="0" y="8" text="0V" font="Sans Serif,7,-1,5,50,0,0,0,0,0" color="#000000" x="-355"/>
<circle y="-42.5" diameter="5" x="117.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<circle y="-42.5" diameter="5" x="-122.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<circle y="-42.5" diameter="5" x="197.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<circle y="-42.5" diameter="5" x="-202.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<circle y="-42.5" diameter="5" x="277.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<circle y="-42.5" diameter="5" x="-282.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<circle y="-42.5" diameter="5" x="37.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<circle y="-42.5" diameter="5" x="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true"/>
<dynamic_text rotation="0" text_width="-1" frame="false" Halignment="AlignLeft" y="29.5" z="13" uuid="{836953e0-80e3-4e4c-befa-2508d92b9678}" text_from="ElementInfo" Valignment="AlignTop" font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="220">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<line end1="none" end2="none" x1="360" length2="1.5" y2="50" y1="-40" length1="1.5" x2="360" style="line-style:dashdotted;line-weight:normal;filling:none;color:black" antialias="false"/>
<line end1="none" end2="none" x1="-360" length2="1.5" y2="-10" y1="-10" length1="1.5" x2="360" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/>
<text rotation="0" y="-42" text="3" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="-116"/>
<text rotation="0" y="-24" text="DI3" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" x="-119"/>
<text rotation="0" y="-24" text="DI6" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" x="122"/>
<text rotation="0" y="-42" text="6" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="125"/>
<text rotation="0" y="-42" text="2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="-196"/>
<text rotation="0" y="-24" text="DI2" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" x="-199"/>
<text rotation="0" y="-24" text="DI7" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" x="201"/>
<text rotation="0" y="-42" text="7" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="206"/>
<text rotation="0" y="-42" text="1" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="-276"/>
<text rotation="0" y="-24" text="DI1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" x="-279"/>
<text rotation="0" y="-24" text="DI8" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" x="281"/>
<text rotation="0" y="-42" text="8" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="286"/>
<text rotation="0" y="-42" text="4" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="-36"/>
<text rotation="0" y="45" text="WAGO 763-1116/0000-0000 (I)" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" x="-339"/>
<text rotation="0" y="-24" text="DI4" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" x="-39"/>
<text rotation="0" y="-24" text="DI5" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" x="42"/>
<text rotation="0" y="-42" text="5" font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="46"/>
<text rotation="0" y="45" text="16-Channel DI, DC 24 V" font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" x="-130"/>
<polygon closed="false" x1="-362" y2="-10" y1="-10" x2="-356" style="line-style:normal;line-weight:hight;filling:none;color:black" antialias="false"/>
<arc height="5" start="90" width="5" y="-12.5" angle="180" x="360" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
<polygon closed="false" x1="-362" y2="10" y1="10" x2="-356" style="line-style:normal;line-weight:hight;filling:none;color:black" antialias="false"/>
<arc height="5" start="90" width="5" y="7.5" angle="180" x="360" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
<terminal orientation="n" y="-40" x="200"/>
<terminal orientation="w" y="-10" x="-360"/>
<terminal orientation="w" y="10" x="-360"/>
<terminal orientation="n" y="-40" x="-280"/>
<terminal orientation="n" y="-40" x="-120"/>
<terminal orientation="n" y="-40" x="-200"/>
<terminal orientation="n" y="-40" x="120"/>
<terminal orientation="n" y="-40" x="280"/>
<terminal orientation="e" y="10" x="360"/>
<terminal orientation="e" y="-10" x="360"/>
<terminal orientation="n" y="-40" x="-40"/>
<terminal orientation="n" y="-40" x="40"/>
</description>
</definition>

View File

@@ -1,70 +0,0 @@
<definition height="110" hotspot_x="364" type="element" link_type="simple" width="730" hotspot_y="55" version="0.80">
<names>
<name lang="fr">763-1116 (II) </name>
<name lang="en">763-1116 (II) </name>
<name lang="de">763-1116 (II) </name>
<name lang="cs">763-1116 (II) </name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-1116</elementInformation>
<elementInformation show="1" name="description">16DI ADV 24 V DC HS</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<polygon x1="-360" closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x3="360" y1="-40" y4="50" y2="-40" y3="50" x2="360" x4="-360" antialias="false"/>
<text text="24V" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-12" x="-355"/>
<line x1="-360" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="10" y2="10" x2="360" end2="none" end1="none" length2="1.5" antialias="false"/>
<text text="0V" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="8" x="-355"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="117.5" antialias="true"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="-122.5" antialias="true"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="197.5" antialias="true"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="-202.5" antialias="true"/>
<line x1="-360" length1="1.5" style="line-style:dashdotted;line-weight:normal;filling:none;color:black" y1="-40" y2="50" x2="-360" end2="none" end1="none" length2="1.5" antialias="false"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="277.5" antialias="true"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="-282.5" antialias="true"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="37.5" antialias="true"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" y="-42.5" x="-42.5" antialias="true"/>
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" uuid="{2f225148-4b99-4de1-9eab-4bd446ade14c}" frame="false" Halignment="AlignLeft" rotation="0" text_width="-1" z="16" y="29.5" Valignment="AlignTop" x="220" text_from="ElementInfo">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<line x1="-360" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-10" y2="-10" x2="360" end2="none" end1="none" length2="1.5" antialias="false"/>
<text text="11" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-42" x="-116"/>
<text text="DI11" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-24" x="-119"/>
<text text="DI14" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-24" x="122"/>
<text text="14" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-42" x="125"/>
<text text="10" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-42" x="-196"/>
<text text="DI10" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-24" x="-199"/>
<text text="DI15" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-24" x="201"/>
<text text="15" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-42" x="206"/>
<text text="9" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-42" x="-276"/>
<text text="DI9" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-24" x="-279"/>
<text text="DI16" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-24" x="281"/>
<text text="16" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-42" x="286"/>
<text text="12" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-42" x="-36"/>
<text text="WAGO 763-1116/0000-0000 (II)" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="45" x="-339"/>
<text text="DI12" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-24" x="-39"/>
<text text="DI13" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-24" x="42"/>
<text text="13" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="-42" x="46"/>
<text text="16-Channel DI, DC 24 V" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" y="45" x="-130"/>
<polygon x1="-362" closed="false" style="line-style:normal;line-weight:hight;filling:none;color:black" y1="-10" y2="-10" x2="-356" antialias="false"/>
<arc height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" y="-12.5" start="90" x="360" angle="180" antialias="true"/>
<polygon x1="-362" closed="false" style="line-style:normal;line-weight:hight;filling:none;color:black" y1="10" y2="10" x2="-356" antialias="false"/>
<arc height="5" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" y="7.5" start="90" x="360" angle="180" antialias="true"/>
<terminal name="" y="-40" x="40" orientation="n"/>
<terminal name="" y="-40" x="-280" orientation="n"/>
<terminal name="" y="-40" x="-200" orientation="n"/>
<terminal name="" y="-10" x="-360" orientation="w"/>
<terminal name="" y="10" x="-360" orientation="w"/>
<terminal name="" y="-40" x="-120" orientation="n"/>
<terminal name="" y="-40" x="200" orientation="n"/>
<terminal name="" y="-40" x="120" orientation="n"/>
<terminal name="" y="-40" x="280" orientation="n"/>
<terminal name="" y="10" x="360" orientation="e"/>
<terminal name="" y="-10" x="360" orientation="e"/>
<terminal name="" y="-40" x="-40" orientation="n"/>
</description>
</definition>

View File

@@ -1,14 +0,0 @@
<qet-directory>
<names>
<name lang="pl">DigitalOUT</name>
<name lang="de">DigitalOUT</name>
<name lang="el">DigitalOUT</name>
<name lang="it">DigitalOUT</name>
<name lang="ru">DigitalOUT</name>
<name lang="nl">DigitalOUT</name>
<name lang="cs">DigitalOUT</name>
<name lang="en">DigitalOUT</name>
<name lang="fr">DigitalOUT</name>
<name lang="da">DigitalOUT</name>
</names>
</qet-directory>

View File

@@ -1,109 +0,0 @@
<definition hotspot_y="45" link_type="simple" type="element" width="730" hotspot_x="364" version="0.80" height="110">
<names>
<name lang="de">763-1508</name>
<name lang="fr">763-1508</name>
<name lang="en">763-1508</name>
<name lang="cs">763-1508</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-1508</elementInformation>
<elementInformation show="1" name="description">8DO ADV 24 V DC; 0,5 A; HS</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<rect y="-40" antialias="false" x="-360" rx="0" ry="0" width="720" height="90" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<circle y="47.5" antialias="true" x="207.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<line antialias="false" end2="circle" y1="50" length1="1.5" x1="290" y2="8.5" x2="290" length2="1.5" end1="none" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
<line antialias="false" end2="circle" y1="50" length1="1.5" x1="130" y2="8.5" x2="130" length2="1.5" end1="none" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
<line antialias="false" end2="circle" y1="50" length1="1.5" x1="-30" y2="8.5" x2="-30" length2="1.5" end1="none" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
<line antialias="false" end2="circle" y1="50" length1="1.5" x1="-190" y2="8.5" x2="-190" length2="1.5" end1="none" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
<text y="-12" color="#000000" x="-355" font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="24V" rotation="0"/>
<line antialias="false" end2="circle" y1="50" length1="1.5" x1="210" y2="8.5" x2="210" length2="1.5" end1="none" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
<circle y="47.5" antialias="true" x="87.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<line antialias="false" end2="circle" y1="50" length1="1.5" x1="50" y2="8.5" x2="50" length2="1.5" end1="none" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
<line antialias="false" end2="circle" y1="50" length1="1.5" x1="-110" y2="8.5" x2="-110" length2="1.5" end1="none" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
<line antialias="false" end2="none" y1="10" length1="1.5" x1="-360" y2="10" x2="360" length2="1.5" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle y="47.5" antialias="true" x="247.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<text y="8" color="#000000" x="-355" font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="0V" rotation="0"/>
<circle y="47.5" antialias="true" x="-112.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle y="47.5" antialias="true" x="47.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle y="47.5" antialias="true" x="287.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle y="47.5" antialias="true" x="-232.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle y="47.5" antialias="true" x="7.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle y="47.5" antialias="true" x="167.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle y="47.5" antialias="true" x="-72.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle y="47.5" antialias="true" x="127.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle y="47.5" antialias="true" x="-272.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle y="47.5" antialias="true" x="-32.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle y="47.5" antialias="true" x="-312.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<text y="58" color="#000000" x="93" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="11" rotation="0"/>
<circle y="47.5" antialias="true" x="-152.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle y="47.5" antialias="true" x="-192.5" diameter="5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<text y="46" color="#000000" x="93" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DO6" rotation="0"/>
<text y="46" color="#000000" x="214" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="0V" rotation="0"/>
<text y="58" color="#000000" x="213" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="14" rotation="0"/>
<text y="58" color="#000000" x="53" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="10" rotation="0"/>
<text y="46" color="#000000" x="53" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="0V" rotation="0"/>
<text y="46" color="#000000" x="253" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DO8" rotation="0"/>
<text y="58" color="#000000" x="253" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="15" rotation="0"/>
<text y="58" color="#000000" x="13" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="9" rotation="0"/>
<dynamic_text y="-42.5" uuid="{6fd38447-7120-4779-8da3-e245e94c7f99}" x="209" text_width="-1" Halignment="AlignLeft" frame="false" z="38" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" Valignment="AlignTop" text_from="ElementInfo">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text y="46" color="#000000" x="13" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DO5" rotation="0"/>
<text y="46" color="#000000" x="293" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="0V" rotation="0"/>
<text y="58" color="#000000" x="293" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="16" rotation="0"/>
<text y="58" color="#000000" x="133" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="12" rotation="0"/>
<text y="46" color="#000000" x="133" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="0V" rotation="0"/>
<text y="46" color="#000000" x="174" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DO7" rotation="0"/>
<text y="58" color="#000000" x="173" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="13" rotation="0"/>
<line antialias="false" end2="none" y1="-10" length1="1.5" x1="-360" y2="-10" x2="360" length2="1.5" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<text y="58" color="#000000" x="-227" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="3" rotation="0"/>
<text y="46" color="#000000" x="-227" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DO2" rotation="0"/>
<text y="46" color="#000000" x="-106" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="0V" rotation="0"/>
<text y="58" color="#000000" x="-107" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="6" rotation="0"/>
<text y="58" color="#000000" x="-267" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="2" rotation="0"/>
<text y="46" color="#000000" x="-267" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="0V" rotation="0"/>
<text y="46" color="#000000" x="-67" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DO4" rotation="0"/>
<text y="58" color="#000000" x="-67" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="7" rotation="0"/>
<text y="58" color="#000000" x="-307" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="1" rotation="0"/>
<text y="46" color="#000000" x="-307" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DO1" rotation="0"/>
<text y="46" color="#000000" x="-27" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="0V" rotation="0"/>
<text y="58" color="#000000" x="-27" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="8" rotation="0"/>
<text y="58" color="#000000" x="-187" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="4" rotation="0"/>
<text y="-27" color="#000000" x="-341" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="WAGO 763-1508" rotation="0"/>
<text y="46" color="#000000" x="-187" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="0V" rotation="0"/>
<text y="46" color="#000000" x="-146" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DO3" rotation="0"/>
<text y="58" color="#000000" x="-147" font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="5" rotation="0"/>
<text y="-27" color="#000000" x="-127" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="8-Channel DO, DC 24V" rotation="0"/>
<line antialias="false" end2="circle" y1="50" length1="1.5" x1="-270" y2="8.5" x2="-270" length2="1.5" end1="none" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
<polygon antialias="false" y1="-10" closed="false" x1="-362" y2="-10" x2="-356" style="line-style:normal;line-weight:hight;filling:none;color:black"/>
<arc y="-12.5" angle="180" antialias="true" start="90" x="360" width="5" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon antialias="false" y1="10" closed="false" x1="-362" y2="10" x2="-356" style="line-style:normal;line-weight:hight;filling:none;color:black"/>
<arc y="7.5" angle="180" antialias="true" start="90" x="360" width="5" height="5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal y="10" x="-360" orientation="w"/>
<terminal y="50" x="-270" orientation="s"/>
<terminal y="10" x="360" orientation="e"/>
<terminal y="-10" x="360" orientation="e"/>
<terminal y="-10" x="-360" orientation="w"/>
<terminal y="50" x="-310" orientation="s"/>
<terminal y="50" x="-190" orientation="s"/>
<terminal y="50" x="-230" orientation="s"/>
<terminal y="50" x="-110" orientation="s"/>
<terminal y="50" x="-150" orientation="s"/>
<terminal y="50" x="-30" orientation="s"/>
<terminal y="50" x="-70" orientation="s"/>
<terminal y="50" x="50" orientation="s"/>
<terminal y="50" x="10" orientation="s"/>
<terminal y="50" x="130" orientation="s"/>
<terminal y="50" x="90" orientation="s"/>
<terminal y="50" x="210" orientation="s"/>
<terminal y="50" x="170" orientation="s"/>
<terminal y="50" x="290" orientation="s"/>
<terminal y="50" x="250" orientation="s"/>
</description>
</definition>

View File

@@ -1,81 +0,0 @@
<definition type="element" hotspot_y="45" version="0.80" hotspot_x="364" width="730" height="110" link_type="simple">
<names>
<name lang="it">763-1508 (I) </name>
<name lang="cs">763-1508 (I) </name>
<name lang="el">763-1508 (I) </name>
<name lang="pt">763-1508 (I) </name>
<name lang="es">763-1508 (I) </name>
<name lang="nl">763-1508 (I) </name>
<name lang="pl">763-1508 (I) </name>
<name lang="fr">763-1508 (I) </name>
<name lang="ar">763-1508 (I) </name>
<name lang="en">763-1508 (I) </name>
<name lang="de">763-1508 (I) </name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-1508</elementInformation>
<elementInformation show="1" name="description">8DO ADV 24 V DC; 0,5 A; HS</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<polygon y2="-40" x3="-360" x2="-360" y3="50" x4="360" closed="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="360" antialias="false" y4="50" y1="-40"/>
<text x="-38" y="46" text="0V" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000"/>
<line end2="circle" y2="8.5" x2="280" style="line-style:normal;line-weight:thin;filling:black;color:black" end1="none" x1="280" antialias="false" y1="50" length2="1.5" length1="1.5"/>
<line end2="circle" y2="8.5" x2="120" style="line-style:normal;line-weight:thin;filling:black;color:black" end1="none" x1="120" antialias="false" y1="50" length2="1.5" length1="1.5"/>
<line end2="circle" y2="8.5" x2="-40" style="line-style:normal;line-weight:thin;filling:black;color:black" end1="none" x1="-40" antialias="false" y1="50" length2="1.5" length1="1.5"/>
<text x="42" y="46" text="DO3" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000"/>
<text x="-355" y="-11" text="24V" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" color="#000000"/>
<text x="122" y="46" text="0V" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000"/>
<text x="-355" y="9" text="0V" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" color="#000000"/>
<text x="-118" y="46" text="DO2" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000"/>
<circle x="-42.5" y="47.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
<circle x="-122.5" y="47.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
<circle x="-202.5" y="47.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
<circle x="-282.5" y="47.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
<circle x="277.5" y="47.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
<circle x="197.5" y="47.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
<circle x="117.5" y="47.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
<circle x="37.5" y="47.5" style="line-style:normal;line-weight:normal;filling:white;color:black" antialias="true" diameter="5"/>
<line end2="none" y2="10" x2="360" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" x1="-360" antialias="false" y1="10" length2="1.5" length1="1.5"/>
<line end2="none" y2="-10" x2="360" style="line-style:normal;line-weight:thin;filling:none;color:black" end1="none" x1="-360" antialias="false" y1="-10" length2="1.5" length1="1.5"/>
<text x="-331" y="-27" text="WAGO 763-1508/0000-0000 (I)" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000"/>
<text x="282" y="46" text="0V" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000"/>
<text x="202" y="46" text="DO4" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000"/>
<text x="-198" y="46" text="0V" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000"/>
<text x="-278" y="46" text="DO1" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000"/>
<line end2="none" y2="50" x2="360" style="line-style:dashdotted;line-weight:normal;filling:none;color:black" end1="none" x1="360" antialias="false" y1="-40" length2="1.5" length1="1.5"/>
<text x="-278" y="58" text="1" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000"/>
<text x="-197" y="58" text="2" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000"/>
<text x="-117" y="58" text="3" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000"/>
<text x="-37" y="58" text="4" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000"/>
<text x="43" y="58" text="5" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000"/>
<text x="123" y="58" text="6" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000"/>
<text x="203" y="58" text="7" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000"/>
<text x="283" y="58" text="8" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000"/>
<text x="-119" y="-27" text="8 DO 24 V 0.5 A" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000"/>
<line end2="circle" y2="8.5" x2="-200" style="line-style:normal;line-weight:thin;filling:black;color:black" end1="none" x1="-200" antialias="false" y1="50" length2="1.5" length1="1.5"/>
<polygon y2="-10" x2="-356" closed="false" style="line-style:normal;line-weight:hight;filling:none;color:black" x1="-362" antialias="false" y1="-10"/>
<arc x="360" y="-12.5" start="90" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" angle="180" antialias="true"/>
<dynamic_text text_from="ElementInfo" x="219" y="-42.5" uuid="{6bfc842f-34b1-44c0-a13e-1686e27fccf5}" font="Sans Serif,9,-1,5,50,0,0,0,0,0" Halignment="AlignLeft" text_width="-1" rotation="0" Valignment="AlignTop" z="39" frame="false">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon y2="10" x2="-356" closed="false" style="line-style:normal;line-weight:hight;filling:none;color:black" x1="-362" antialias="false" y1="10"/>
<arc x="360" y="7.5" start="90" style="line-style:normal;line-weight:normal;filling:none;color:black" width="5" height="5" angle="180" antialias="true"/>
<terminal x="360" y="10" orientation="e"/>
<terminal x="-280" y="50" orientation="s"/>
<terminal x="-360" y="-10" orientation="w"/>
<terminal x="200" y="50" orientation="s"/>
<terminal x="280" y="50" orientation="s"/>
<terminal x="-40" y="50" orientation="s"/>
<terminal x="40" y="50" orientation="s"/>
<terminal x="-200" y="50" orientation="s"/>
<terminal x="-120" y="50" orientation="s"/>
<terminal x="120" y="50" orientation="s"/>
<terminal x="360" y="-10" orientation="e"/>
<terminal x="-360" y="10" orientation="w"/>
</description>
</definition>

View File

@@ -1,81 +0,0 @@
<definition hotspot_y="45" type="element" hotspot_x="364" link_type="simple" height="110" version="0.80" width="730">
<names>
<name lang="el">763-1508 (II) </name>
<name lang="en">763-1508 (II) </name>
<name lang="nl">763-1508 (II) </name>
<name lang="cs">763-1508 (II) </name>
<name lang="pt">763-1508 (II) </name>
<name lang="pl">763-1508 (II) </name>
<name lang="ar">763-1508 (II) </name>
<name lang="es">763-1508 (II) </name>
<name lang="it">763-1508 (II) </name>
<name lang="de">763-1508 (II) </name>
<name lang="fr">763-1508 (II) </name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-1508</elementInformation>
<elementInformation show="1" name="description">8DO ADV 24 V DC; 0,5 A; HS</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<polygon x3="360" y1="-40" x2="360" x4="-360" y4="50" antialias="false" x1="-360" closed="false" y2="-40" y3="50" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<line end1="none" y1="50" x2="280" length2="1.5" antialias="false" x1="280" y2="8.5" length1="1.5" end2="circle" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
<text x="-38" rotation="0" y="46" color="#000000" text="0V" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<line end1="none" y1="50" x2="-200" length2="1.5" antialias="false" x1="-200" y2="8.5" length1="1.5" end2="circle" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
<line end1="none" y1="50" x2="120" length2="1.5" antialias="false" x1="120" y2="8.5" length1="1.5" end2="circle" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
<line end1="none" y1="50" x2="-40" length2="1.5" antialias="false" x1="-40" y2="8.5" length1="1.5" end2="circle" style="line-style:normal;line-weight:thin;filling:black;color:black"/>
<text x="42" rotation="0" y="46" color="#000000" text="DO7" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<text x="-355" rotation="0" y="-11" color="#000000" text="24V" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
<text x="122" rotation="0" y="46" color="#000000" text="0V" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<text x="-355" rotation="0" y="9" color="#000000" text="0V" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
<text x="-118" rotation="0" y="46" color="#000000" text="DO6" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<circle x="-42.5" diameter="5" y="47.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle x="-122.5" diameter="5" y="47.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle x="-202.5" diameter="5" y="47.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle x="-282.5" diameter="5" y="47.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle x="277.5" diameter="5" y="47.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle x="197.5" diameter="5" y="47.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle x="117.5" diameter="5" y="47.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle x="37.5" diameter="5" y="47.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<line end1="none" y1="-40" x2="-360" length2="1.5" antialias="false" x1="-360" y2="50" length1="1.5" end2="none" style="line-style:dashdotted;line-weight:normal;filling:none;color:black"/>
<line end1="none" y1="10" x2="360" length2="1.5" antialias="false" x1="-360" y2="10" length1="1.5" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<line end1="none" y1="-10" x2="360" length2="1.5" antialias="false" x1="-360" y2="-10" length1="1.5" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<text x="-331" rotation="0" y="-27" color="#000000" text="WAGO 763-1508/0000-0000 (II)" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<text x="282" rotation="0" y="46" color="#000000" text="0V" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<text x="202" rotation="0" y="46" color="#000000" text="DO8" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<text x="-198" rotation="0" y="46" color="#000000" text="0V" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<text x="-278" rotation="0" y="46" color="#000000" text="DO5" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<dynamic_text text_from="ElementInfo" uuid="{188f6f6a-d5ab-4daa-bd69-5ea5111652c4}" x="219" rotation="0" z="29" Valignment="AlignTop" Halignment="AlignLeft" y="-42.5" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_width="-1" frame="false">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text x="-278" rotation="0" y="58" color="#000000" text="9" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<text x="-197" rotation="0" y="58" color="#000000" text="10" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<text x="-117" rotation="0" y="58" color="#000000" text="11" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<text x="-37" rotation="0" y="58" color="#000000" text="12" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<text x="43" rotation="0" y="58" color="#000000" text="13" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<text x="123" rotation="0" y="58" color="#000000" text="14" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<text x="203" rotation="0" y="58" color="#000000" text="15" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<text x="283" rotation="0" y="58" color="#000000" text="16" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<text x="-119" rotation="0" y="-27" color="#000000" text="8 DO 24 V 0.5 A" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<polygon y1="-10" x2="-356" antialias="false" x1="-362" closed="false" y2="-10" style="line-style:normal;line-weight:hight;filling:none;color:black"/>
<arc x="360" y="-12.5" start="90" antialias="true" height="5" angle="180" width="5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon y1="10" x2="-356" antialias="false" x1="-362" closed="false" y2="10" style="line-style:normal;line-weight:hight;filling:none;color:black"/>
<arc x="360" y="7.5" start="90" antialias="true" height="5" angle="180" width="5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal x="200" orientation="s" y="50" name=""/>
<terminal x="-360" orientation="w" y="-10" name=""/>
<terminal x="280" orientation="s" y="50" name=""/>
<terminal x="-40" orientation="s" y="50" name=""/>
<terminal x="40" orientation="s" y="50" name=""/>
<terminal x="-200" orientation="s" y="50" name=""/>
<terminal x="-120" orientation="s" y="50" name=""/>
<terminal x="120" orientation="s" y="50" name=""/>
<terminal x="360" orientation="e" y="10" name=""/>
<terminal x="-280" orientation="s" y="50" name=""/>
<terminal x="360" orientation="e" y="-10" name=""/>
<terminal x="-360" orientation="w" y="10" name=""/>
</description>
</definition>

View File

@@ -1,101 +0,0 @@
<definition hotspot_x="364" hotspot_y="45" type="element" width="730" link_type="simple" version="0.80" height="110">
<names>
<name lang="fr">763-1516</name>
<name lang="en">763-1516</name>
<name lang="de">763-1516</name>
<name lang="cs">763-1516</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-1516</elementInformation>
<elementInformation show="1" name="description">16DO ADV 24 V DC; 0,5 A</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<rect rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" x="-360" antialias="false" ry="0" width="720" y="-40" height="90"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="207.5" antialias="true" diameter="5" y="47.5"/>
<text x="-355" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="24V" y="-12"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="87.5" antialias="true" diameter="5" y="47.5"/>
<line x1="-360" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="10" end2="none" y1="10" x2="360" end1="none" length2="1.5"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="247.5" antialias="true" diameter="5" y="47.5"/>
<text x="-355" font="Sans Serif,7,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="0V" y="8"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-112.5" antialias="true" diameter="5" y="47.5"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="47.5" antialias="true" diameter="5" y="47.5"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="287.5" antialias="true" diameter="5" y="47.5"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-232.5" antialias="true" diameter="5" y="47.5"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="7.5" antialias="true" diameter="5" y="47.5"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="167.5" antialias="true" diameter="5" y="47.5"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-72.5" antialias="true" diameter="5" y="47.5"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="127.5" antialias="true" diameter="5" y="47.5"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-272.5" antialias="true" diameter="5" y="47.5"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-32.5" antialias="true" diameter="5" y="47.5"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-312.5" antialias="true" diameter="5" y="47.5"/>
<text x="93" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="11" y="58"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-152.5" antialias="true" diameter="5" y="47.5"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" x="-192.5" antialias="true" diameter="5" y="47.5"/>
<text x="93" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="DO11" y="46"/>
<text x="214" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="DO14" y="46"/>
<dynamic_text x="209" frame="false" text_width="-1" uuid="{aa02a6a5-bb5d-4036-b3f5-73a4193d7fca}" Valignment="AlignTop" z="24" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_from="ElementInfo" rotation="0" y="-42.5" Halignment="AlignLeft">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text x="213" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="14" y="58"/>
<text x="53" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="10" y="58"/>
<text x="53" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="DO10" y="46"/>
<text x="253" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="DO15" y="46"/>
<text x="253" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="15" y="58"/>
<text x="13" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="9" y="58"/>
<text x="13" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="DO9" y="46"/>
<text x="293" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="DO16" y="46"/>
<text x="293" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="16" y="58"/>
<text x="133" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="12" y="58"/>
<text x="133" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="DO12" y="46"/>
<text x="174" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="DO13" y="46"/>
<text x="173" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="13" y="58"/>
<line x1="-360" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-10" end2="none" y1="-10" x2="360" end1="none" length2="1.5"/>
<text x="-227" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="3" y="58"/>
<text x="-227" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="DO3" y="46"/>
<text x="-106" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="DO6" y="46"/>
<text x="-107" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="6" y="58"/>
<text x="-267" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="2" y="58"/>
<text x="-267" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="DO2" y="46"/>
<text x="-67" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="DO7" y="46"/>
<text x="-67" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="7" y="58"/>
<text x="-307" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="1" y="58"/>
<text x="-307" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="DO1" y="46"/>
<text x="-27" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="DO8" y="46"/>
<text x="-27" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="8" y="58"/>
<text x="-187" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="4" y="58"/>
<text x="-341" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="WAGO 763-1516" y="-27"/>
<text x="-187" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="DO4" y="46"/>
<text x="-146" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="DO5" y="46"/>
<text x="-147" font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="5" y="58"/>
<text x="-127" font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" text="16-Channel DO, DC 24V" y="-27"/>
<polygon x1="-362" style="line-style:normal;line-weight:hight;filling:none;color:black" antialias="false" y2="-10" y1="-10" closed="false" x2="-356"/>
<arc start="90" style="line-style:normal;line-weight:normal;filling:none;color:black" x="360" angle="180" antialias="true" width="5" y="-12.5" height="5"/>
<polygon x1="-362" style="line-style:normal;line-weight:hight;filling:none;color:black" antialias="false" y2="10" y1="10" closed="false" x2="-356"/>
<arc start="90" style="line-style:normal;line-weight:normal;filling:none;color:black" x="360" angle="180" antialias="true" width="5" y="7.5" height="5"/>
<terminal x="360" orientation="e" y="-10"/>
<terminal x="-360" orientation="w" y="-10"/>
<terminal x="-270" orientation="s" y="50"/>
<terminal x="-360" orientation="w" y="10"/>
<terminal x="360" orientation="e" y="10"/>
<terminal x="-310" orientation="s" y="50"/>
<terminal x="-190" orientation="s" y="50"/>
<terminal x="-230" orientation="s" y="50"/>
<terminal x="-110" orientation="s" y="50"/>
<terminal x="-150" orientation="s" y="50"/>
<terminal x="-30" orientation="s" y="50"/>
<terminal x="-70" orientation="s" y="50"/>
<terminal x="50" orientation="s" y="50"/>
<terminal x="10" orientation="s" y="50"/>
<terminal x="130" orientation="s" y="50"/>
<terminal x="90" orientation="s" y="50"/>
<terminal x="210" orientation="s" y="50"/>
<terminal x="170" orientation="s" y="50"/>
<terminal x="290" orientation="s" y="50"/>
<terminal x="250" orientation="s" y="50"/>
</description>
</definition>

View File

@@ -1,70 +0,0 @@
<definition link_type="simple" height="110" width="730" hotspot_x="364" hotspot_y="45" version="0.80" type="element">
<names>
<name lang="en">763-1516 (I) </name>
<name lang="de">763-1516 (I) </name>
<name lang="fr">763-1516 (I) </name>
<name lang="cs">763-1516 (I) </name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-1516</elementInformation>
<elementInformation show="1" name="description">16DO ADV 24 V DC; 0,5 A</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<polygon y1="-40" y2="-40" x3="-360" x2="-360" closed="false" y3="50" antialias="false" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="360" x4="360" y4="50"/>
<text color="#000000" rotation="0" y="44" x="-35" text="DO4" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<text color="#000000" rotation="0" y="44" x="45" text="DO5" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<text color="#000000" rotation="0" y="44" x="125" text="DO6" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<text color="#000000" rotation="0" y="44" x="-115" text="DO3" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<text color="#000000" rotation="0" y="44" x="285" text="DO8" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<line end1="none" y1="-40" y2="50" length2="1.5" x2="360" antialias="false" end2="none" style="line-style:dashdotted;line-weight:normal;filling:none;color:black" x1="360" length1="1.5"/>
<text color="#000000" rotation="0" y="44" x="205" text="DO7" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<text color="#000000" rotation="0" y="44" x="-195" text="DO2" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<text color="#000000" rotation="0" y="44" x="-275" text="DO1" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<text color="#000000" rotation="0" y="-11" x="-355" text="24V" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
<text color="#000000" rotation="0" y="9" x="-355" text="0V" font="Sans Serif,7,-1,5,50,0,0,0,0,0"/>
<circle diameter="5" y="47.5" x="-42.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle diameter="5" y="47.5" x="-122.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle diameter="5" y="47.5" x="-202.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle diameter="5" y="47.5" x="-282.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle diameter="5" y="47.5" x="277.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle diameter="5" y="47.5" x="197.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle diameter="5" y="47.5" x="117.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle diameter="5" y="47.5" x="37.5" antialias="true" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<line end1="none" y1="10" y2="10" length2="1.5" x2="360" antialias="false" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-360" length1="1.5"/>
<line end1="none" y1="-10" y2="-10" length2="1.5" x2="360" antialias="false" end2="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-360" length1="1.5"/>
<text color="#000000" rotation="0" y="-27" x="-331" text="WAGO 763-1516/0000-0000 (I)" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<dynamic_text Valignment="AlignTop" rotation="0" y="-42.5" z="24" text_from="ElementInfo" x="219" frame="false" Halignment="AlignLeft" uuid="{4b6ce535-c217-49fc-89c4-9fa731ec5366}" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_width="-1">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text color="#000000" rotation="0" y="58" x="-278" text="1" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<text color="#000000" rotation="0" y="58" x="-197" text="2" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<text color="#000000" rotation="0" y="58" x="-117" text="3" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<text color="#000000" rotation="0" y="58" x="-37" text="4" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<text color="#000000" rotation="0" y="58" x="43" text="5" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<text color="#000000" rotation="0" y="58" x="123" text="6" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<text color="#000000" rotation="0" y="58" x="203" text="7" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<text color="#000000" rotation="0" y="58" x="283" text="8" font="Sans Serif,5,-1,5,50,0,0,0,0,0"/>
<text color="#000000" rotation="0" y="-27" x="-117" text="16-Channel DO, DC 24 V" font="Sans Serif,9,-1,5,50,0,0,0,0,0"/>
<polygon y1="-10" y2="-10" x2="-356" closed="false" antialias="false" style="line-style:normal;line-weight:hight;filling:none;color:black" x1="-362"/>
<arc height="5" y="-12.5" width="5" x="360" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90" angle="180"/>
<polygon y1="10" y2="10" x2="-356" closed="false" antialias="false" style="line-style:normal;line-weight:hight;filling:none;color:black" x1="-362"/>
<arc height="5" y="7.5" width="5" x="360" antialias="true" style="line-style:normal;line-weight:normal;filling:none;color:black" start="90" angle="180"/>
<terminal orientation="w" y="10" x="-360"/>
<terminal orientation="w" y="-10" x="-360"/>
<terminal orientation="s" y="50" x="200"/>
<terminal orientation="s" y="50" x="280"/>
<terminal orientation="s" y="50" x="-40"/>
<terminal orientation="s" y="50" x="40"/>
<terminal orientation="s" y="50" x="-200"/>
<terminal orientation="s" y="50" x="-120"/>
<terminal orientation="s" y="50" x="120"/>
<terminal orientation="e" y="10" x="360"/>
<terminal orientation="s" y="50" x="-280"/>
<terminal orientation="e" y="-10" x="360"/>
</description>
</definition>

View File

@@ -1,70 +0,0 @@
<definition hotspot_x="364" version="0.80" type="element" height="110" hotspot_y="45" width="730" link_type="simple">
<names>
<name lang="fr">763-1516 (II) </name>
<name lang="de">763-1516 (II) </name>
<name lang="en">763-1516 (II) </name>
<name lang="cs">763-1516 (II) </name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-1516</elementInformation>
<elementInformation show="1" name="description">16DO ADV 24 V DC; 0,5 A</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<polygon closed="false" y1="-40" antialias="false" x1="-360" x4="-360" x2="360" y3="50" x3="360" y2="-40" y4="50" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DO12" y="44" x="-35" rotation="0" color="#000000"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DO13" y="44" x="45" rotation="0" color="#000000"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DO14" y="44" x="125" rotation="0" color="#000000"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DO11" y="44" x="-115" rotation="0" color="#000000"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DO16" y="44" x="285" rotation="0" color="#000000"/>
<line end1="none" y1="-40" antialias="false" x1="-360" x2="-360" y2="50" end2="none" length2="1.5" length1="1.5" style="line-style:dashdotted;line-weight:normal;filling:none;color:black"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DO15" y="44" x="205" rotation="0" color="#000000"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DO10" y="44" x="-195" rotation="0" color="#000000"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="DO9" y="44" x="-275" rotation="0" color="#000000"/>
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="24V" y="-11" x="-355" rotation="0" color="#000000"/>
<text font="Sans Serif,7,-1,5,50,0,0,0,0,0" text="0V" y="9" x="-355" rotation="0" color="#000000"/>
<circle antialias="true" y="47.5" diameter="5" x="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle antialias="true" y="47.5" diameter="5" x="-122.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle antialias="true" y="47.5" diameter="5" x="-202.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle antialias="true" y="47.5" diameter="5" x="-282.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle antialias="true" y="47.5" diameter="5" x="277.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle antialias="true" y="47.5" diameter="5" x="197.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle antialias="true" y="47.5" diameter="5" x="117.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<circle antialias="true" y="47.5" diameter="5" x="37.5" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<line end1="none" y1="10" antialias="false" x1="-360" x2="360" y2="10" end2="none" length2="1.5" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<line end1="none" y1="-10" antialias="false" x1="-360" x2="360" y2="-10" end2="none" length2="1.5" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="WAGO 763-1516/0000-0000 (II)" y="-27" x="-331" rotation="0" color="#000000"/>
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" z="24" text_width="-1" Halignment="AlignLeft" y="-42.5" text_from="ElementInfo" frame="false" x="219" uuid="{799627e4-4c3e-46fc-ad30-dc5cac0118fb}" Valignment="AlignTop" rotation="0">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="9" y="58" x="-278" rotation="0" color="#000000"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="10" y="58" x="-197" rotation="0" color="#000000"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="11" y="58" x="-117" rotation="0" color="#000000"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="12" y="58" x="-37" rotation="0" color="#000000"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="13" y="58" x="43" rotation="0" color="#000000"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="14" y="58" x="123" rotation="0" color="#000000"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="15" y="58" x="203" rotation="0" color="#000000"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" text="16" y="58" x="283" rotation="0" color="#000000"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" text="16-Channel DO, DC 24 V" y="-27" x="-117" rotation="0" color="#000000"/>
<polygon closed="false" y1="-10" antialias="false" x1="-362" x2="-356" y2="-10" style="line-style:normal;line-weight:hight;filling:none;color:black"/>
<arc antialias="true" y="-12.5" angle="180" start="90" x="360" height="5" width="5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<polygon closed="false" y1="10" antialias="false" x1="-362" x2="-356" y2="10" style="line-style:normal;line-weight:hight;filling:none;color:black"/>
<arc antialias="true" y="7.5" angle="180" start="90" x="360" height="5" width="5" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<terminal orientation="w" y="10" x="-360"/>
<terminal orientation="w" y="-10" x="-360"/>
<terminal orientation="s" y="50" x="200"/>
<terminal orientation="s" y="50" x="280"/>
<terminal orientation="s" y="50" x="-40"/>
<terminal orientation="s" y="50" x="40"/>
<terminal orientation="s" y="50" x="-200"/>
<terminal orientation="s" y="50" x="-120"/>
<terminal orientation="s" y="50" x="120"/>
<terminal orientation="e" y="10" x="360"/>
<terminal orientation="s" y="50" x="-280"/>
<terminal orientation="e" y="-10" x="360"/>
</description>
</definition>

View File

@@ -1,14 +0,0 @@
<qet-directory>
<names>
<name lang="pl">System</name>
<name lang="de">System</name>
<name lang="el">System</name>
<name lang="it">System</name>
<name lang="ru">System</name>
<name lang="nl">System</name>
<name lang="cs">Systémové moduly</name>
<name lang="en">System</name>
<name lang="fr">Systeme</name>
<name lang="da">System</name>
</names>
</qet-directory>

View File

@@ -1,71 +0,0 @@
<definition hotspot_y="55" version="0.80" link_type="simple" hotspot_x="364" type="element" width="730" height="110">
<names>
<name lang="cs">763-4750</name>
<name lang="el">763-4750</name>
<name lang="it">763-4750</name>
<name lang="pt">763-4750</name>
<name lang="de">763-4750</name>
<name lang="es">763-4750</name>
<name lang="en">763-4750</name>
<name lang="fr">763-4750</name>
<name lang="ar">763-4750</name>
<name lang="pl">763-4750</name>
<name lang="nl">763-4750</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-4750</elementInformation>
<elementInformation show="1" name="description">GW 750 ADV</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<rect ry="0" rx="0" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x="-360" width="720" height="90" y="-40"/>
<line length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="40" antialias="false" end1="none" length2="1.5" y1="10" x2="40" end2="none" y2="-40"/>
<line length1="1.5" style="line-style:normal;line-weight:thin;filling:black;color:black" x1="-40" antialias="false" end1="circle" length2="1.5" y1="-8.5" x2="-40" end2="none" y2="-40"/>
<line length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="200" antialias="false" end1="none" length2="1.5" y1="30" x2="360" end2="none" y2="30"/>
<line length1="1.5" style="line-style:normal;line-weight:thin;filling:black;color:black" x1="120" antialias="false" end1="circle" length2="1.5" y1="11" x2="120" end2="none" y2="-40"/>
<line length1="1.5" style="line-style:normal;line-weight:thin;filling:black;color:black" x1="280" antialias="false" end1="circle" length2="1.5" y1="31.5" x2="280" end2="none" y2="-40"/>
<line length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-120" antialias="false" end1="none" length2="1.5" y1="-10" x2="-120" end2="none" y2="-40"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" antialias="true" x="-42.5" y="-42.5"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" antialias="true" x="-122.5" y="-42.5"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" antialias="true" x="277.5" y="-42.5"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" antialias="true" x="197.5" y="-42.5"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" antialias="true" x="117.5" y="-42.5"/>
<circle style="line-style:normal;line-weight:normal;filling:white;color:black" diameter="5" antialias="true" x="37.5" y="-42.5"/>
<line length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="40" antialias="false" end1="none" length2="1.5" y1="10" x2="360" end2="none" y2="10"/>
<line length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="200" antialias="false" end1="none" length2="1.5" y1="30" x2="200" end2="none" y2="-40"/>
<line length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-120" antialias="false" end1="none" length2="1.5" y1="-10" x2="360" end2="none" y2="-10"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" x="-330" text="WAGO 763-4750" y="45"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" x="281" text="PE" y="-22"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" x="201" text="PE" y="-22"/>
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" x="123" text="_" y="-31"/>
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" x="43" text="_" y="-31"/>
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" x="-39" text="+" y="-22"/>
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" x="-119" text="+" y="-22"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" x="-115" text="2" y="-42"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" x="-35" text="6" y="-42"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" x="45" text="3" y="-42"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" x="125" text="7" y="-42"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" x="205" text="4" y="-42"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" x="285" text="8" y="-42"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" color="#000000" x="-138" text="K-Bus - Gateway" y="45"/>
<arc y="-12.5" x="360" start="90" height="5" angle="180" width="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
<arc y="7.5" x="360" start="90" height="5" angle="180" width="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
<arc y="27.5" x="360" start="90" height="5" angle="180" width="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
<dynamic_text font="Sans Serif,9,-1,5,50,0,0,0,0,0" rotation="0" text_from="ElementInfo" uuid="{f53b16e3-3097-4d5b-82b0-47f62bc5d15e}" x="220" Halignment="AlignLeft" text_width="-1" frame="false" y="29.5" z="47" Valignment="AlignTop">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<terminal orientation="n" name="24V.6" x="-40" y="-40"/>
<terminal orientation="n" name="PE.8" x="280" y="-40"/>
<terminal orientation="n" name="PE.4" x="200" y="-40"/>
<terminal orientation="n" name="0V.3" x="40" y="-40"/>
<terminal orientation="n" name="24V.2" x="-120" y="-40"/>
<terminal orientation="n" name="0V.7" x="120" y="-40"/>
<terminal orientation="e" name="POW2.out" x="360" y="10"/>
<terminal orientation="e" name="POW1.out" x="360" y="-10"/>
<terminal orientation="e" name="PE.out" x="360" y="30"/>
</description>
</definition>

View File

@@ -1,62 +0,0 @@
<definition hotspot_x="364" version="0.80" link_type="simple" height="110" width="730" hotspot_y="55" type="element">
<names>
<name lang="de">763-5101</name>
<name lang="ar">763-5101</name>
<name lang="es">763-5101</name>
<name lang="pt">763-5101</name>
<name lang="el">763-5101</name>
<name lang="cs">763-5101</name>
<name lang="fr">763-5101</name>
<name lang="en">763-5101</name>
<name lang="nl">763-5101</name>
<name lang="pl">763-5101</name>
<name lang="it">763-5101</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-5101</elementInformation>
<elementInformation show="1" name="description">PS ADV 24 V DC; Fuse</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<rect ry="0" height="90" rx="0" antialias="false" x="-360" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-40" width="720"/>
<line end1="none" length1="1.5" x1="200" y2="-38" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x2="200" end2="none" antialias="false"/>
<line end1="circle" length1="1.5" x1="120" y2="-38" length2="1.5" style="line-style:normal;line-weight:normal;filling:black;color:black" y1="-8.5" x2="120" end2="none" antialias="false"/>
<line end1="circle" length1="1.5" x1="280" y2="-37" length2="1.5" style="line-style:normal;line-weight:normal;filling:black;color:black" y1="11" x2="280" end2="none" antialias="false"/>
<line end1="none" length1="1.5" x1="40" y2="-38" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x2="40" end2="none" antialias="false"/>
<circle diameter="5" x="277.5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" antialias="true"/>
<circle diameter="5" x="197.5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" antialias="true"/>
<circle diameter="5" x="117.5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" antialias="true"/>
<circle diameter="5" x="37.5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" antialias="true"/>
<line end1="none" length1="1.5" x1="200" y2="10" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x2="358" end2="none" antialias="false"/>
<line end1="none" length1="1.5" x1="40" y2="-10" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x2="358" end2="none" antialias="false"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" x="-330" text="WAGO 763-5101" y="45" rotation="0"/>
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" x="283" text="_" y="-31" rotation="0"/>
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" x="203" text="_" y="-31" rotation="0"/>
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" x="121" text="+" y="-22" rotation="0"/>
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" x="41" text="+" y="-22" rotation="0"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="45" text="1" y="-42" rotation="0"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="125" text="2" y="-42" rotation="0"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="205" text="3" y="-42" rotation="0"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="285" text="4" y="-42" rotation="0"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" x="-138" text="Field-Supply, fused" y="45" rotation="0"/>
<dynamic_text text_from="ElementInfo" uuid="{d4e265c8-5560-47d1-8a18-63a02011d1fd}" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_width="-1" x="220" y="29.5" rotation="0" Valignment="AlignTop" Halignment="AlignLeft" frame="false" z="53">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<rect ry="0" rx="0" height="12" x="142" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-16" width="36" antialias="false"/>
<dynamic_text text_from="UserText" uuid="{2f89fafd-37ce-4648-9c27-58673f6ad9fc}" font="Sans Serif,9,-1,5,0,0,0,0,0,0,normal" text_width="-1" x="137" y="6" rotation="0" Valignment="AlignTop" Halignment="AlignLeft" frame="false" z="55">
<text>_.__ A</text>
</dynamic_text>
<arc y="-12.5" x="360" start="90" height="5" angle="180" width="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
<arc y="7.5" x="360" start="90" height="5" angle="180" width="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
<terminal x="280" name="POW2.4" y="-40" orientation="n"/>
<terminal x="200" name="POW2.3" y="-40" orientation="n"/>
<terminal x="120" name="POW1.2" y="-40" orientation="n"/>
<terminal x="40" name="POW1.1" y="-40" orientation="n"/>
<terminal x="360" name="POW1.out" y="-10" orientation="e"/>
<terminal x="360" name="POW2.out" y="10" orientation="e"/>
</description>
</definition>

View File

@@ -1,69 +0,0 @@
<definition hotspot_x="364" version="0.80" link_type="simple" height="110" width="730" hotspot_y="55" type="element">
<names>
<name lang="de">763-5120</name>
<name lang="ar">763-5120</name>
<name lang="es">763-5120</name>
<name lang="pt">763-5120</name>
<name lang="el">763-5120</name>
<name lang="cs">763-5120</name>
<name lang="fr">763-5120</name>
<name lang="en">763-5120</name>
<name lang="nl">763-5120</name>
<name lang="pl">763-5120</name>
<name lang="it">763-5120</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-5120</elementInformation>
<elementInformation show="1" name="description">PS SYSTEM ADV 24 V DC</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<rect ry="0" height="90" rx="0" antialias="false" x="-360" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-40" width="720"/>
<line end1="none" length1="1.5" x1="200" y2="-38" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x2="200" end2="none" antialias="false"/>
<line end1="circle" length1="1.5" x1="120" y2="-38" length2="1.5" style="line-style:normal;line-weight:normal;filling:black;color:black" y1="-8.5" x2="120" end2="none" antialias="false"/>
<line end1="circle" length1="1.5" x1="280" y2="-37" length2="1.5" style="line-style:normal;line-weight:normal;filling:black;color:black" y1="11" x2="280" end2="none" antialias="false"/>
<line end1="none" length1="1.5" x1="40" y2="-38" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x2="40" end2="none" antialias="false"/>
<circle diameter="5" x="277.5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" antialias="true"/>
<circle diameter="5" x="197.5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" antialias="true"/>
<circle diameter="5" x="117.5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" antialias="true"/>
<circle diameter="5" x="37.5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" antialias="true"/>
<circle diameter="5" x="-42.5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" antialias="true"/>
<circle diameter="5" x="-122.5" style="line-style:normal;line-weight:normal;filling:white;color:black" y="-42.5" antialias="true"/>
<line end1="none" length1="1.5" x1="200" y2="10" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="10" x2="358" end2="none" antialias="false"/>
<line end1="none" length1="1.5" x1="40" y2="-10" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-10" x2="358" end2="none" antialias="false"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" x="-330" text="WAGO 763-5120" y="45" rotation="0"/>
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" x="283" text="_" y="-31" rotation="0"/>
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" x="203" text="_" y="-31" rotation="0"/>
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" x="121" text="+" y="-22" rotation="0"/>
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" x="41" text="+" y="-22" rotation="0"/>
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" x="-119" text="24V" y="-22" rotation="0"/>
<text font="Sans Serif,12,-1,5,50,0,0,0,0,0" color="#000000" x="-39" text="0V" y="-22" rotation="0"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="-115" text="1" y="-42" rotation="0"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="-35" text="2" y="-42" rotation="0"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="45" text="3" y="-42" rotation="0"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="125" text="4" y="-42" rotation="0"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="205" text="5" y="-42" rotation="0"/>
<text font="Sans Serif,5,-1,5,50,0,0,0,0,0" color="#000000" x="285" text="6" y="-42" rotation="0"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" color="#000000" x="-138" text="Supply-Module" y="45" rotation="0"/>
<dynamic_text text_from="ElementInfo" uuid="{d4e265c8-5560-47d1-8a18-63a02011d1fd}" font="Sans Serif,9,-1,5,50,0,0,0,0,0" text_width="-1" x="220" y="29.5" rotation="0" Valignment="AlignTop" Halignment="AlignLeft" frame="false" z="53">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<dynamic_text text_from="UserText" uuid="{2f89fafd-37ce-4648-9c27-58673f6ad9fc}" font="Sans Serif,9,-1,5,0,0,0,0,0,0,normal" text_width="-1" x="137" y="6" rotation="0" Valignment="AlignTop" Halignment="AlignLeft" frame="false" z="55">
<text>_.__ A</text>
</dynamic_text>
<arc y="-12.5" x="360" start="90" height="5" angle="180" width="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
<arc y="7.5" x="360" start="90" height="5" angle="180" width="5" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="true"/>
<terminal x="-120" name="SYS.24V" y="-40" orientation="n"/>
<terminal x="-40" name="SYS.0V" y="-40" orientation="n"/>
<terminal x="280" name="POW2.6" y="-40" orientation="n"/>
<terminal x="200" name="POW2.5" y="-40" orientation="n"/>
<terminal x="120" name="POW1.4" y="-40" orientation="n"/>
<terminal x="40" name="POW1.3" y="-40" orientation="n"/>
<terminal x="360" name="POW1.out" y="-10" orientation="e"/>
<terminal x="360" name="POW2.out" y="10" orientation="e"/>
</description>
</definition>

View File

@@ -1,32 +0,0 @@
<definition version="0.80" hotspot_x="365" height="100" link_type="simple" hotspot_y="45" type="element" width="730">
<names>
<name lang="ar">763-5600</name>
<name lang="it">763-5600</name>
<name lang="en">763-5600</name>
<name lang="pl">763-5600</name>
<name lang="pt">763-5600</name>
<name lang="es">763-5600</name>
<name lang="fr">763-5600</name>
<name lang="cs">763-5600</name>
<name lang="de">763-5600</name>
<name lang="nl">763-5600</name>
<name lang="el">763-5600</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-5600</elementInformation>
<elementInformation show="1" name="description">END Module ADV</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-330" text="WAGO 763-5600" y="45" rotation="0" color="#000000"/>
<text font="Sans Serif,9,-1,5,50,0,0,0,0,0" x="-138" text="End Module" y="45" rotation="0" color="#000000"/>
<dynamic_text text_width="-1" Valignment="AlignTop" uuid="{26fc5f50-dbbe-490a-a4b4-7fc3f8c6197f}" font="Sans Serif,9,-1,5,50,0,0,0,0,0" frame="false" x="220" z="8" text_from="ElementInfo" y="29.5" rotation="0" Halignment="AlignLeft">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<rect ry="0" height="90" rx="0" antialias="false" x="-360" style="line-style:normal;line-weight:normal;filling:none;color:black" y="-40" width="720"/>
</description>
</definition>

View File

@@ -1,14 +0,0 @@
<qet-directory>
<names>
<name lang="pl">I/O-System Advanced</name>
<name lang="de">I/O-System Advanced</name>
<name lang="el">I/O-System Advanced</name>
<name lang="it">I/O-System Advanced</name>
<name lang="ru">I/O-System Advanced</name>
<name lang="nl">I/O-System Advanced</name>
<name lang="cs">I/O-System Advanced</name>
<name lang="en">I/O-System Advanced</name>
<name lang="fr">I/O-System Advanced</name>
<name lang="da">I/O-System Advanced</name>
</names>
</qet-directory>

View File

@@ -8,7 +8,7 @@
<elementInformations> <elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation> <elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">750-1502</elementInformation> <elementInformation show="1" name="designation">750-1502</elementInformation>
<elementInformation show="1" name="description">8 DI/DO 24V DC (high side) Ribbon Cable</elementInformation> <elementInformation show="1" name="description">8DI 8DO 24V DC (high side) Ribbon Cable</elementInformation>
</elementInformations> </elementInformations>
<informations>Author: plc-user for QElectroTech <informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license License:see https://qelectrotech.org/wiki_new/doc/elements_license

View File

@@ -8,7 +8,7 @@
<elementInformations> <elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation> <elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">750-450</elementInformation> <elementInformation show="1" name="designation">750-450</elementInformation>
<elementInformation show="1" name="description">4AI / 4-Channel RTD, config.</elementInformation> <elementInformation show="1" name="description">4AI / 4-Channel RTD, config. (Pt100, Pt1000)</elementInformation>
</elementInformations> </elementInformations>
<informations>Author: plc-user for QElectroTech <informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license License:see https://qelectrotech.org/wiki_new/doc/elements_license

View File

@@ -0,0 +1,86 @@
<definition type="element" link_type="simple" version="0.90" hotspot_x="22" width="40" height="210" hotspot_y="131">
<names>
<name lang="cs">750-471</name>
<name lang="fr">750-471</name>
<name lang="de">750-471</name>
<name lang="en">750-471</name>
</names>
<elementInformations>
<elementInformation name="manufacturer" show="1">WAGO</elementInformation>
<elementInformation name="designation" show="1">750-471</elementInformation>
<elementInformation name="description" show="1">4AI 0mA 4mA 20mA 10V diff. config.</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<polygon y10="-123.5" antialias="false" x12="-18" y25="66.5" y26="66.5" y15="-124.5" style="line-style:normal;line-weight:thin;filling:white;color:black" x7="-2" x29="8" x2="8" x21="-18" x1="12" x5="5" x26="-2" y18="71.5" x13="-18" y22="73.5" x17="-12" x8="-10" x10="-2" y30="70.5" x3="8" y20="67.5" y4="-119.5" y28="67.5" y27="67.5" x19="-16" y3="-119.5" y13="-120.5" y19="67.5" x30="12" x9="-10" x20="-18" y24="70.5" x18="-16" x6="-2" y11="-126.5" y1="-123.5" y23="70.5" y12="-126.5" x4="5" x15="-16" x28="8" y17="71.5" x23="-2" y2="-123.5" y29="70.5" y21="73.5" y8="-117.5" y14="-120.5" x24="-10" x16="-12" y6="-120.5" x14="-16" y5="-120.5" y9="-123.5" x27="-2" y16="-124.5" y7="-117.5" x11="-2" x22="-2" x25="-10"/>
<rect y="-115" rx="0" ry="0" x="-9.5" width="8" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:green;color:black"/>
<rect y="24.5" rx="0" ry="0" x="-12" width="24" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<rect y="-115" rx="0" ry="0" x="-12" width="24" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<rect y="-49.5" rx="0" ry="0" x="-12" width="24" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<rect y="-12.5" rx="0" ry="0" x="-12" width="24" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<rect y="-72.5" rx="0" ry="0" x="0" width="7" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black"/>
<rect y="34.4" rx="0" ry="0" x="0" width="7" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black"/>
<rect y="-39.4" rx="0" ry="0" x="0" width="7" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black"/>
<rect y="-2.5" rx="0" ry="0" x="0" width="7" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black"/>
<rect y="-39.4" rx="0" ry="0" x="-10.5" width="7" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black"/>
<rect y="-2.5" rx="0" ry="0" x="-10.5" width="7" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black"/>
<rect y="34.4" rx="0" ry="0" x="-10.5" width="7" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black"/>
<rect y="-72.5" rx="0" ry="0" x="-10.5" width="7" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black"/>
<polygon y10="-17.41" antialias="false" x12="9.21" y15="-29.05" style="line-style:normal;line-weight:thin;filling:gray;color:black" x7="-1.9" x2="-12" x21="-5" x1="-12" x5="-4.82" y18="-26.7" x13="7.48" y22="-29.08" x17="-1.18" x8="-0.81" x10="6.49" x3="-10.88" y20="-28.65" y4="-17.41" x19="-2.66" y3="-18.47" y13="-28.29" y19="-27.81" x9="1.06" x20="-3.69" y24="-27.82" x18="-1.9" x6="-2.98" y11="-20.09" y1="-26.74" y23="-28.65" y12="-26.05" x4="-9.04" x15="1.12" y17="-27.76" x23="-10.17" y2="-20.07" y21="-29.08" y8="-18.47" y14="-29.05" x24="-11.25" x16="-0.12" y6="-18.43" x14="5.08" y5="-17.41" y9="-17.41" y16="-28.6" y7="-20.07" x11="9.21" x22="-8.9"/>
<polygon y10="19.18" antialias="false" x12="9.13" y15="7.54" style="line-style:normal;line-weight:thin;filling:gray;color:black" x7="-1.98" x2="-12" x21="-5.06" x1="-12" x5="-4.9" y18="9.89" x13="7.39" y22="7.51" x17="-1.26" x8="-0.89" x10="6.42" x3="-10.96" y20="7.94" y4="19.18" x19="-2.74" y3="18.12" y13="8.3" y19="8.78" x9="0.98" x20="-3.77" y24="8.77" x18="-1.98" x6="-3.06" y11="16.5" y1="9.85" y23="7.94" y12="10.54" x4="-9.12" x15="1.04" y17="8.83" x23="-10.25" y2="16.52" y21="7.51" y8="18.12" y14="7.54" x24="-11.31" x16="-0.2" y6="18.16" x14="5" y5="19.18" y9="19.18" y16="8" y7="16.52" x11="9.13" x22="-8.97"/>
<polygon y10="-50.57" antialias="false" x12="9.17" y15="-62.21" style="line-style:normal;line-weight:thin;filling:gray;color:black" x7="-1.92" x2="-12" x21="-5" x1="-12" x5="-4.84" y18="-59.86" x13="7.45" y22="-62.24" x17="-1.2" x8="-0.84" x10="6.47" x3="-10.92" y20="-61.81" y4="-50.57" x19="-2.68" y3="-51.62" y13="-61.45" y19="-60.97" x9="1.03" x20="-3.71" y24="-60.98" x18="-1.92" x6="-3" y11="-53.25" y1="-59.9" y23="-61.81" y12="-59.2" x4="-9.07" x15="1.1" y17="-60.91" x23="-10.19" y2="-53.23" y21="-62.24" y8="-51.63" y14="-62.21" x24="-11.27" x16="-0.14" y6="-51.58" x14="5.06" y5="-50.57" y9="-50.57" y16="-61.75" y7="-53.22" x11="9.17" x22="-8.93"/>
<polygon y10="56.34" antialias="false" x12="9.14" y15="44.7" style="line-style:normal;line-weight:thin;filling:gray;color:black" x7="-1.95" x2="-12" x21="-5.04" x1="-12" x5="-4.88" y18="47.05" x13="7.42" y22="44.67" x17="-1.23" x8="-0.87" x10="6.43" x3="-10.95" y20="45.1" y4="56.34" x19="-2.71" y3="55.28" y13="45.46" y19="45.94" x9="1" x20="-3.74" y24="45.93" x18="-1.95" x6="-3.03" y11="53.66" y1="47" y23="45.09" y12="47.7" x4="-9.1" x15="1.06" y17="46" x23="-10.22" y2="53.68" y21="44.67" y8="55.28" y14="44.7" x24="-11.29" x16="-0.18" y6="55.32" x14="5.02" y5="56.34" y9="56.34" y16="45.15" y7="53.68" x11="9.14" x22="-8.96"/>
<polygon x16="1.32" y7="15.45" y13="6" y16="7.98" x1="1.5" x6="5.56" y6="17.24" x10="5.19" y11="7.98" y8="11.7" x11="5.35" x12="5.35" y3="11.7" y15="6.88" y12="6.88" y9="10.36" x2="0.18" x3="-0.7" x9="6.48" x4="-0.7" antialias="false" y1="9.69" y5="17.24" y2="10.36" x7="7.37" x5="1.1" y4="15.45" x8="7.37" y10="9.69" x13="4.44" y14="6" x15="1.32" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x14="2.22"/>
<polygon x16="-9.04" y7="15.45" y13="6" y16="7.98" x1="-8.85" x6="-4.79" y6="17.24" x10="-5.16" y11="7.98" y8="11.7" x11="-5" x12="-5" y3="11.7" y15="6.88" y12="6.88" y9="10.36" x2="-10.17" x3="-11.05" x9="-3.87" x4="-11.05" antialias="false" y1="9.69" y5="17.24" y2="10.36" x7="-3" x5="-9.25" y4="15.45" x8="-3" y10="9.69" x13="-5.91" y14="6" x15="-9.04" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x14="-8.13"/>
<polygon x16="1.39" y7="-21.14" y13="-30.6" y16="-28.61" x1="1.58" x6="5.64" y6="-19.35" x10="5.27" y11="-28.61" y8="-24.89" x11="5.43" x12="5.43" y3="-24.89" y15="-29.71" y12="-29.71" y9="-26.23" x2="0.26" x3="-0.62" x9="6.56" x4="-0.62" antialias="false" y1="-26.9" y5="-19.35" y2="-26.23" x7="7.44" x5="1.18" y4="-21.14" x8="7.44" y10="-26.9" x13="4.52" y14="-30.6" x15="1.39" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x14="2.3"/>
<polygon x16="-8.95" y7="-21.14" y13="-30.6" y16="-28.61" x1="-8.78" x6="-4.72" y6="-19.35" x10="-5.07" y11="-28.61" y8="-24.89" x11="-4.93" x12="-4.93" y3="-24.89" y15="-29.71" y12="-29.71" y9="-26.23" x2="-10.1" x3="-10.98" x9="-3.79" x4="-10.98" antialias="false" y1="-26.9" y5="-19.35" y2="-26.23" x7="-2.91" x5="-9.17" y4="-21.14" x8="-2.91" y10="-26.9" x13="-5.82" y14="-30.6" x15="-8.95" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x14="-8.05"/>
<polygon x16="1.34" y7="52.61" y13="43.15" y16="45.14" x1="1.52" x6="5.58" y6="54.4" x10="5.22" y11="45.14" y8="48.86" x11="5.38" x12="5.38" y3="48.86" y15="44.04" y12="44.04" y9="47.52" x2="0.2" x3="-0.68" x9="6.51" x4="-0.68" antialias="false" y1="46.85" y5="54.4" y2="47.52" x7="7.39" x5="1.13" y4="52.61" x8="7.39" y10="46.85" x13="4.47" y14="43.15" x15="1.34" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x14="2.24"/>
<polygon x16="-9" y7="52.61" y13="43.15" y16="45.14" x1="-8.83" x6="-4.77" y6="54.4" x10="-5.13" y11="45.14" y8="48.86" x11="-5" x12="-5" y3="48.86" y15="44.04" y12="44.04" y9="47.52" x2="-10.14" x3="-11.03" x9="-3.85" x4="-11.03" antialias="false" y1="46.85" y5="54.4" y2="47.52" x7="-2.97" x5="-9.22" y4="52.61" x8="-2.97" y10="46.85" x13="-5.88" y14="43.15" x15="-9" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x14="-8.11"/>
<polygon x16="1.37" y7="-54.29" y13="-63.76" y16="-61.77" x1="1.55" x6="5.61" y6="-52.5" x10="5.25" y11="-61.77" y8="-58.05" x11="5.4" x12="5.4" y3="-58.05" y15="-62.87" y12="-62.87" y9="-59.39" x2="0.23" x3="-0.65" x9="6.54" x4="-0.65" antialias="false" y1="-60.06" y5="-52.5" y2="-59.39" x7="7.43" x5="1.16" y4="-54.29" x8="7.43" y10="-60.06" x13="4.5" y14="-63.76" x15="1.37" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x14="2.27"/>
<polygon x16="-8.98" y7="-54.29" y13="-63.76" y16="-61.77" x1="-8.79" x6="-4.73" y6="-52.5" x10="-5.11" y11="-61.77" y8="-58.05" x11="-4.94" x12="-4.94" y3="-58.05" y15="-62.87" y12="-62.87" y9="-59.39" x2="-10.11" x3="-11" x9="-3.81" x4="-11" antialias="false" y1="-60.06" y5="-52.5" y2="-59.39" x7="-2.93" x5="-9.19" y4="-54.29" x8="-2.93" y10="-60.06" x13="-5.86" y14="-63.76" x15="-8.98" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x14="-8.08"/>
<rect y="-104.5" rx="0" ry="0" x="-9" width="18" height="20" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black"/>
<rect y="-103.5" rx="0" ry="0" x="1.45" width="5.7" height="3" antialias="false" style="line-style:normal;line-weight:thin;filling:red;color:black"/>
<rect y="-103.5" rx="0" ry="0" x="-6.64" width="5.7" height="3" antialias="false" style="line-style:normal;line-weight:thin;filling:green;color:black"/>
<rect y="-88.5" rx="0" ry="0" x="1.45" width="5.7" height="3" antialias="false" style="line-style:normal;line-weight:thin;filling:red;color:black"/>
<rect y="-88.5" rx="0" ry="0" x="-6.64" width="5.7" height="3" antialias="false" style="line-style:normal;line-weight:thin;filling:green;color:black"/>
<rect y="-93.5" rx="0" ry="0" x="1.45" width="5.7" height="3" antialias="false" style="line-style:normal;line-weight:thin;filling:red;color:black"/>
<rect y="-93.5" rx="0" ry="0" x="-6.64" width="5.7" height="3" antialias="false" style="line-style:normal;line-weight:thin;filling:green;color:black"/>
<rect y="-98.5" rx="0" ry="0" x="1.45" width="5.7" height="3" antialias="false" style="line-style:normal;line-weight:thin;filling:red;color:black"/>
<rect y="-98.5" rx="0" ry="0" x="-6.64" width="5.7" height="3" antialias="false" style="line-style:normal;line-weight:thin;filling:green;color:black"/>
<text rotation="0" y="-101" text="A" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="-11.7" color="#000000"/>
<text rotation="0" y="-101" text="E" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="9.7" color="#000000"/>
<text rotation="0" y="-86" text="D" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="-11.7" color="#000000"/>
<text rotation="0" y="-86" text="H" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="9.63" color="#000000"/>
<text rotation="0" y="-91" text="C" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="-11.7" color="#000000"/>
<text rotation="0" y="-91" text="G" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="9.54" color="#000000"/>
<text rotation="0" y="-96" text="B" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="-11.7" color="#000000"/>
<text rotation="0" y="-96" text="F" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" x="9.79" color="#000000"/>
<rect y="-3.3" rx="0" ry="0" x="9.5" width="2.5" height="18.4" antialias="false" style="line-style:normal;line-weight:thin;filling:orange;color:black"/>
<dynamic_text Valignment="AlignTop" z="45" rotation="0" y="-20" text_from="ElementInfo" font="Sans Serif,7,-1,5,0,0,0,0,0,0,normal" frame="false" x="-4" text_width="-1" keep_visual_rotation="false" uuid="{76d451fa-38a9-4e77-b356-ea44520dc2dd}" Halignment="AlignHCenter">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon x1="9.5" y2="6.13" x2="12" closed="false" y1="6.13" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<text rotation="0" y="63.26" text="750-471" font="Sans Serif,2.86,-1,5,50,0,0,0,0,0" x="-8.27" color="#000000"/>
<rect y="-49.5" rx="0" ry="0" x="-0.5" width="8" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:yellow;color:black"/>
<text rotation="0" y="-44" text="E2-" font="Sans Serif,2,-1,5,50,0,0,0,0,0" x="1.29688" color="#000000"/>
<rect y="-49.5" rx="0" ry="0" x="-11" width="8" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:yellow;color:black"/>
<text rotation="0" y="-44" text="E2+" font="Sans Serif,2,-1,5,50,0,0,0,0,0" x="-10" color="#000000"/>
<rect y="-12.5" rx="0" ry="0" x="-0.5" width="8" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:yellow;color:black"/>
<text rotation="0" y="-7" text="E3-" font="Sans Serif,2,-1,5,50,0,0,0,0,0" x="1.29688" color="#000000"/>
<rect y="-12.5" rx="0" ry="0" x="-11" width="8" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:yellow;color:black"/>
<text rotation="0" y="-7" text="E3+" font="Sans Serif,2,-1,5,50,0,0,0,0,0" x="-10" color="#000000"/>
<rect y="24.5" rx="0" ry="0" x="-0.5" width="8" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:yellow;color:black"/>
<text rotation="0" y="30" text="E4-" font="Sans Serif,2,-1,5,50,0,0,0,0,0" x="1.29688" color="#000000"/>
<rect y="24.5" rx="0" ry="0" x="-11" width="8" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:yellow;color:black"/>
<text rotation="0" y="30" text="E4+" font="Sans Serif,2,-1,5,50,0,0,0,0,0" x="-10" color="#000000"/>
<rect y="-115" rx="0" ry="0" x="1" width="8" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:green;color:black"/>
<rect y="-82.5" rx="0" ry="0" x="-12" width="24" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<rect y="-82.5" rx="0" ry="0" x="-0.5" width="8" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:yellow;color:black"/>
<text rotation="0" y="-77" text="E1-" font="Sans Serif,2,-1,5,50,0,0,0,0,0" x="1.29688" color="#000000"/>
<rect y="-82.5" rx="0" ry="0" x="-11" width="8" height="8" antialias="false" style="line-style:normal;line-weight:thin;filling:yellow;color:black"/>
<text rotation="0" y="-77" text="E1+" font="Sans Serif,2,-1,5,50,0,0,0,0,0" x="-10" color="#000000"/>
</description>
</definition>

View File

@@ -1,4 +1,4 @@
<definition type="element" width="34" height="206" version="0.80" hotspot_x="17" hotspot_y="129" link_type="simple"> <definition height="210" hotspot_y="131" version="0.90" link_type="simple" width="40" hotspot_x="22" type="element">
<names> <names>
<name lang="fr">753-511</name> <name lang="fr">753-511</name>
<name lang="en">753-511</name> <name lang="en">753-511</name>
@@ -14,75 +14,73 @@
License:see https://qelectrotech.org/wiki_new/doc/elements_license License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations> </informations>
<description> <description>
<polygon x1="-9" x2="15.14" x3="15.14" x4="-9" y1="-102.49" y2="-102.49" y3="-116.49" y4="-116.49" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/> <polygon y15="-126.5" x20="-12" x2="6.6" y1="-14.5" x18="-16" y30="70.5" y37="22.5" y22="67.5" y2="-17.5" y9="-120.5" x7="5" x33="6.6" y24="73.5" x17="-16" y28="67.5" x3="12" y18="-124.5" x5="8" y14="-126.5" x30="8" y40="-14.5" y32="59.5" y7="-119.5" y35="56.5" x8="5" y33="59.5" x24="-18" y38="19.5" y4="-123.5" y17="-120.5" x31="12" y21="71.5" x12="-10" y8="-120.5" x35="12" x23="-18" x15="-18" y12="-123.5" x11="-10" y19="-124.5" x25="-2" y5="-123.5" x36="12" y16="-120.5" y27="70.5" x34="6.6" y31="70.5" x41="6.6" x37="6.6" x40="12" y20="71.5" x29="8" y36="22.5" x13="-2" x38="6.6" y25="73.5" y10="-117.5" x39="12" antialias="false" y34="56.5" x19="-12" x28="-10" y26="70.5" y6="-119.5" x27="-10" x10="-2" y41="-14.5" x6="8" x1="6.6" y13="-123.5" x21="-16" x9="-2" x16="-18" y23="67.5" x22="-16" style="line-style:normal;line-weight:thin;filling:white;color:black" y11="-117.5" x26="-2" y39="19.5" x4="12" x14="-2" y29="67.5" x32="12" y3="-17.5"/>
<polygon x1="9.73" x2="9.73" x3="15.17" x4="15.17" x5="11.14" x6="11.14" x7="8.12" x8="8.12" x9="1.06" y1="-14.61" y2="-17.6" y3="-17.6" y4="-123.59" y5="-123.59" y6="-119.6" y7="-119.6" y8="-120.6" y9="-120.6" x10="1.06" x11="-7" x12="-7" x13="1.06" x14="1.06" x15="-15.06" x16="-15.06" x17="-13.05" x18="-13.05" x19="-9.02" x20="-9.02" x21="-13.05" x22="-13.05" x23="-15.06" x24="-15.06" x25="1.06" x26="1.06" x27="-7" x28="-7" x29="11.14" x30="11.14" x31="15.17" x32="15.17" x33="9.73" x34="9.73" x35="15.17" x36="15.17" x37="9.73" x38="9.73" x39="15.17" x40="15.17" y10="-117.6" y11="-117.6" y12="-123.59" y13="-123.59" y14="-126.6" y15="-126.6" y16="-120.6" y17="-120.6" y18="-124.59" y19="-124.59" y20="71.39" y21="71.39" y22="67.39" y23="67.39" y24="73.38" y25="73.38" y26="70.39" y27="70.39" y28="67.39" y29="67.39" y30="70.39" y31="70.39" y32="59.39" y33="59.39" y34="56.39" y35="56.39" y36="22.39" y37="22.39" y38="19.39" y39="19.39" y40="-14.61" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/> <polygon x3="12" y1="-116.5" x1="-12" x2="12" y2="-116.5" antialias="false" y3="-102.5" x4="-12" style="line-style:normal;line-weight:thin;filling:red;color:black" y4="-102.5"/>
<polygon x1="-9" x2="15.14" x3="15.14" x4="-9" y1="-116.49" y2="-116.49" y3="-102.49" y4="-102.49" style="line-style:normal;line-weight:thin;filling:red;color:black" antialias="false"/> <circle x="-8.97" diameter="5.15" y="-60.36" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="-4.97" x2="11.13" x3="11.13" x4="-4.97" y1="-107.06" y2="-107.06" y3="-112.06" y4="-112.06" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/> <polygon x3="8" y1="-112" x1="-8" x2="8" y2="-112" antialias="false" y3="-107" x4="-8" style="line-style:normal;line-weight:thin;filling:none;color:black" y4="-107"/>
<circle x="-5.97" y="-60.36" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <polygon y1="-102" x1="-12" x2="12" y2="-102" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false"/>
<polygon x1="-4.97" x2="11.13" x3="11.13" x4="-4.97" y1="-112.06" y2="-112.06" y3="-107.06" y4="-107.06" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/> <polygon x3="11" y1="-113.5" x1="-11" x2="11" y2="-113.5" antialias="false" y3="-105.5" x4="-11" style="line-style:normal;line-weight:thin;filling:none;color:black" y4="-105.5"/>
<polygon x1="-9" x2="15.14" y1="-102" y2="-102" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <text x="-11.46" text="A" color="#000000" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" y="-99.59" rotation="0"/>
<polygon x1="-8" x2="14.14" x3="14.14" x4="-8" y1="-113.49" y2="-113.49" y3="-105.49" y4="-105.49" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/> <circle x="0.17" diameter="2.86" y="-14.34" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<text x="-8.46" y="-99.59" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" text="A" color="#000000" rotation="0"/> <text x="-11.46" text="B" color="#000000" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" y="-90.45" rotation="0"/>
<circle x="3.17" y="-14.34" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="2.86" antialias="false"/> <text x="7.97" text="C" color="#000000" font="Sans Serif,3.43,-1,5,50,0,0,0,0,0" y="-95.02" rotation="0"/>
<text x="-8.46" y="-90.45" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" text="B" color="#000000" rotation="0"/> <text x="7.73" text="D" color="#000000" font="Sans Serif,3.43,-1,5,50,0,0,0,0,0" y="-85.87" rotation="0"/>
<text x="10.97" y="-95.02" font="Sans Serif,3.43,-1,5,50,0,0,0,0,0" text="C" color="#000000" rotation="0"/> <circle x="-10.32" diameter="6.86" y="-99.88" antialias="false" style="line-style:normal;line-weight:thin;filling:green;color:black"/>
<text x="10.73" y="-85.87" font="Sans Serif,3.43,-1,5,50,0,0,0,0,0" text="D" color="#000000" rotation="0"/> <circle x="-0.17" diameter="6.86" y="-99.88" antialias="false" style="line-style:normal;line-weight:thin;filling:green;color:black"/>
<circle x="-7.32" y="-99.88" style="line-style:normal;line-weight:thin;filling:green;color:black" diameter="6.86" antialias="false"/> <circle x="-8.86" diameter="5.15" y="11.33" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="2.83" y="-99.88" style="line-style:normal;line-weight:thin;filling:green;color:black" diameter="6.86" antialias="false"/> <circle x="-0.17" diameter="6.86" y="-90.73" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="-5.86" y="11.33" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <circle x="-10.32" diameter="6.86" y="-90.73" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="2.83" y="-90.73" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="6.86" antialias="false"/> <circle x="-7.89" diameter="2.86" y="-14.34" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="-7.32" y="-90.73" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="6.86" antialias="false"/> <circle x="-8.92" diameter="5.15" y="48.49" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="-4.89" y="-14.34" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="2.86" antialias="false"/> <circle x="1.03" diameter="5.15" y="-60.36" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="-5.92" y="48.49" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <circle x="-11.83" diameter="9.72" y="-71.22" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="4.03" y="-60.36" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <circle x="-8.92" diameter="5.15" y="-25.83" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="-8.83" y="-71.22" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <circle x="1.15" diameter="5.15" y="11.33" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="-5.92" y="-25.83" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <circle x="1.09" diameter="5.15" y="-25.83" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="4.15" y="11.33" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <circle x="1.09" diameter="5.15" y="48.49" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="4.09" y="-25.83" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <circle x="-1.83" diameter="9.72" y="-71.22" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="4.09" y="48.49" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <circle x="-11.77" diameter="9.72" y="-36.69" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="1.17" y="-71.22" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <circle x="-11.72" diameter="9.72" y="0.47" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="-8.77" y="-36.69" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <circle x="-11.77" diameter="9.72" y="37.63" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="-8.72" y="0.47" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <polygon x3="6.64" y1="-79.5" x1="0.59" x2="6.64" y2="-79.5" antialias="false" y3="-71.9" x4="0.59" style="line-style:normal;line-weight:thin;filling:gray;color:black" y4="-71.9"/>
<circle x="-8.77" y="37.63" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <circle x="-1.77" diameter="9.72" y="-36.69" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon x1="3.59" x2="9.64" x3="9.64" x4="3.59" y1="-79.5" y2="-79.5" y3="-71.9" y4="-71.9" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <circle x="-1.77" diameter="9.72" y="37.63" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="1.23" y="-36.69" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <circle x="-1.71" diameter="9.72" y="0.47" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="1.23" y="37.63" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <circle x="-0.97" diameter="8" y="-70.36" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="1.29" y="0.47" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <polygon x3="6.69" y1="-44.97" x1="0.65" x2="6.69" y2="-44.97" antialias="false" y3="-37.37" x4="0.65" style="line-style:normal;line-weight:thin;filling:gray;color:black" y4="-37.37"/>
<circle x="2.03" y="-70.36" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <circle x="-0.85" diameter="8" y="1.33" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="3.65" x2="9.69" x3="9.69" x4="3.65" y1="-44.97" y2="-44.97" y3="-37.37" y4="-37.37" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <circle x="-0.91" diameter="8" y="38.49" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="2.15" y="1.33" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <circle x="-0.91" diameter="8" y="-35.83" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="2.09" y="38.49" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <polygon x3="4.12" y1="54.25" x1="-5.96" x2="4.12" y2="54.25" antialias="false" y3="67.45" x4="-5.96" style="line-style:normal;line-weight:thin;filling:white;color:black" y4="67.45"/>
<circle x="2.09" y="-35.83" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <polygon x3="-3.31" y1="-44.97" x1="-9.36" x2="-3.31" y2="-44.97" antialias="false" y3="-37.37" x4="-9.36" style="line-style:normal;line-weight:thin;filling:gray;color:black" y4="-37.37"/>
<polygon x1="-2.96" x2="7.12" x3="7.12" x4="-2.96" y1="54.25" y2="54.25" y3="67.45" y4="67.45" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/> <circle x="-10.86" diameter="8" y="1.33" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="-6.36" x2="-0.31" x3="-0.31" x4="-6.36" y1="-44.97" y2="-44.97" y3="-37.37" y4="-37.37" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <circle x="-10.92" diameter="8" y="38.49" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="-7.86" y="1.33" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <circle x="-10.92" diameter="8" y="-35.83" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="-7.92" y="38.49" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <polygon x3="-5.96" y1="65.45" x1="-10" x2="-5.96" y2="65.45" antialias="false" y3="67.45" x4="-10" style="line-style:normal;line-weight:thin;filling:white;color:black" y4="67.45"/>
<circle x="-7.92" y="-35.83" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <polygon x3="8.15" y1="65.45" x1="4.12" x2="8.15" y2="65.45" antialias="false" y3="67.45" x4="4.12" style="line-style:normal;line-weight:thin;filling:white;color:black" y4="67.45"/>
<polygon x1="-7" x2="-2.96" x3="-2.96" x4="-7" y1="65.45" y2="65.45" y3="67.45" y4="67.45" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/> <polygon x3="-5.96" y1="54.25" x1="-10" x2="-5.96" y2="54.25" antialias="false" y3="56.24" x4="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" y4="56.24"/>
<polygon x1="7.12" x2="11.15" x3="11.15" x4="7.12" y1="65.45" y2="65.45" y3="67.45" y4="67.45" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/> <polygon x3="8.15" y1="54.25" x1="4.12" x2="8.15" y2="54.25" antialias="false" y3="56.24" x4="4.12" style="line-style:normal;line-weight:thin;filling:none;color:black" y4="56.24"/>
<polygon x1="-7" x2="-2.96" x3="-2.96" x4="-7" y1="54.25" y2="54.25" y3="56.24" y4="56.24" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/> <polygon y1="24.49" x1="12" x2="-12" y2="24.49" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false"/>
<polygon x1="7.12" x2="11.15" x3="11.15" x4="7.12" y1="54.25" y2="54.25" y3="56.24" y4="56.24" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/> <polygon y1="32.49" x1="-12" x2="12" y2="32.49" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false"/>
<polygon x1="15.18" x2="-9" y1="24.49" y2="24.49" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <polygon y1="-4.5" x1="-12" x2="12" y2="-4.5" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false"/>
<polygon x1="-9" x2="15.18" y1="32.49" y2="32.49" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <polygon y1="18.09" x1="12" x2="-12" y2="18.09" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false"/>
<polygon x1="-9" x2="15.18" y1="-4.5" y2="-4.5" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <polygon x3="-3.37" y1="-79.5" x1="-9.42" x2="-3.37" y2="-79.5" antialias="false" y3="-71.9" x4="-9.42" style="line-style:normal;line-weight:thin;filling:gray;color:black" y4="-71.9"/>
<polygon x1="15.18" x2="-9" y1="18.09" y2="18.09" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <polygon y1="-53.9" x1="12" x2="-12" y2="-53.9" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false"/>
<polygon x1="-6.42" x2="-0.37" x3="-0.37" x4="-6.42" y1="-79.5" y2="-79.5" y3="-71.9" y4="-71.9" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <polygon y1="-45.9" x1="12" x2="-12" y2="-45.9" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false"/>
<polygon x1="15.18" x2="-9" y1="-53.9" y2="-53.9" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <polygon y1="-8.7" x1="12" x2="-12" y2="-8.7" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false"/>
<polygon x1="15.18" x2="-9" y1="-45.9" y2="-45.9" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <circle x="-10.97" diameter="8" y="-70.36" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="15.18" x2="-9" y1="-8.7" y2="-8.7" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <polygon y1="-82.56" x1="12" x2="-12" y2="-82.56" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false"/>
<circle x="-7.97" y="-70.36" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <polygon x3="6.69" y1="29.35" x1="0.65" x2="6.69" y2="29.35" antialias="false" y3="36.95" x4="0.65" style="line-style:normal;line-weight:thin;filling:gray;color:black" y4="36.95"/>
<polygon x1="15.22" x2="-9" y1="-82.56" y2="-82.56" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <polygon x3="-3.31" y1="29.35" x1="-9.36" x2="-3.31" y2="29.35" antialias="false" y3="36.95" x4="-9.36" style="line-style:normal;line-weight:thin;filling:gray;color:black" y4="36.95"/>
<polygon x1="3.65" x2="9.69" x3="9.69" x4="3.65" y1="29.35" y2="29.35" y3="36.95" y4="36.95" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <polygon x3="6.75" y1="-7.81" x1="0.7" x2="6.75" y2="-7.81" antialias="false" y3="-0.21" x4="0.7" style="line-style:normal;line-weight:thin;filling:gray;color:black" y4="-0.21"/>
<polygon x1="-6.36" x2="-0.31" x3="-0.31" x4="-6.36" y1="29.35" y2="29.35" y3="36.95" y4="36.95" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <polygon x3="-3.25" y1="-7.81" x1="-9.3" x2="-3.25" y2="-7.81" antialias="false" y3="-0.21" x4="-9.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" y4="-0.21"/>
<polygon x1="3.7" x2="9.75" x3="9.75" x4="3.7" y1="-7.81" y2="-7.81" y3="-0.21" y4="-0.21" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <polygon x3="12" y1="-82.53" x1="9.5" x2="12" y2="-82.53" antialias="false" y3="-32.53" x4="9.5" style="line-style:normal;line-weight:thin;filling:orange;color:black" y4="-32.53"/>
<polygon x1="-6.3" x2="-0.25" x3="-0.25" x4="-6.3" y1="-7.81" y2="-7.81" y3="-0.21" y4="-0.21" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <polygon y1="-48.08" x1="9.5" x2="12" y2="-48.08" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false"/>
<polygon x1="13" x2="15.13" x3="15.13" x4="13" y1="-82.53" y2="-82.53" y3="-32.53" y4="-32.53" style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false"/> <polygon x3="6" y1="-126.5" x1="-12" x2="6" y2="-126.5" antialias="false" y3="-116.5" x4="-12" style="line-style:normal;line-weight:thin;filling:white;color:black" y4="-116.5"/>
<polygon x1="13" x2="15.14" y1="-48.08" y2="-48.08" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <text x="-11" text="753-511" color="#000000" font="Sans Serif,2.86,-1,5,50,0,0,0,0,0" y="-120.25" rotation="0"/>
<polygon x1="-8.96" x2="9.18" x3="9.18" x4="-8.96" y1="-126.57" y2="-126.57" y3="-116.56" y4="-116.56" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/> <dynamic_text x="-4.06" Halignment="AlignHCenter" z="67" font="Sans Serif,4,-1,5,25,0,0,0,0,0" text_from="ElementInfo" y="16.93" rotation="0" Valignment="AlignVCenter" uuid="{7e6b9aba-9db0-4037-a375-6029b90c44cb}" text_width="-1" keep_visual_rotation="true" frame="false">
<text x="-8" y="-120.25" font="Sans Serif,2.86,-1,5,50,0,0,0,0,0" text="753-511" color="#000000" rotation="0"/> <text></text>
<dynamic_text x="-1.06" y="16.93" z="67" font="Sans Serif,4,-1,5,25,0,0,0,0,0" uuid="{7e6b9aba-9db0-4037-a375-6029b90c44cb}" frame="false" rotation="0" text_from="ElementInfo" Halignment="AlignHCenter" Valignment="AlignVCenter" text_width="-1"> <info_name>label</info_name>
<text/> </dynamic_text>
<info_name>label</info_name> </description>
</dynamic_text>
</description>
</definition> </definition>

View File

@@ -1,4 +1,4 @@
<definition type="element" width="34" height="206" version="0.80" hotspot_x="17" hotspot_y="129" link_type="simple"> <definition height="210" hotspot_y="131" version="0.90" link_type="simple" width="40" hotspot_x="22" type="element">
<names> <names>
<name lang="fr">753-620</name> <name lang="fr">753-620</name>
<name lang="de">753-620</name> <name lang="de">753-620</name>
@@ -14,82 +14,81 @@
License:see https://qelectrotech.org/wiki_new/doc/elements_license License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations> </informations>
<description> <description>
<polygon x1="15.46" x2="11.43" x3="11.43" x4="8.4" x5="8.4" x6="1.35" x7="1.35" x8="-6.71" x9="-6.71" y1="-123.48" y2="-123.48" y3="-119.48" y4="-119.48" y5="-120.48" y6="-120.48" y7="-117.48" y8="-117.48" y9="-123.48" x10="1.35" x11="1.35" x12="-14.77" x13="-14.77" x14="-12.76" x15="-12.76" x16="-8.72" x17="-8.72" x18="-12.76" x19="-12.76" x20="-14.77" x21="-14.77" x22="1.35" x23="1.35" x24="-6.71" x25="-6.71" x26="11.43" x27="11.43" x28="15.46" x29="15.46" x30="10.02" x31="10.02" x32="15.46" x33="15.46" x34="10.02" x35="10.02" x36="15.46" x37="15.46" x38="10.02" x39="10.02" x40="15.46" y10="-123.48" y11="-126.48" y12="-126.48" y13="-120.48" y14="-120.48" y15="-124.48" y16="-124.48" y17="71.5" y18="71.5" y19="67.5" y20="67.5" y21="73.5" y22="73.5" y23="70.5" y24="70.5" y25="67.5" y26="67.5" y27="70.5" y28="70.5" y29="59.5" y30="59.5" y31="56.5" y32="56.5" y33="22.51" y34="22.51" y35="19.51" y36="19.51" y37="-14.49" y38="-14.49" y39="-17.49" y40="-17.49" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/> <polygon y23="70.5" y10="-123.5" x19="-16" antialias="false" x9="-10" y18="71.5" x10="-2" x25="-10" x26="8" y1="-123.5" y9="-123.5" x16="-12" x20="-18" x6="-2" y25="67.5" x27="8" y5="-120.5" x21="-18" x13="-18" y11="-126.5" x1="12" y15="-124.5" y19="67.5" x11="-2" x7="-2" style="line-style:normal;line-weight:thin;filling:white;color:black" x8="-10" y26="67.5" y24="70.5" x5="5" x2="8" y20="67.5" x4="5" y7="-117.5" x18="-16" y22="73.5" x22="-2" x17="-12" y3="-119.5" y27="70.5" y2="-123.5" x23="-2" y14="-120.5" y16="-124.5" y6="-120.5" x12="-18" x3="8" y8="-117.5" y21="73.5" x15="-16" y4="-119.5" x24="-10" x28="12" x14="-16" y13="-120.5" y12="-126.5" y17="71.5" y28="70.5"/>
<circle x="-5.72" y="-60.34" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <polygon x4="-12" x3="6" antialias="false" x2="6" y3="-116.6" style="line-style:normal;line-weight:thin;filling:white;color:black" x1="-12" y4="-116.6" y1="-126.5" y2="-126.5"/>
<polygon x1="-8.75" x2="15.43" y1="67.5" y2="67.5" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <text y="-120.25" x="-11" text="753-620" font="Sans Serif,2.86,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
<circle x="3.43" y="-14.32" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="2.86" antialias="false"/> <circle y="-60.36" diameter="5.15" x="-8.97" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="-5.6" y="11.35" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <rect y="-116.6" rx="0" height="10.6" ry="0" x="-12" width="24" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="-4.63" y="-14.32" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="2.86" antialias="false"/> <circle y="-14.34" diameter="2.86" x="0.17" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="-5.66" y="48.51" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <rect y="-113.85" rx="0" height="5" ry="0" x="-8" width="16.09" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="4.29" y="-60.34" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <circle y="11.33" diameter="5.15" x="-8.86" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="-8.58" y="-71.2" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <rect y="-115.28" rx="0" height="8.06" ry="0" x="-10.9" width="22.15" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<rect x="-5.73" y="-103.61" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" width="18.29" height="20" antialias="false"/> <circle y="-14.34" diameter="2.86" x="-7.89" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="-5.66" y="-25.81" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <circle y="48.49" diameter="5.15" x="-8.92" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="15.43" x2="-8.75" y1="-82.46" y2="-82.46" style="line-style:normal;line-weight:thin;filling:none;color:blue" closed="false" antialias="false"/> <circle y="-60.36" diameter="5.15" x="1.03" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="4.4" y="11.35" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <circle y="-71.22" diameter="9.72" x="-11.83" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="4.34" y="-25.81" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <circle y="-25.83" diameter="5.15" x="-8.92" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="4.34" y="48.51" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <circle y="11.33" diameter="5.15" x="1.15" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="1.43" y="-71.2" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <circle y="-25.83" diameter="5.15" x="1.09" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<rect x="4.85" y="-97.32" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" width="5.72" height="2.86" antialias="false"/> <circle y="48.49" diameter="5.15" x="1.09" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<text x="-8.3" y="-85.32" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" text="D" color="#000000" rotation="0"/> <circle y="-71.22" diameter="9.72" x="-1.83" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="-8.52" y="-36.67" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <circle y="-36.69" diameter="9.72" x="-11.77" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="-8.46" y="0.49" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <circle y="0.47" diameter="9.72" x="-11.72" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="-8.52" y="37.65" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <circle y="37.63" diameter="9.72" x="-11.77" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon x1="3.84" x2="9.89" x3="9.89" x4="3.84" y1="-79.48" y2="-79.48" y3="-71.87" y4="-71.87" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <polygon x4="0.59" x3="6.64" antialias="false" x2="6.64" y3="-71.9" style="line-style:normal;line-weight:thin;filling:gray;color:black" x1="0.59" y4="-71.9" y1="-79.5" y2="-79.5"/>
<circle x="1.49" y="-36.67" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <circle y="-36.69" diameter="9.72" x="-1.77" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<rect x="4.85" y="-88.18" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" width="5.72" height="2.86" antialias="false"/> <circle y="37.63" diameter="9.72" x="-1.77" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="1.49" y="37.65" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <circle y="0.47" diameter="9.72" x="-1.71" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="1.54" y="0.49" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <circle y="-70.36" diameter="8" x="-0.97" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="2.29" y="-70.34" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <polygon x4="0.65" x3="6.69" antialias="false" x2="6.69" y3="-37.37" style="line-style:normal;line-weight:thin;filling:gray;color:black" x1="0.65" y4="-37.37" y1="-44.97" y2="-44.97"/>
<text x="13.08" y="-99.78" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" text="E" color="#000000" rotation="0"/> <circle y="1.33" diameter="8" x="-0.85" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="3.9" x2="9.95" x3="9.95" x4="3.9" y1="-44.95" y2="-44.95" y3="-37.34" y4="-37.34" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <circle y="38.49" diameter="8" x="-0.91" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="2.4" y="1.35" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <circle y="-35.83" diameter="8" x="-0.91" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="2.34" y="38.51" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <polygon x4="-5.96" x3="4.12" antialias="false" x2="4.12" y3="67.45" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-5.96" y4="67.45" y1="54.25" y2="54.25"/>
<circle x="2.34" y="-35.81" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <polygon x4="-9.36" x3="-3.31" antialias="false" x2="-3.31" y3="-37.37" style="line-style:normal;line-weight:thin;filling:gray;color:black" x1="-9.36" y4="-37.37" y1="-44.97" y2="-44.97"/>
<rect x="4.85" y="-92.75" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" width="5.72" height="2.86" antialias="false"/> <circle y="1.33" diameter="8" x="-10.86" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<rect x="4.85" y="-101.9" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" width="5.72" height="2.86" antialias="false"/> <circle y="38.49" diameter="8" x="-10.92" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="-2.7" x2="7.37" x3="7.37" x4="-2.7" y1="54.27" y2="54.27" y3="67.47" y4="67.47" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/> <circle y="-35.83" diameter="8" x="-10.92" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="-6.1" x2="-0.05" x3="-0.05" x4="-6.1" y1="-44.95" y2="-44.95" y3="-37.34" y4="-37.34" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <polygon x4="-10" x3="-5.96" antialias="false" x2="-5.96" y3="67.45" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-10" y4="67.45" y1="65.45" y2="65.45"/>
<circle x="-7.6" y="1.35" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <polygon x4="4.12" x3="8.15" antialias="false" x2="8.15" y3="67.45" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="4.12" y4="67.45" y1="65.45" y2="65.45"/>
<circle x="-7.66" y="38.51" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <polygon x4="-10" x3="-5.96" antialias="false" x2="-5.96" y3="56.24" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-10" y4="56.24" y1="54.25" y2="54.25"/>
<text x="-8.3" y="-90.46" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" text="C" color="#000000" rotation="0"/> <polygon x4="4.12" x3="8.15" antialias="false" x2="8.15" y3="56.24" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="4.12" y4="56.24" y1="54.25" y2="54.25"/>
<circle x="-7.66" y="-35.81" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <polygon closed="false" antialias="false" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="12" y1="24.49" y2="24.49"/>
<text x="13.02" y="-85.32" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" text="H" color="#000000" rotation="0"/> <polygon closed="false" antialias="false" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-12" y1="32.49" y2="32.49"/>
<polygon x1="-6.74" x2="-2.7" x3="-2.7" x4="-6.74" y1="65.47" y2="65.47" y3="67.47" y4="67.47" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/> <polygon closed="false" antialias="false" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-12" y1="-4.5" y2="-4.5"/>
<text x="13.17" y="-95.21" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" text="F" color="#000000" rotation="0"/> <polygon closed="false" antialias="false" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="12" y1="18.09" y2="18.09"/>
<text x="-8.3" y="-95.21" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" text="B" color="#000000" rotation="0"/> <polygon x4="-9.42" x3="-3.37" antialias="false" x2="-3.37" y3="-71.9" style="line-style:normal;line-weight:thin;filling:gray;color:black" x1="-9.42" y4="-71.9" y1="-79.5" y2="-79.5"/>
<polygon x1="7.37" x2="11.4" x3="11.4" x4="7.37" y1="65.47" y2="65.47" y3="67.47" y4="67.47" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/> <polygon closed="false" antialias="false" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="12" y1="-53.9" y2="-53.9"/>
<text x="12.93" y="-90.35" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" text="G" color="#000000" rotation="0"/> <polygon closed="false" antialias="false" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="12" y1="-45.9" y2="-45.9"/>
<rect x="-3.16" y="-97.32" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" width="5.72" height="2.86" antialias="false"/> <polygon closed="false" antialias="false" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="12" y1="-8.7" y2="-8.7"/>
<rect x="-3.16" y="-88.18" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" width="5.72" height="2.86" antialias="false"/> <circle y="-70.36" diameter="8" x="-10.97" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="-6.74" x2="-2.7" x3="-2.7" x4="-6.74" y1="54.27" y2="54.27" y3="56.27" y4="56.27" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/> <polygon closed="false" antialias="false" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="12" y1="-82.56" y2="-82.56"/>
<rect x="-3.16" y="-92.75" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" width="5.72" height="2.86" antialias="false"/> <polygon x4="0.65" x3="6.69" antialias="false" x2="6.69" y3="36.95" style="line-style:normal;line-weight:thin;filling:gray;color:black" x1="0.65" y4="36.95" y1="29.35" y2="29.35"/>
<polygon x1="7.37" x2="11.4" x3="11.4" x4="7.37" y1="54.27" y2="54.27" y3="56.27" y4="56.27" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/> <polygon x4="-9.36" x3="-3.31" antialias="false" x2="-3.31" y3="36.95" style="line-style:normal;line-weight:thin;filling:gray;color:black" x1="-9.36" y4="36.95" y1="29.35" y2="29.35"/>
<text x="-8.3" y="-99.73" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" text="A" color="#000000" rotation="0"/> <polygon x4="0.7" x3="6.75" antialias="false" x2="6.75" y3="-0.21" style="line-style:normal;line-weight:thin;filling:gray;color:black" x1="0.7" y4="-0.21" y1="-7.81" y2="-7.81"/>
<rect x="-3.16" y="-101.9" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" width="5.72" height="2.86" antialias="false"/> <polygon x4="-9.3" x3="-3.25" antialias="false" x2="-3.25" y3="-0.21" style="line-style:normal;line-weight:thin;filling:gray;color:black" x1="-9.3" y4="-0.21" y1="-7.81" y2="-7.81"/>
<polygon x1="15.43" x2="-8.75" y1="24.51" y2="24.51" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <polygon x4="10.5" x3="12" antialias="false" x2="12" y3="-32.59" style="line-style:normal;line-weight:thin;filling:orange;color:black" x1="10.5" y4="-32.59" y1="-82.59" y2="-82.59"/>
<polygon x1="-8.75" x2="15.43" y1="32.51" y2="32.51" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <polygon closed="false" antialias="false" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="10.5" y1="-48.14" y2="-48.14"/>
<polygon x1="-8.75" x2="15.43" y1="-4.48" y2="-4.48" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <rect y="-104.5" rx="0" height="20" ry="0" x="-9" width="18" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black"/>
<polygon x1="15.43" x2="-8.75" y1="18.12" y2="18.12" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <rect y="-98.5" rx="0" height="3" ry="0" x="1.45" width="5.72" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="-8.75" x2="15.43" y1="26.11" y2="26.11" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <rect y="-88.5" rx="0" height="3" ry="0" x="1.45" width="5.72" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="-6.16" x2="-0.11" x3="-0.11" x4="-6.16" y1="-79.48" y2="-79.48" y3="-71.87" y4="-71.87" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <rect y="-93.5" rx="0" height="3" ry="0" x="1.45" width="5.72" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="-8.75" x2="9.39" x3="9.39" x4="-8.75" y1="-126.49" y2="-126.49" y3="-116.49" y4="-116.49" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/> <rect y="-103.5" rx="0" height="3" ry="0" x="1.45" width="5.72" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="15.43" x2="-8.75" y1="-53.88" y2="-53.88" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <rect y="-98.5" rx="0" height="3" ry="0" x="-6.54" width="5.72" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="15.43" x2="-8.75" y1="-45.88" y2="-45.88" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <rect y="-88.5" rx="0" height="3" ry="0" x="-6.54" width="5.72" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="15.43" x2="-8.75" y1="-8.68" y2="-8.68" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <rect y="-93.5" rx="0" height="3" ry="0" x="-6.54" width="5.72" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="-8.7" x2="15.48" x3="15.48" x4="-8.7" y1="-116.61" y2="-116.61" y3="-104.87" y4="-104.87" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/> <rect y="-103.5" rx="0" height="3" ry="0" x="-6.54" width="5.72" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="-8.7" x2="15.48" x3="15.48" x4="-8.7" y1="-114.61" y2="-114.61" y3="-106.61" y4="-106.61" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/> <dynamic_text y="16.93" Halignment="AlignHCenter" keep_visual_rotation="true" text_width="-1" z="69" frame="false" x="-4.06" Valignment="AlignVCenter" text_from="ElementInfo" font="Sans Serif,4,-1,5,25,0,0,0,0,0" uuid="{7e6b9aba-9db0-4037-a375-6029b90c44cb}" rotation="0">
<circle x="-7.72" y="-70.34" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <text></text>
<text x="-8.06" y="-119.68" font="Sans Serif,2.86,-1,5,50,0,0,0,0,0" text="753-620" color="#000000" rotation="0"/> <info_name>label</info_name>
<polygon x1="3.9" x2="9.95" x3="9.95" x4="3.9" y1="29.37" y2="29.37" y3="36.98" y4="36.98" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> </dynamic_text>
<polygon x1="-6.1" x2="-0.05" x3="-0.05" x4="-6.1" y1="29.37" y2="29.37" y3="36.98" y4="36.98" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <text y="-101" x="-11.7" text="A" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
<polygon x1="3.96" x2="10" x3="10" x4="3.96" y1="-7.79" y2="-7.79" y3="-0.18" y4="-0.18" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <text y="-96" x="-11.7" text="B" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
<polygon x1="-6.05" x2="0" x3="0" x4="-6.05" y1="-7.79" y2="-7.79" y3="-0.18" y4="-0.18" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <text y="-91" x="-11.7" text="C" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
<polygon x1="13.23" x2="15.37" x3="15.37" x4="13.23" y1="-82.45" y2="-82.45" y3="-32.45" y4="-32.45" style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false"/> <text y="-86" x="-11.7" text="D" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
<polygon x1="13.22" x2="15.38" y1="-48" y2="-48" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <text y="-101" x="9.7" text="E" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
<dynamic_text x="-0.8" y="16.96" z="74" font="Sans Serif,4,-1,5,25,0,0,0,0,0" uuid="{7e6b9aba-9db0-4037-a375-6029b90c44cb}" frame="false" rotation="0" text_from="ElementInfo" Halignment="AlignHCenter" Valignment="AlignVCenter" text_width="-1"> <text y="-96" x="9.79" text="F" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
<text/> <text y="-91" x="9.54" text="G" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
<info_name>label</info_name> <text y="-86" x="9.63" text="H" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
</dynamic_text> </description>
</description>
</definition> </definition>

View File

@@ -1,4 +1,4 @@
<definition type="element" width="34" height="206" version="0.80" hotspot_x="17" hotspot_y="129" link_type="simple"> <definition height="210" hotspot_y="131" version="0.90" link_type="simple" width="40" hotspot_x="22" type="element">
<names> <names>
<name lang="fr">753-647</name> <name lang="fr">753-647</name>
<name lang="de">753-647</name> <name lang="de">753-647</name>
@@ -14,82 +14,81 @@
License:see https://qelectrotech.org/wiki_new/doc/elements_license License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations> </informations>
<description> <description>
<polygon x1="15.46" x2="11.43" x3="11.43" x4="8.4" x5="8.4" x6="1.35" x7="1.35" x8="-6.71" x9="-6.71" y1="-123.48" y2="-123.48" y3="-119.48" y4="-119.48" y5="-120.48" y6="-120.48" y7="-117.48" y8="-117.48" y9="-123.48" x10="1.35" x11="1.35" x12="-14.77" x13="-14.77" x14="-12.76" x15="-12.76" x16="-8.72" x17="-8.72" x18="-12.76" x19="-12.76" x20="-14.77" x21="-14.77" x22="1.35" x23="1.35" x24="-6.71" x25="-6.71" x26="11.43" x27="11.43" x28="15.46" x29="15.46" x30="10.02" x31="10.02" x32="15.46" x33="15.46" x34="10.02" x35="10.02" x36="15.46" x37="15.46" x38="10.02" x39="10.02" x40="15.46" y10="-123.48" y11="-126.48" y12="-126.48" y13="-120.48" y14="-120.48" y15="-124.48" y16="-124.48" y17="71.5" y18="71.5" y19="67.5" y20="67.5" y21="73.5" y22="73.5" y23="70.5" y24="70.5" y25="67.5" y26="67.5" y27="70.5" y28="70.5" y29="59.5" y30="59.5" y31="56.5" y32="56.5" y33="22.51" y34="22.51" y35="19.51" y36="19.51" y37="-14.49" y38="-14.49" y39="-17.49" y40="-17.49" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/> <polygon y23="70.5" y10="-123.5" x19="-16" antialias="false" x9="-10" y18="71.5" x10="-2" x25="-10" x26="8" y1="-123.5" y9="-123.5" x16="-12" x20="-18" x6="-2" y25="67.5" x27="8" y5="-120.5" x21="-18" x13="-18" y11="-126.5" x1="12" y15="-124.5" y19="67.5" x11="-2" x7="-2" style="line-style:normal;line-weight:thin;filling:white;color:black" x8="-10" y26="67.5" y24="70.5" x5="5" x2="8" y20="67.5" x4="5" y7="-117.5" x18="-16" y22="73.5" x22="-2" x17="-12" y3="-119.5" y27="70.5" y2="-123.5" x23="-2" y14="-120.5" y16="-124.5" y6="-120.5" x12="-18" x3="8" y8="-117.5" y21="73.5" x15="-16" y4="-119.5" x24="-10" x28="12" x14="-16" y13="-120.5" y12="-126.5" y17="71.5" y28="70.5"/>
<circle x="-5.72" y="-60.34" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <polygon x4="-12" x3="6" antialias="false" x2="6" y3="-116.6" style="line-style:normal;line-weight:thin;filling:white;color:black" x1="-12" y4="-116.6" y1="-126.5" y2="-126.5"/>
<polygon x1="-8.75" x2="15.43" y1="67.5" y2="67.5" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <text y="-120.25" x="-11" text="753-647" font="Sans Serif,2.86,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
<circle x="3.43" y="-14.32" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="2.86" antialias="false"/> <circle y="-60.36" diameter="5.15" x="-8.97" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="-5.6" y="11.35" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <rect y="-116.6" rx="0" height="10.6" ry="0" x="-12" width="24" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="-4.63" y="-14.32" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="2.86" antialias="false"/> <circle y="-14.34" diameter="2.86" x="0.17" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="-5.66" y="48.51" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <rect y="-113.85" rx="0" height="5" ry="0" x="-8" width="16.09" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="4.29" y="-60.34" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <circle y="11.33" diameter="5.15" x="-8.86" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="-8.58" y="-71.2" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <rect y="-115.28" rx="0" height="8.06" ry="0" x="-10.9" width="22.15" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<rect x="-5.73" y="-103.61" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" width="18.29" height="20" antialias="false"/> <circle y="-14.34" diameter="2.86" x="-7.89" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="-5.66" y="-25.81" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <circle y="48.49" diameter="5.15" x="-8.92" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="15.43" x2="-8.75" y1="-82.46" y2="-82.46" style="line-style:normal;line-weight:thin;filling:none;color:blue" closed="false" antialias="false"/> <circle y="-60.36" diameter="5.15" x="1.03" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="4.4" y="11.35" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <circle y="-71.22" diameter="9.72" x="-11.83" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="4.34" y="-25.81" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <circle y="-25.83" diameter="5.15" x="-8.92" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="4.34" y="48.51" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="5.15" antialias="false"/> <circle y="11.33" diameter="5.15" x="1.15" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="1.43" y="-71.2" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <circle y="-25.83" diameter="5.15" x="1.09" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<rect x="4.85" y="-97.32" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" width="5.72" height="2.86" antialias="false"/> <circle y="48.49" diameter="5.15" x="1.09" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<text x="-8.3" y="-85.32" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" text="D" color="#000000" rotation="0"/> <circle y="-71.22" diameter="9.72" x="-1.83" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="-8.52" y="-36.67" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <circle y="-36.69" diameter="9.72" x="-11.77" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="-8.46" y="0.49" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <circle y="0.47" diameter="9.72" x="-11.72" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="-8.52" y="37.65" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <circle y="37.63" diameter="9.72" x="-11.77" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon x1="3.84" x2="9.89" x3="9.89" x4="3.84" y1="-79.48" y2="-79.48" y3="-71.87" y4="-71.87" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <polygon x4="0.59" x3="6.64" antialias="false" x2="6.64" y3="-71.9" style="line-style:normal;line-weight:thin;filling:gray;color:black" x1="0.59" y4="-71.9" y1="-79.5" y2="-79.5"/>
<circle x="1.49" y="-36.67" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <circle y="-36.69" diameter="9.72" x="-1.77" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<rect x="4.85" y="-88.18" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" width="5.72" height="2.86" antialias="false"/> <circle y="37.63" diameter="9.72" x="-1.77" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="1.49" y="37.65" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <circle y="0.47" diameter="9.72" x="-1.71" antialias="false" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<circle x="1.54" y="0.49" style="line-style:normal;line-weight:thin;filling:none;color:black" diameter="9.72" antialias="false"/> <circle y="-70.36" diameter="8" x="-0.97" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="2.29" y="-70.34" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <polygon x4="0.65" x3="6.69" antialias="false" x2="6.69" y3="-37.37" style="line-style:normal;line-weight:thin;filling:gray;color:black" x1="0.65" y4="-37.37" y1="-44.97" y2="-44.97"/>
<text x="13.08" y="-99.78" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" text="E" color="#000000" rotation="0"/> <circle y="1.33" diameter="8" x="-0.85" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="3.9" x2="9.95" x3="9.95" x4="3.9" y1="-44.95" y2="-44.95" y3="-37.34" y4="-37.34" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <circle y="38.49" diameter="8" x="-0.91" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="2.4" y="1.35" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <circle y="-35.83" diameter="8" x="-0.91" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle x="2.34" y="38.51" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <polygon x4="-5.96" x3="4.12" antialias="false" x2="4.12" y3="67.45" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-5.96" y4="67.45" y1="54.25" y2="54.25"/>
<circle x="2.34" y="-35.81" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <polygon x4="-9.36" x3="-3.31" antialias="false" x2="-3.31" y3="-37.37" style="line-style:normal;line-weight:thin;filling:gray;color:black" x1="-9.36" y4="-37.37" y1="-44.97" y2="-44.97"/>
<rect x="4.85" y="-92.75" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" width="5.72" height="2.86" antialias="false"/> <circle y="1.33" diameter="8" x="-10.86" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<rect x="4.85" y="-101.9" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" width="5.72" height="2.86" antialias="false"/> <circle y="38.49" diameter="8" x="-10.92" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="-2.7" x2="7.37" x3="7.37" x4="-2.7" y1="54.33" y2="54.33" y3="67.53" y4="67.53" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/> <circle y="-35.83" diameter="8" x="-10.92" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="-6.1" x2="-0.05" x3="-0.05" x4="-6.1" y1="-44.95" y2="-44.95" y3="-37.34" y4="-37.34" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <polygon x4="-10" x3="-5.96" antialias="false" x2="-5.96" y3="67.45" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-10" y4="67.45" y1="65.45" y2="65.45"/>
<circle x="-7.6" y="1.35" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <polygon x4="4.12" x3="8.15" antialias="false" x2="8.15" y3="67.45" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="4.12" y4="67.45" y1="65.45" y2="65.45"/>
<circle x="-7.66" y="38.51" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <polygon x4="-10" x3="-5.96" antialias="false" x2="-5.96" y3="56.24" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-10" y4="56.24" y1="54.25" y2="54.25"/>
<text x="-8.3" y="-90.46" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" text="C" color="#000000" rotation="0"/> <polygon x4="4.12" x3="8.15" antialias="false" x2="8.15" y3="56.24" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="4.12" y4="56.24" y1="54.25" y2="54.25"/>
<circle x="-7.66" y="-35.81" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <polygon closed="false" antialias="false" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="12" y1="24.49" y2="24.49"/>
<text x="13.02" y="-85.32" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" text="H" color="#000000" rotation="0"/> <polygon closed="false" antialias="false" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-12" y1="32.49" y2="32.49"/>
<polygon x1="-6.74" x2="-2.7" x3="-2.7" x4="-6.74" y1="65.53" y2="65.53" y3="67.53" y4="67.53" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/> <polygon closed="false" antialias="false" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="-12" y1="-4.5" y2="-4.5"/>
<text x="13.17" y="-95.21" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" text="F" color="#000000" rotation="0"/> <polygon closed="false" antialias="false" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="12" y1="18.09" y2="18.09"/>
<text x="-8.3" y="-95.21" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" text="B" color="#000000" rotation="0"/> <polygon x4="-9.42" x3="-3.37" antialias="false" x2="-3.37" y3="-71.9" style="line-style:normal;line-weight:thin;filling:gray;color:black" x1="-9.42" y4="-71.9" y1="-79.5" y2="-79.5"/>
<polygon x1="7.37" x2="11.4" x3="11.4" x4="7.37" y1="65.53" y2="65.53" y3="67.53" y4="67.53" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/> <polygon closed="false" antialias="false" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="12" y1="-53.9" y2="-53.9"/>
<text x="12.93" y="-90.35" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" text="G" color="#000000" rotation="0"/> <polygon closed="false" antialias="false" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="12" y1="-45.9" y2="-45.9"/>
<rect x="-3.16" y="-97.32" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" width="5.72" height="2.86" antialias="false"/> <polygon closed="false" antialias="false" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="12" y1="-8.7" y2="-8.7"/>
<rect x="-3.16" y="-88.18" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" width="5.72" height="2.86" antialias="false"/> <circle y="-70.36" diameter="8" x="-10.97" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="-6.74" x2="-2.7" x3="-2.7" x4="-6.74" y1="54.33" y2="54.33" y3="56.32" y4="56.32" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/> <polygon closed="false" antialias="false" x2="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="12" y1="-82.56" y2="-82.56"/>
<rect x="-3.16" y="-92.75" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" width="5.72" height="2.86" antialias="false"/> <polygon x4="0.65" x3="6.69" antialias="false" x2="6.69" y3="36.95" style="line-style:normal;line-weight:thin;filling:gray;color:black" x1="0.65" y4="36.95" y1="29.35" y2="29.35"/>
<polygon x1="7.37" x2="11.4" x3="11.4" x4="7.37" y1="54.33" y2="54.33" y3="56.32" y4="56.32" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/> <polygon x4="-9.36" x3="-3.31" antialias="false" x2="-3.31" y3="36.95" style="line-style:normal;line-weight:thin;filling:gray;color:black" x1="-9.36" y4="36.95" y1="29.35" y2="29.35"/>
<text x="-8.3" y="-99.73" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" text="A" color="#000000" rotation="0"/> <polygon x4="0.7" x3="6.75" antialias="false" x2="6.75" y3="-0.21" style="line-style:normal;line-weight:thin;filling:gray;color:black" x1="0.7" y4="-0.21" y1="-7.81" y2="-7.81"/>
<rect x="-3.16" y="-101.9" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" width="5.72" height="2.86" antialias="false"/> <polygon x4="-9.3" x3="-3.25" antialias="false" x2="-3.25" y3="-0.21" style="line-style:normal;line-weight:thin;filling:gray;color:black" x1="-9.3" y4="-0.21" y1="-7.81" y2="-7.81"/>
<polygon x1="15.43" x2="-8.75" y1="24.51" y2="24.51" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <polygon x4="10.5" x3="12" antialias="false" x2="12" y3="-32.59" style="line-style:normal;line-weight:thin;filling:orange;color:black" x1="10.5" y4="-32.59" y1="-82.59" y2="-82.59"/>
<polygon x1="-8.75" x2="15.43" y1="32.51" y2="32.51" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <polygon closed="false" antialias="false" x2="12" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="10.5" y1="-48.14" y2="-48.14"/>
<polygon x1="-8.75" x2="15.43" y1="-4.48" y2="-4.48" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <rect y="-104.5" rx="0" height="20" ry="0" x="-9" width="18" antialias="false" style="line-style:normal;line-weight:thin;filling:lightgray;color:black"/>
<polygon x1="15.43" x2="-8.75" y1="18.12" y2="18.12" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <rect y="-98.5" rx="0" height="3" ry="0" x="1.45" width="5.72" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="-8.75" x2="15.43" y1="26.11" y2="26.11" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <rect y="-88.5" rx="0" height="3" ry="0" x="1.45" width="5.72" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="-6.16" x2="-0.11" x3="-0.11" x4="-6.16" y1="-79.48" y2="-79.48" y3="-71.87" y4="-71.87" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <rect y="-93.5" rx="0" height="3" ry="0" x="1.45" width="5.72" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="-8.75" x2="9.39" x3="9.39" x4="-8.75" y1="-126.49" y2="-126.49" y3="-116.49" y4="-116.49" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false"/> <rect y="-103.5" rx="0" height="3" ry="0" x="1.45" width="5.72" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="15.43" x2="-8.75" y1="-53.88" y2="-53.88" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <rect y="-98.5" rx="0" height="3" ry="0" x="-6.54" width="5.72" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="15.43" x2="-8.75" y1="-45.88" y2="-45.88" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <rect y="-88.5" rx="0" height="3" ry="0" x="-6.54" width="5.72" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="15.43" x2="-8.75" y1="-8.68" y2="-8.68" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <rect y="-93.5" rx="0" height="3" ry="0" x="-6.54" width="5.72" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="-8.7" x2="15.48" x3="15.48" x4="-8.7" y1="-116.61" y2="-116.61" y3="-104.87" y4="-104.87" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/> <rect y="-103.5" rx="0" height="3" ry="0" x="-6.54" width="5.72" antialias="false" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<polygon x1="-8.7" x2="15.48" x3="15.48" x4="-8.7" y1="-114.61" y2="-114.61" y3="-106.61" y4="-106.61" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false"/> <dynamic_text y="16.93" Halignment="AlignHCenter" keep_visual_rotation="true" text_width="-1" z="69" frame="false" x="-4.06" Valignment="AlignVCenter" text_from="ElementInfo" font="Sans Serif,4,-1,5,25,0,0,0,0,0" uuid="{7e6b9aba-9db0-4037-a375-6029b90c44cb}" rotation="0">
<circle x="-7.72" y="-70.34" style="line-style:normal;line-weight:thin;filling:gray;color:black" diameter="8" antialias="false"/> <text></text>
<text x="-8.06" y="-119.68" font="Sans Serif,2.86,-1,5,50,0,0,0,0,0" text="753-647" color="#000000" rotation="0"/> <info_name>label</info_name>
<polygon x1="3.9" x2="9.95" x3="9.95" x4="3.9" y1="29.37" y2="29.37" y3="36.98" y4="36.98" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> </dynamic_text>
<polygon x1="-6.1" x2="-0.05" x3="-0.05" x4="-6.1" y1="29.37" y2="29.37" y3="36.98" y4="36.98" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <text y="-101" x="-11.7" text="A" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
<polygon x1="3.96" x2="10" x3="10" x4="3.96" y1="-7.79" y2="-7.79" y3="-0.18" y4="-0.18" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <text y="-96" x="-11.7" text="B" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
<polygon x1="-6.05" x2="0" x3="0" x4="-6.05" y1="-7.79" y2="-7.79" y3="-0.18" y4="-0.18" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false"/> <text y="-91" x="-11.7" text="C" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
<polygon x1="13.23" x2="15.37" x3="15.37" x4="13.23" y1="-82.45" y2="-82.45" y3="-32.45" y4="-32.45" style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false"/> <text y="-86" x="-11.7" text="D" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
<polygon x1="13.22" x2="15.38" y1="-48" y2="-48" style="line-style:normal;line-weight:thin;filling:none;color:black" closed="false" antialias="false"/> <text y="-101" x="9.7" text="E" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
<dynamic_text x="-0.8" y="16.96" z="74" font="Sans Serif,4,-1,5,25,0,0,0,0,0" uuid="{7e6b9aba-9db0-4037-a375-6029b90c44cb}" frame="false" rotation="0" text_from="ElementInfo" Halignment="AlignHCenter" Valignment="AlignVCenter" text_width="-1"> <text y="-96" x="9.79" text="F" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
<text/> <text y="-91" x="9.54" text="G" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
<info_name>label</info_name> <text y="-86" x="9.63" text="H" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" color="#000000" rotation="0"/>
</dynamic_text> </description>
</description>
</definition> </definition>

View File

@@ -1,14 +0,0 @@
<qet-directory>
<names>
<name lang="pl">Controller</name>
<name lang="de">Controller</name>
<name lang="el">Controller</name>
<name lang="it">Controller</name>
<name lang="ru">Controller</name>
<name lang="nl">Controller</name>
<name lang="cs">Kontroléry</name>
<name lang="en">Controller</name>
<name lang="fr">Controller</name>
<name lang="da">Controller</name>
</names>
</qet-directory>

View File

@@ -1,225 +0,0 @@
<definition hotspot_y="136" type="element" height="220" link_type="simple" width="130" version="0.90" hotspot_x="67">
<names>
<name lang="en">768-3301</name>
<name lang="fr">768-3301</name>
<name lang="de">768-3301</name>
<name lang="cs">768-3301</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">768-3301</elementInformation>
<elementInformation show="1" name="description">PFC200 ADV 2ETH</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<polygon y49="-88.36" x91="55.78" x31="59.63" x76="59.54" x15="55.27" x85="55.36" y70="-103.34" x49="55.78" y30="-74.82" y48="-88.23" x44="55.77" x11="60" x86="55.78" x53="60" x38="59.63" x62="59.54" x50="55.36" x4="-59.8" y74="-105.29" x6="-58.32" x88="60" x65="55.78" y81="-110.29" y63="-98.35" y69="-103.22" y21="52" x7="54.87" y52="-89.92" y76="-108.22" x89="60" y99="-123.04" y39="-80.26" x14="55.68" x29="55.45" x28="55.87" x40="60" y54="-92.81" y79="-109.75" x100="54.87" x16="55.68" x54="60" y87="-114.85" y24="50.47" y44="-84.77" y4="77.46" x81="60" x95="60" x72="55.78" y32="-75.27" y91="-118.33" y75="-107.8" x60="60" y73="-104.87" y33="-77.96" x3="-59.8" x8="54.9" x9="57.67" y92="-119.04" y41="-83.24" y93="-119.74" y47="-87.81" x75="60" x48="59.54" x92="55.36" y46="-85.31" y94="-119.85" y72="-104.75" x33="60" y45="-84.92" y59="-94.91" y25="50.06" y90="-118.21" y18="68.03" y28="-73.42" x13="59.54" x69="59.54" x25="60" x47="60" y22="51.29" antialias="false" y35="-78.41" y6="78.98" x27="59.63" x22="55.27" y37="-79.82" y15="69.27" x39="60" x66="59.54" y61="-97.8" x82="60" x41="59.53" y53="-90.3" x57="55.36" y96="-128.14" x36="55.46" y43="-84.07" x71="55.36" x55="59.54" x68="60" x80="59.54" y31="-74.93" x70="55.78" y86="-114.74" y100="-131.04" x42="55.77" x12="60" x1="-58.3" x94="59.54" x93="55.78" y71="-104.05" y8="72.76" x97="57.67" y34="-78.29" x67="60" y95="-120.28" y68="-102.8" x58="55.78" x46="60" y82="-112.79" y89="-117.79" x32="60" y40="-82.82" y9="72.76" x73="59.54" y19="52.54" y88="-115.28" x79="55.78" y80="-109.86" y57="-94.06" x26="60" y62="-98.23" x19="60" x17="59.54" x63="55.78" y13="70.1" y77="-108.34" x24="59.54" y83="-113.21" x43="55.35" y51="-89.77" x20="59.54" y20="52.12" y3="-129.85" y78="-109.04" y26="-72.96" y2="-130.78" x96="60" y58="-94.76" x99="54.87" y7="78.94" y56="-93.36" x35="55.88" y5="78.47" y55="-93.23" y67="-100.3" y98="-123.04" x77="55.78" y10="76.06" x37="55.88" y11="76" style="line-style:normal;line-weight:thin;filling:white;color:black" y84="-113.34" y50="-89.06" y38="-79.93" x5="-59.28" y65="-99.76" x23="55.68" y29="-74.12" y64="-99.05" x2="-59.29" y85="-114.04" y42="-83.36" x83="59.54" x56="55.78" x52="59.58" x10="57.7" y60="-95.3" x64="55.36" x98="57.67" y97="-128.14" x87="59.54" x59="59.58" y17="68.46" y16="68.57" x51="55.78" x84="55.78" x90="59.54" x61="60" y27="-73.29" x18="60" y66="-99.87" x78="55.36" x21="55.68" y23="50.58" x30="55.87" x74="60" y14="69.97" x34="59.63" y12="70.52" y36="-79.12" y1="-131.05" x45="59.57"/>
<polygon y2="-113.98" y3="-112.18" y1="-113.98" antialias="false" x2="8.27" x1="9.27" style="line-style:normal;line-weight:thin;filling:red;color:black" x3="8.27" y4="-112.18" x4="9.27"/>
<polygon x9="55.53" x7="55.18" x6="55.13" x3="55.46" x1="59.84" style="line-style:normal;line-weight:thin;filling:none;color:black" y5="-120" y9="-70.98" y2="-120.59" y7="-71.19" antialias="false" y3="-120.54" y10="-70.86" x2="55.72" x4="55.22" y8="-71.05" y6="-71.37" x10="59.84" y1="-120.7" x5="55.13" closed="false" x8="55.3" y4="-120.31"/>
<polygon y2="-128.25" y3="-128.25" y1="-124.23" antialias="false" x2="37.81" x1="37.81" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="53.11" y4="-124.23" x4="53.11"/>
<polygon y2="-28.12" y3="-22.51" y1="-28.12" antialias="false" x2="40.36" x1="37.94" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="40.36" y4="-22.51" x4="37.94"/>
<dynamic_text text_width="-1" uuid="{2e19ff93-c457-4aaa-b375-63485ca14114}" y="-43.64" rotation="0" frame="false" Valignment="AlignVCenter" z="6" x="-42.22" keep_visual_rotation="true" text_from="ElementInfo" font="Sans Serif,3.43,-1,5,25,0,0,0,0,0" Halignment="AlignHCenter">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon y2="-120.54" y3="-71.94" y1="-120.54" antialias="false" x2="47.89" x1="52.1" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="47.89" y4="-71.94" x4="52.1"/>
<polygon y2="-116.78" y3="-114.98" y1="-116.78" antialias="false" x2="8.29" x1="9.29" style="line-style:normal;line-weight:thin;filling:red;color:black" x3="8.29" y4="-114.98" x4="9.29"/>
<polygon y2="-119.52" y3="-117.73" y1="-119.52" antialias="false" x2="8.27" x1="9.27" style="line-style:normal;line-weight:thin;filling:red;color:black" x3="8.27" y4="-117.73" x4="9.27"/>
<polygon y2="-108.37" y3="-106.58" y1="-108.37" antialias="false" x2="8.28" x1="9.28" style="line-style:normal;line-weight:thin;filling:red;color:black" x3="8.28" y4="-106.58" x4="9.28"/>
<polygon y2="-111.18" y3="-109.38" y1="-111.18" antialias="false" x2="8.29" x1="9.29" style="line-style:normal;line-weight:thin;filling:red;color:black" x3="8.29" y4="-109.38" x4="9.29"/>
<polygon y2="-119.52" y3="-117.73" y1="-119.52" antialias="false" x2="48.5" x1="49.5" style="line-style:normal;line-weight:thin;filling:red;color:black" x3="48.5" y4="-117.73" x4="49.5"/>
<polygon y2="-116.78" y3="-114.98" y1="-116.78" antialias="false" x2="9.29" x1="10.28" style="line-style:normal;line-weight:thin;filling:yellow;color:black" x3="9.29" y4="-114.98" x4="10.28"/>
<polygon y2="-105.57" y3="-103.78" y1="-105.57" antialias="false" x2="8.3" x1="9.3" style="line-style:normal;line-weight:thin;filling:red;color:black" x3="8.3" y4="-103.78" x4="9.3"/>
<rect y="-129.62" height="6.63" antialias="false" width="17.55" ry="1.14" style="line-style:normal;line-weight:thin;filling:none;color:black" rx="1.14" x="36.7"/>
<polygon y2="-119.52" y3="-117.73" y1="-119.52" antialias="false" x2="9.27" x1="10.26" style="line-style:normal;line-weight:thin;filling:yellow;color:black" x3="9.27" y4="-117.73" x4="10.26"/>
<polygon y2="-20.12" y3="-14.51" y1="-20.12" antialias="false" x2="40.36" x1="37.94" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="40.36" y4="-14.51" x4="37.94"/>
<text y="-30.49" rotation="270" text="ETHERNET" color="#000000" x="25.87" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<polygon y2="-119.52" y3="-117.73" y1="-119.52" antialias="false" x2="10.26" x1="11.26" style="line-style:normal;line-weight:thin;filling:green;color:black" x3="10.26" y4="-117.73" x4="11.26"/>
<polygon y2="-116.78" y3="-114.98" y1="-116.78" antialias="false" x2="10.28" x1="11.28" style="line-style:normal;line-weight:thin;filling:green;color:black" x3="10.28" y4="-114.98" x4="11.28"/>
<polygon y2="-113.98" y3="-112.18" y1="-113.98" antialias="false" x2="9.27" x1="10.26" style="line-style:normal;line-weight:thin;filling:yellow;color:black" x3="9.27" y4="-112.18" x4="10.26"/>
<polygon y2="-108.37" y3="-106.58" y1="-108.37" antialias="false" x2="9.28" x1="10.27" style="line-style:normal;line-weight:thin;filling:yellow;color:black" x3="9.28" y4="-106.58" x4="10.27"/>
<polygon y2="-12.11" y3="-6.51" y1="-12.11" antialias="false" x2="40.36" x1="37.94" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="40.36" y4="-6.51" x4="37.94"/>
<polygon y2="-119.52" y3="-117.73" y1="-119.52" antialias="false" x2="49.5" x1="50.49" style="line-style:normal;line-weight:thin;filling:yellow;color:black" x3="49.5" y4="-117.73" x4="50.49"/>
<polygon y2="-4.12" y3="1.49" y1="-4.12" antialias="false" x2="40.36" x1="37.94" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="40.36" y4="1.49" x4="37.94"/>
<polygon y2="69.23" y3="37.23" y1="69.23" antialias="false" x2="-53.15" x1="-21.13" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="-53.15" y4="37.23" x4="-21.13"/>
<polygon y2="-105.57" y3="-103.78" y1="-105.57" antialias="false" x2="9.3" x1="10.29" style="line-style:normal;line-weight:thin;filling:yellow;color:black" x3="9.3" y4="-103.78" x4="10.29"/>
<polygon y2="-119.52" y3="-117.73" y1="-119.52" antialias="false" x2="50.49" x1="51.49" style="line-style:normal;line-weight:thin;filling:green;color:black" x3="50.49" y4="-117.73" x4="51.49"/>
<polygon y2="-111.18" y3="-109.38" y1="-111.18" antialias="false" x2="9.29" x1="10.28" style="line-style:normal;line-weight:thin;filling:yellow;color:black" x3="9.29" y4="-109.38" x4="10.28"/>
<polygon y2="-108.37" y3="-106.58" y1="-108.37" antialias="false" x2="10.27" x1="11.27" style="line-style:normal;line-weight:thin;filling:green;color:black" x3="10.27" y4="-106.58" x4="11.27"/>
<polygon y2="-113.98" y3="-112.18" y1="-113.98" antialias="false" x2="10.26" x1="11.26" style="line-style:normal;line-weight:thin;filling:green;color:black" x3="10.26" y4="-112.18" x4="11.26"/>
<polygon y2="-114.94" y3="-116.74" y1="-114.94" antialias="false" x2="51.2" x1="48.79" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="51.2" y4="-116.74" x4="48.79"/>
<polygon y2="3.88" y3="9.48" y1="3.88" antialias="false" x2="40.36" x1="37.94" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="40.36" y4="9.48" x4="37.94"/>
<polygon y2="-112.14" y3="-113.94" y1="-112.14" antialias="false" x2="51.2" x1="48.79" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="51.2" y4="-113.94" x4="48.79"/>
<polygon y2="11.88" y3="17.48" y1="11.88" antialias="false" x2="40.36" x1="37.94" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="40.36" y4="17.48" x4="37.94"/>
<polygon y2="-111.18" y3="-109.38" y1="-111.18" antialias="false" x2="10.28" x1="11.28" style="line-style:normal;line-weight:thin;filling:green;color:black" x3="10.28" y4="-109.38" x4="11.28"/>
<polygon y2="-105.57" y3="-103.78" y1="-105.57" antialias="false" x2="10.29" x1="11.29" style="line-style:normal;line-weight:thin;filling:green;color:black" x3="10.29" y4="-103.78" x4="11.29"/>
<polygon y2="-109.35" y3="-111.14" y1="-109.35" antialias="false" x2="51.2" x1="48.79" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="51.2" y4="-111.14" x4="48.79"/>
<polygon y2="19.88" y3="25.48" y1="19.88" antialias="false" x2="40.36" x1="37.94" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="40.36" y4="25.48" x4="37.94"/>
<polygon y2="-106.55" y3="-108.35" y1="-106.55" antialias="false" x2="51.2" x1="48.79" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="51.2" y4="-108.35" x4="48.79"/>
<polygon y2="64.06" y3="42.06" y1="64.06" antialias="false" x2="-51.03" x1="-31.02" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="-51.03" y4="42.06" x4="-31.02"/>
<polygon y2="27.88" y3="33.48" y1="27.88" antialias="false" x2="40.36" x1="37.94" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="40.36" y4="33.48" x4="37.94"/>
<polygon y2="-103.74" y3="-105.55" y1="-103.74" antialias="false" x2="51.2" x1="48.79" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="51.2" y4="-105.55" x4="48.79"/>
<polygon y2="35.87" y3="41.48" y1="35.87" antialias="false" x2="40.36" x1="37.94" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="40.36" y4="41.48" x4="37.94"/>
<polygon y2="-100.95" y3="-102.74" y1="-100.95" antialias="false" x2="51.2" x1="48.79" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="51.2" y4="-102.74" x4="48.79"/>
<polygon y2="43.87" y3="49.47" y1="43.87" antialias="false" x2="40.36" x1="37.94" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="40.36" y4="49.47" x4="37.94"/>
<polygon y2="51.87" y3="57.47" y1="51.87" antialias="false" x2="40.36" x1="37.94" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="40.36" y4="57.47" x4="37.94"/>
<polygon y2="-98.15" y3="-99.95" y1="-98.15" antialias="false" x2="51.2" x1="48.79" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="51.2" y4="-99.95" x4="48.79"/>
<rect y="-98.81" height="34.02" antialias="false" width="10" ry="5" style="line-style:normal;line-weight:thin;filling:none;color:black" rx="5" x="10.09"/>
<polygon y2="59.87" y3="65.47" y1="59.87" antialias="false" x2="40.36" x1="37.94" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="40.36" y4="65.47" x4="37.94"/>
<polygon y2="-88.98" y3="-89" y1="-88.53" antialias="false" closed="false" x2="57.2" x1="56.11" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.95" y4="-88.49" x4="58.36"/>
<polygon y2="-95.35" y3="-97.15" y1="-95.35" antialias="false" x2="51.2" x1="48.79" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="51.2" y4="-97.15" x4="48.79"/>
<polygon y2="-89.17" y3="-89.16" y1="-89.62" antialias="false" closed="false" x2="57.2" x1="56.11" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.95" y4="-89.66" x4="58.36"/>
<polygon y2="65.47" y3="65.47" y1="-28.21" antialias="false" x2="37.94" x1="37.94" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="40.36" y4="-28.21" x4="40.36"/>
<polygon y2="-92.55" y3="-94.35" y1="-92.55" antialias="false" x2="51.2" x1="48.79" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="51.2" y4="-94.35" x4="48.79"/>
<circle y="-2.6" antialias="false" style="line-style:normal;line-weight:thin;filling:white;color:black" x="21.81" diameter="4"/>
<polygon y2="69.56" y3="69.56" y1="-28.21" antialias="false" x2="36" x1="36" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="42.05" y4="-28.21" x4="42.05"/>
<polygon y2="-89.75" y3="-91.54" y1="-89.75" antialias="false" x2="51.2" x1="48.79" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="51.2" y4="-91.54" x4="48.79"/>
<polygon y2="-86.95" y3="-88.75" y1="-86.95" antialias="false" x2="51.2" x1="48.79" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="51.2" y4="-88.75" x4="48.79"/>
<polygon y2="-83.98" y3="-84" y1="-83.54" antialias="false" closed="false" x2="57.2" x1="56.11" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.95" y4="-83.5" x4="58.36"/>
<polygon y2="62.58" y3="43.88" y1="62.58" antialias="false" x2="-37.02" x1="-31.02" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="-37.02" y4="43.88" x4="-31.02"/>
<polygon y2="-84.15" y3="-85.95" y1="-84.15" antialias="false" x2="51.2" x1="48.79" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="51.2" y4="-85.95" x4="48.79"/>
<polygon y2="-84.18" y3="-84.17" y1="-84.63" antialias="false" closed="false" x2="57.2" x1="56.11" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.95" y4="-84.67" x4="58.36"/>
<polygon y2="-81.35" y3="-83.15" y1="-81.35" antialias="false" x2="51.2" x1="48.79" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="51.2" y4="-83.15" x4="48.79"/>
<polygon y2="56.63" y3="49.83" y1="56.63" antialias="false" x2="-53.14" x1="-48.74" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="-53.14" y4="49.83" x4="-48.74"/>
<polygon y2="-78.55" y3="-80.35" y1="-78.55" antialias="false" x2="51.2" x1="48.79" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="51.2" y4="-80.35" x4="48.79"/>
<polygon y2="-79" y3="-79" y1="-78.54" antialias="false" closed="false" x2="57.2" x1="56.11" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.95" y4="-78.5" x4="58.36"/>
<polygon y2="-75.75" y3="-77.55" y1="-75.75" antialias="false" x2="51.2" x1="48.79" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="51.2" y4="-77.55" x4="48.79"/>
<polygon y2="-125.13" y3="-127.53" y1="-125.13" antialias="false" x2="-12.6" x1="25" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="-12.6" y4="-127.53" x4="25"/>
<polygon y2="-72.95" y3="-74.75" y1="-72.95" antialias="false" x2="51.2" x1="48.79" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="51.2" y4="-74.75" x4="48.79"/>
<polygon y2="-79.18" y3="-79.18" y1="-79.64" antialias="false" closed="false" x2="57.2" x1="56.11" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.95" y4="-79.68" x4="58.36"/>
<rect y="42.05" height="4" antialias="false" width="2" ry="0" style="line-style:normal;line-weight:thin;filling:green;color:black" rx="0" x="-51.02"/>
<polygon y2="-74" y3="-74" y1="-73.55" antialias="false" closed="false" x2="57.2" x1="56.11" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.95" y4="-73.51" x4="58.36"/>
<polygon y2="-125.13" y3="-127.53" y1="-125.13" antialias="false" x2="-12.6" x1="-7" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="-12.6" y4="-127.53" x4="-7"/>
<polygon y2="-74.19" y3="-74.18" y1="-74.64" antialias="false" closed="false" x2="57.2" x1="56.11" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.95" y4="-74.68" x4="58.36"/>
<rect y="60.06" height="4" antialias="false" width="2" ry="0" style="line-style:normal;line-weight:thin;filling:yellow;color:black" rx="0" x="-51.07"/>
<polygon y2="-125.13" y3="-127.53" y1="-125.13" antialias="false" x2="-4.6" x1="1" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="-4.6" y4="-127.53" x4="1"/>
<polygon y2="-125.13" y3="-127.53" y1="-125.13" antialias="false" x2="3.4" x1="9" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="3.4" y4="-127.53" x4="9"/>
<polygon y2="-125.13" y3="-127.53" y1="-125.13" antialias="false" x2="11.41" x1="17" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="11.41" y4="-127.53" x4="17"/>
<polygon y2="-125.13" y3="-127.53" y1="-125.13" antialias="false" x2="19.41" x1="25" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="19.41" y4="-127.53" x4="25"/>
<polygon y2="-67.87" y1="-67.87" antialias="false" closed="false" x2="52.12" x1="22.67" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="78.84" y1="-131.07" antialias="false" closed="false" x2="-58.34" x1="-58.34" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="78.84" y1="-131.07" antialias="false" closed="false" x2="-18.32" x1="-18.32" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="77.44" y1="77.44" antialias="false" closed="false" x2="-18.52" x1="-59.74" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="-129.87" y1="-129.87" antialias="false" closed="false" x2="-59.74" x1="35.95" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="-4.66" y1="-4.66" antialias="false" closed="false" x2="-18.72" x1="-59.74" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="76.78" y3="77.96" y1="76.74" antialias="false" closed="false" x2="3.27" x1="2" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="4.38" y4="78.82" x4="4.38"/>
<polygon y2="77.82" y3="76.83" y1="78.82" antialias="false" closed="false" x2="-12.2" x1="-12.2" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="-11.26" y4="76.74" x4="-9.81"/>
<polygon y2="76.74" y1="76.74" antialias="false" closed="false" x2="2" x1="-9.81" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="69.61" y1="69.61" antialias="false" closed="false" x2="36" x1="-18.31" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="-65.1" y3="-62.86" y1="-67.86" antialias="false" closed="false" x2="-4.61" x1="-4.61" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="-2.37" y4="-62.86" x4="0.39"/>
<polygon y2="-62.86" y3="-65.1" y1="-62.86" antialias="false" closed="false" x2="20.36" x1="17.6" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="22.6" y4="-67.86" x4="22.6"/>
<polygon y2="-62.86" y1="-62.86" antialias="false" closed="false" x2="17.6" x1="0.39" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="-104.17" y1="-67.86" antialias="false" closed="false" x2="-4.61" x1="-4.61" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="-104.17" y3="-104.17" y1="-67.86" antialias="false" closed="false" x2="22.6" x1="22.6" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="36"/>
<polygon y2="-104.17" y1="-104.17" antialias="false" closed="false" x2="-4.61" x1="-18.22" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="-120.57" y3="-120.57" y1="-102.77" antialias="false" x2="7.19" x1="7.19" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="12.4" y4="-102.77" x4="12.4"/>
<polygon y2="-123.47" y1="-123.47" antialias="false" closed="false" x2="26.7" x1="-13.91" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="-123.61" y1="-131.07" antialias="false" closed="false" x2="-13.81" x1="-13.81" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="-123.47" y1="-131.07" antialias="false" closed="false" x2="26.7" x1="26.7" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="-124.39" y1="-124.39" antialias="false" closed="false" x2="-12.61" x1="25" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="-124.39" y1="-128.34" antialias="false" closed="false" x2="25" x1="25" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="-128.34" y1="-124.39" antialias="false" closed="false" x2="-12.61" x1="-12.61" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="-128.34" y1="-128.34" antialias="false" closed="false" x2="-12.61" x1="25" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="-67.86" y1="-67.86" antialias="false" closed="false" x2="-4.61" x1="-18.29" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="73.19" y3="49.19" y1="73.19" antialias="false" x2="3.61" x1="23.61" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="3.61" y4="49.19" x4="23.61"/>
<polygon y2="69.2" y3="53.2" y1="69.2" antialias="false" x2="12.81" x1="16.81" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="12.81" y4="53.2" x4="16.81"/>
<polygon y2="65.09" y3="57.09" y1="65.09" antialias="false" x2="13.61" x1="15.61" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="13.61" y4="57.09" x4="15.61"/>
<polygon y2="32.24" y3="0.24" y1="32.24" antialias="false" x2="-53.15" x1="-21.13" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="-53.15" y4="0.24" x4="-21.13"/>
<polygon y2="27.07" y3="5.07" y1="27.07" antialias="false" x2="-51.03" x1="-31.02" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="-51.03" y4="5.07" x4="-31.02"/>
<polygon y2="25.59" y3="6.89" y1="25.59" antialias="false" x2="-37.03" x1="-31.02" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="-37.03" y4="6.89" x4="-31.02"/>
<polygon y2="19.64" y3="12.84" y1="19.64" antialias="false" x2="-53.14" x1="-48.74" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="-53.14" y4="12.84" x4="-48.74"/>
<polygon y2="-131.06" y1="78.88" antialias="false" closed="false" x2="36.02" x1="36.02" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="-17" y3="-59" y1="-17" antialias="false" x2="-2.88" x1="17.13" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="-2.88" y4="-59" x4="17.13"/>
<polygon y2="-54.39" y3="-57.19" y1="-54.39" antialias="false" x2="-1.27" x1="2.73" style="line-style:normal;line-weight:thin;filling:white;color:black" x3="-1.27" y4="-57.19" x4="2.73"/>
<polygon y2="-54.39" y3="-57.19" y1="-54.39" antialias="false" x2="2.65" x1="6.65" style="line-style:normal;line-weight:thin;filling:black;color:black" x3="2.65" y4="-57.19" x4="6.65"/>
<polygon y2="-49.38" y3="-52.18" y1="-49.38" antialias="false" x2="-1.27" x1="2.73" style="line-style:normal;line-weight:thin;filling:white;color:black" x3="-1.27" y4="-52.18" x4="2.73"/>
<polygon y2="-49.38" y3="-52.18" y1="-49.38" antialias="false" x2="2.65" x1="6.65" style="line-style:normal;line-weight:thin;filling:black;color:black" x3="2.65" y4="-52.18" x4="6.65"/>
<polygon y2="-44.39" y3="-47.19" y1="-44.39" antialias="false" x2="-1.27" x1="2.73" style="line-style:normal;line-weight:thin;filling:white;color:black" x3="-1.27" y4="-47.19" x4="2.73"/>
<polygon y2="-44.39" y3="-47.19" y1="-44.39" antialias="false" x2="2.65" x1="6.65" style="line-style:normal;line-weight:thin;filling:black;color:black" x3="2.65" y4="-47.19" x4="6.65"/>
<polygon y2="-39.38" y3="-42.18" y1="-39.38" antialias="false" x2="-1.27" x1="2.73" style="line-style:normal;line-weight:thin;filling:white;color:black" x3="-1.27" y4="-42.18" x4="2.73"/>
<polygon y2="-39.38" y3="-42.18" y1="-39.38" antialias="false" x2="2.65" x1="6.65" style="line-style:normal;line-weight:thin;filling:black;color:black" x3="2.65" y4="-42.18" x4="6.65"/>
<polygon y2="-34.39" y3="-37.19" y1="-34.39" antialias="false" x2="-1.27" x1="2.73" style="line-style:normal;line-weight:thin;filling:white;color:black" x3="-1.27" y4="-37.19" x4="2.73"/>
<polygon y2="-34.39" y3="-37.19" y1="-34.39" antialias="false" x2="2.65" x1="6.65" style="line-style:normal;line-weight:thin;filling:black;color:black" x3="2.65" y4="-37.19" x4="6.65"/>
<polygon y2="-29.38" y3="-32.19" y1="-29.38" antialias="false" x2="-1.27" x1="2.73" style="line-style:normal;line-weight:thin;filling:white;color:black" x3="-1.27" y4="-32.19" x4="2.73"/>
<polygon y2="-29.38" y3="-32.19" y1="-29.38" antialias="false" x2="2.65" x1="6.65" style="line-style:normal;line-weight:thin;filling:black;color:black" x3="2.65" y4="-32.19" x4="6.65"/>
<polygon y2="-24.39" y3="-27.19" y1="-24.39" antialias="false" x2="-1.27" x1="2.73" style="line-style:normal;line-weight:thin;filling:white;color:black" x3="-1.27" y4="-27.19" x4="2.73"/>
<polygon y2="-24.39" y3="-27.19" y1="-24.39" antialias="false" x2="2.65" x1="6.65" style="line-style:normal;line-weight:thin;filling:black;color:black" x3="2.65" y4="-27.19" x4="6.65"/>
<polygon y2="-19.39" y3="-22.19" y1="-19.39" antialias="false" x2="-1.27" x1="2.73" style="line-style:normal;line-weight:thin;filling:white;color:black" x3="-1.27" y4="-22.19" x4="2.73"/>
<polygon y2="-19.39" y3="-22.19" y1="-19.39" antialias="false" x2="2.65" x1="6.65" style="line-style:normal;line-weight:thin;filling:black;color:black" x3="2.65" y4="-22.19" x4="6.65"/>
<polygon y2="-15.03" y3="-43.83" y1="-15.03" antialias="false" x2="-64.24" x1="-59.84" style="line-style:normal;line-weight:thin;filling:orange;color:black" x3="-64.24" y4="-43.83" x4="-59.84"/>
<polygon y2="-66.53" y1="-66.53" antialias="false" closed="false" x2="59.94" x1="52.12" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="-66.53" y1="-123.03" antialias="false" closed="false" x2="52.12" x1="52.12" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="72.67" y1="-34.93" antialias="false" closed="false" x2="52.12" x1="52.12" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="-35.66" y1="-35.66" antialias="false" closed="false" x2="59.93" x1="35.93" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="-31.53" y3="-35.53" y1="-31.53" antialias="false" x2="39.14" x1="56.75" style="line-style:normal;line-weight:thin;filling:orange;color:black" x3="39.14" y4="-35.53" x4="56.75"/>
<polygon y2="67.27" y1="67.27" antialias="false" closed="false" x2="36.09" x1="60" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="69.61" y1="69.61" antialias="false" closed="false" x2="36.02" x1="42.09" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="78.89" y1="69.61" antialias="false" closed="false" x2="42.12" x1="42.12" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<polygon y2="72.74" y3="78.86" y1="72.73" antialias="false" closed="false" x2="52.04" x1="54.83" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="52.03"/>
<polygon y2="-118.97" y3="-118.98" y1="-118.52" antialias="false" closed="false" x2="57.16" x1="56.07" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.91" y4="-118.48" x4="58.32"/>
<polygon y2="-119.17" y3="-119.16" y1="-119.61" antialias="false" closed="false" x2="57.16" x1="56.07" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.91" y4="-119.65" x4="58.32"/>
<polygon y2="-113.98" y3="-114" y1="-113.53" antialias="false" closed="false" x2="57.16" x1="56.07" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.91" y4="-113.49" x4="58.32"/>
<polygon y2="-114.17" y3="-114.16" y1="-114.62" antialias="false" closed="false" x2="57.16" x1="56.07" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.91" y4="-114.66" x4="58.32"/>
<polygon y2="-108.98" y3="-109" y1="-108.54" antialias="false" closed="false" x2="57.16" x1="56.07" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.91" y4="-108.5" x4="58.32"/>
<polygon y2="-109.18" y3="-109.17" y1="-109.63" antialias="false" closed="false" x2="57.16" x1="56.07" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.91" y4="-109.67" x4="58.32"/>
<polygon y2="-104" y3="-104" y1="-103.54" antialias="false" closed="false" x2="57.16" x1="56.07" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.91" y4="-103.5" x4="58.32"/>
<polygon y2="-104.18" y3="-104.17" y1="-104.63" antialias="false" closed="false" x2="57.16" x1="56.07" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.91" y4="-104.67" x4="58.32"/>
<polygon y2="-99" y3="-99" y1="-98.54" antialias="false" closed="false" x2="57.16" x1="56.07" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.91" y4="-98.5" x4="58.32"/>
<polygon y2="-99.18" y3="-99.18" y1="-99.63" antialias="false" closed="false" x2="57.16" x1="56.07" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.91" y4="-99.67" x4="58.32"/>
<polygon y2="-94" y3="-94" y1="-93.55" antialias="false" closed="false" x2="57.16" x1="56.07" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.91" y4="-93.51" x4="58.32"/>
<polygon y2="-94.19" y3="-94.18" y1="-94.64" antialias="false" closed="false" x2="57.16" x1="56.07" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.91" y4="-94.68" x4="58.32"/>
<polygon y2="51.36" y3="51.35" y1="51.81" antialias="false" closed="false" x2="57.16" x1="56.07" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.91" y4="51.85" x4="58.32"/>
<polygon y2="51.17" y3="51.18" y1="50.72" antialias="false" closed="false" x2="57.16" x1="56.07" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.91" y4="50.68" x4="58.32"/>
<polygon y2="69.37" y3="69.36" y1="69.82" antialias="false" closed="false" x2="57.16" x1="56.07" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.91" y4="69.86" x4="58.32"/>
<polygon y2="69.18" y3="69.19" y1="68.73" antialias="false" closed="false" x2="57.16" x1="56.07" style="line-style:normal;line-weight:thin;filling:none;color:black" x3="57.91" y4="68.69" x4="58.32"/>
<polygon x9="55.63" x7="51.3" x6="50.14" x3="53.31" x1="57.63" y12="-20.55" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y5="-20.55" y9="-26.03" y2="-17.38" x12="58.79" y7="-24.87" antialias="false" y3="-17.38" y10="-24.87" x2="55.63" x4="51.3" x11="58.79" y8="-26.03" y6="-22.86" x10="57.63" y1="-18.53" x5="50.14" x8="53.31" y4="-18.53" y11="-22.86"/>
<polygon x9="48.84" x7="48.42" x6="48.84" x3="57.16" x1="57.58" y12="-23.85" style="line-style:normal;line-weight:thin;filling:gray;color:black" y5="-19.09" y9="-23.85" y2="-20.55" x12="57.16" y7="-20.55" antialias="false" y3="-19.52" y10="-24.27" x2="57.58" x4="56.12" x11="56.12" y8="-22.82" y6="-19.52" x10="49.88" y1="-22.82" x5="49.88" x8="48.42" y4="-19.09" y11="-24.27"/>
<polygon x9="44.77" x7="43.39" x6="43.02" x3="44.03" x1="45.41" y12="-19.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y5="-19.14" y9="-20.88" y2="-18.13" x12="45.78" y7="-20.51" antialias="false" y3="-18.13" y10="-20.51" x2="44.77" x4="43.39" x11="45.78" y8="-20.88" y6="-19.88" x10="45.41" y1="-18.5" x5="43.02" x8="44.03" y4="-18.5" y11="-19.88"/>
<polygon x9="46.66" x7="49.12" x6="50.16" x3="50.16" x1="47.69" y12="-25.85" style="line-style:normal;line-weight:thin;filling:orange;color:black" y5="-18.57" y9="-17.54" y2="-26.27" x12="46.66" y7="-17.11" antialias="false" y3="-25.85" y10="-18.57" x2="49.12" x4="50.58" x11="46.23" y8="-17.11" y6="-17.54" x10="46.23" y1="-26.27" x5="50.58" x8="47.69" y4="-24.82" y11="-24.82"/>
<polygon x9="55.63" x7="51.3" x6="50.14" x3="53.31" x1="57.63" y12="-4.53" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y5="-4.53" y9="-10.02" y2="-1.37" x12="58.79" y7="-8.86" antialias="false" y3="-1.37" y10="-8.86" x2="55.63" x4="51.3" x11="58.79" y8="-10.02" y6="-6.85" x10="57.63" y1="-2.53" x5="50.14" x8="53.31" y4="-2.53" y11="-6.85"/>
<polygon x9="48.84" x7="48.42" x6="48.84" x3="57.16" x1="57.58" y12="-7.84" style="line-style:normal;line-weight:thin;filling:gray;color:black" y5="-3.09" y9="-7.84" y2="-4.54" x12="57.16" y7="-4.54" antialias="false" y3="-3.52" y10="-8.27" x2="57.58" x4="56.12" x11="56.12" y8="-6.81" y6="-3.52" x10="49.88" y1="-6.81" x5="49.88" x8="48.42" y4="-3.09" y11="-8.27"/>
<polygon x9="44.77" x7="43.39" x6="43.02" x3="44.03" x1="45.41" y12="-3.13" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y5="-3.13" y9="-4.88" y2="-2.12" x12="45.78" y7="-4.5" antialias="false" y3="-2.12" y10="-4.5" x2="44.77" x4="43.39" x11="45.78" y8="-4.88" y6="-3.87" x10="45.41" y1="-2.49" x5="43.02" x8="44.03" y4="-2.49" y11="-3.87"/>
<polygon x9="46.66" x7="49.12" x6="50.16" x3="50.16" x1="47.69" y12="-9.84" style="line-style:normal;line-weight:thin;filling:orange;color:black" y5="-2.56" y9="-1.53" y2="-10.27" x12="46.66" y7="-1.1" antialias="false" y3="-9.84" y10="-2.56" x2="49.12" x4="50.58" x11="46.23" y8="-1.1" y6="-1.53" x10="46.23" y1="-10.27" x5="50.58" x8="47.69" y4="-8.81" y11="-8.81"/>
<polygon x9="55.63" x7="51.3" x6="50.14" x3="53.31" x1="57.63" y12="11.47" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y5="11.47" y9="6" y2="14.64" x12="58.79" y7="7.15" antialias="false" y3="14.64" y10="7.15" x2="55.63" x4="51.3" x11="58.79" y8="6" y6="9.15" x10="57.63" y1="13.48" x5="50.14" x8="53.31" y4="13.48" y11="9.15"/>
<polygon x9="48.84" x7="48.42" x6="48.84" x3="57.16" x1="57.58" y12="8.16" style="line-style:normal;line-weight:thin;filling:gray;color:black" y5="12.92" y9="8.16" y2="11.46" x12="57.16" y7="11.46" antialias="false" y3="12.49" y10="7.74" x2="57.58" x4="56.12" x11="56.12" y8="9.2" y6="12.49" x10="49.88" y1="9.2" x5="49.88" x8="48.42" y4="12.92" y11="7.74"/>
<polygon x9="44.77" x7="43.39" x6="43.02" x3="44.03" x1="45.41" y12="12.87" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y5="12.87" y9="11.13" y2="13.89" x12="45.78" y7="11.5" antialias="false" y3="13.89" y10="11.5" x2="44.77" x4="43.39" x11="45.78" y8="11.13" y6="12.14" x10="45.41" y1="13.51" x5="43.02" x8="44.03" y4="13.51" y11="12.14"/>
<polygon x9="46.66" x7="49.12" x6="50.16" x3="50.16" x1="47.69" y12="6.16" style="line-style:normal;line-weight:thin;filling:orange;color:black" y5="13.45" y9="14.48" y2="5.74" x12="46.66" y7="14.9" antialias="false" y3="6.16" y10="13.45" x2="49.12" x4="50.58" x11="46.23" y8="14.9" y6="14.48" x10="46.23" y1="5.74" x5="50.58" x8="47.69" y4="7.2" y11="7.2"/>
<polygon x9="55.63" x7="51.3" x6="50.14" x3="53.31" x1="57.63" y12="27.48" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y5="27.48" y9="22" y2="30.64" x12="58.79" y7="23.15" antialias="false" y3="30.64" y10="23.15" x2="55.63" x4="51.3" x11="58.79" y8="22" y6="25.16" x10="57.63" y1="29.49" x5="50.14" x8="53.31" y4="29.49" y11="25.16"/>
<polygon x9="48.84" x7="48.42" x6="48.84" x3="57.16" x1="57.58" y12="24.17" style="line-style:normal;line-weight:thin;filling:gray;color:black" y5="28.93" y9="24.17" y2="27.47" x12="57.16" y7="27.47" antialias="false" y3="28.5" y10="23.75" x2="57.58" x4="56.12" x11="56.12" y8="25.21" y6="28.5" x10="49.88" y1="25.21" x5="49.88" x8="48.42" y4="28.93" y11="23.75"/>
<polygon x9="44.77" x7="43.39" x6="43.02" x3="44.03" x1="45.41" y12="28.89" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y5="28.89" y9="27.14" y2="29.89" x12="45.78" y7="27.51" antialias="false" y3="29.89" y10="27.51" x2="44.77" x4="43.39" x11="45.78" y8="27.14" y6="28.15" x10="45.41" y1="29.52" x5="43.02" x8="44.03" y4="29.52" y11="28.15"/>
<polygon x9="46.66" x7="49.12" x6="50.16" x3="50.16" x1="47.69" y12="22.17" style="line-style:normal;line-weight:thin;filling:orange;color:black" y5="29.45" y9="30.48" y2="21.75" x12="46.66" y7="30.91" antialias="false" y3="22.17" y10="29.45" x2="49.12" x4="50.58" x11="46.23" y8="30.91" y6="30.48" x10="46.23" y1="21.75" x5="50.58" x8="47.69" y4="23.2" y11="23.2"/>
<polygon x9="55.63" x7="51.3" x6="50.14" x3="53.31" x1="57.63" y12="43.49" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y5="43.49" y9="38" y2="46.65" x12="58.79" y7="39.16" antialias="false" y3="46.65" y10="39.16" x2="55.63" x4="51.3" x11="58.79" y8="38" y6="41.17" x10="57.63" y1="45.5" x5="50.14" x8="53.31" y4="45.5" y11="41.17"/>
<polygon x9="48.84" x7="48.42" x6="48.84" x3="57.16" x1="57.58" y12="40.18" style="line-style:normal;line-weight:thin;filling:gray;color:black" y5="44.93" y9="40.18" y2="43.48" x12="57.16" y7="43.48" antialias="false" y3="44.51" y10="39.76" x2="57.58" x4="56.12" x11="56.12" y8="41.21" y6="44.51" x10="49.88" y1="41.21" x5="49.88" x8="48.42" y4="44.93" y11="39.76"/>
<polygon x9="44.77" x7="43.39" x6="43.02" x3="44.03" x1="45.41" y12="44.89" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y5="44.89" y9="43.15" y2="45.9" x12="45.78" y7="43.52" antialias="false" y3="45.9" y10="43.52" x2="44.77" x4="43.39" x11="45.78" y8="43.15" y6="44.16" x10="45.41" y1="45.53" x5="43.02" x8="44.03" y4="45.53" y11="44.16"/>
<polygon x9="46.66" x7="49.12" x6="50.16" x3="50.16" x1="47.69" y12="38.18" style="line-style:normal;line-weight:thin;filling:orange;color:black" y5="45.46" y9="46.49" y2="37.75" x12="46.66" y7="46.92" antialias="false" y3="38.18" y10="45.46" x2="49.12" x4="50.58" x11="46.23" y8="46.92" y6="46.49" x10="46.23" y1="37.75" x5="50.58" x8="47.69" y4="39.21" y11="39.21"/>
<polygon x9="55.63" x7="51.3" x6="50.14" x3="53.31" x1="57.63" y12="61.35" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y5="61.35" y9="55.87" y2="64.52" x12="58.79" y7="57.03" antialias="false" y3="64.52" y10="57.03" x2="55.63" x4="51.3" x11="58.79" y8="55.87" y6="59.04" x10="57.63" y1="63.36" x5="50.14" x8="53.31" y4="63.36" y11="59.04"/>
<polygon x9="48.84" x7="48.42" x6="48.84" x3="57.16" x1="57.58" y12="58.05" style="line-style:normal;line-weight:thin;filling:gray;color:black" y5="62.81" y9="58.05" y2="61.35" x12="57.16" y7="61.35" antialias="false" y3="62.38" y10="57.62" x2="57.58" x4="56.12" x11="56.12" y8="59.08" y6="62.38" x10="49.88" y1="59.08" x5="49.88" x8="48.42" y4="62.81" y11="57.62"/>
<polygon x9="44.77" x7="43.39" x6="43.02" x3="44.03" x1="45.41" y12="62.76" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y5="62.76" y9="61.02" y2="63.77" x12="45.78" y7="61.38" antialias="false" y3="63.77" y10="61.38" x2="44.77" x4="43.39" x11="45.78" y8="61.02" y6="62.02" x10="45.41" y1="63.4" x5="43.02" x8="44.03" y4="63.4" y11="62.02"/>
<polygon x9="46.66" x7="49.12" x6="50.16" x3="50.16" x1="47.69" y12="56.05" style="line-style:normal;line-weight:thin;filling:orange;color:black" y5="63.33" y9="64.36" y2="55.62" x12="46.66" y7="64.78" antialias="false" y3="56.05" y10="63.33" x2="49.12" x4="50.58" x11="46.23" y8="64.78" y6="64.36" x10="46.23" y1="55.62" x5="50.58" x8="47.69" y4="57.08" y11="57.08"/>
<rect y="-94.29" height="24.58" antialias="false" width="8.58" ry="4" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" rx="4" x="10.83"/>
<polygon y2="-81.85" y1="-81.85" antialias="false" closed="false" x2="11.66" x1="18.55" style="line-style:normal;line-weight:normal;filling:lightgray;color:black"/>
<polygon y2="-83.11" y1="-83.11" antialias="false" closed="false" x2="12.14" x1="18.08" style="line-style:normal;line-weight:thin;filling:lightgray;color:black"/>
<polygon y2="-84.36" y1="-84.36" antialias="false" closed="false" x2="12.14" x1="18.08" style="line-style:normal;line-weight:thin;filling:lightgray;color:black"/>
<polygon y2="-85.62" y1="-85.62" antialias="false" closed="false" x2="12.14" x1="18.08" style="line-style:normal;line-weight:thin;filling:lightgray;color:black"/>
<polygon y2="-86.89" y1="-86.89" antialias="false" closed="false" x2="12.14" x1="18.08" style="line-style:normal;line-weight:thin;filling:lightgray;color:black"/>
<polygon y2="-88.14" y1="-88.14" antialias="false" closed="false" x2="12.14" x1="18.08" style="line-style:normal;line-weight:thin;filling:lightgray;color:black"/>
<polygon y2="-75.55" y1="-75.55" antialias="false" closed="false" x2="12.14" x1="18.08" style="line-style:normal;line-weight:thin;filling:lightgray;color:black"/>
<polygon y2="-76.81" y1="-76.81" antialias="false" closed="false" x2="12.14" x1="18.08" style="line-style:normal;line-weight:thin;filling:lightgray;color:black"/>
<polygon y2="-78.06" y1="-78.06" antialias="false" closed="false" x2="12.14" x1="18.08" style="line-style:normal;line-weight:thin;filling:lightgray;color:black"/>
<polygon y2="-79.32" y1="-79.32" antialias="false" closed="false" x2="12.14" x1="18.08" style="line-style:normal;line-weight:thin;filling:lightgray;color:black"/>
<polygon y2="-80.58" y1="-80.58" antialias="false" closed="false" x2="12.14" x1="18.08" style="line-style:normal;line-weight:thin;filling:lightgray;color:black"/>
<rect y="5.07" height="4" antialias="false" width="2" ry="0" style="line-style:normal;line-weight:thin;filling:green;color:black" rx="0" x="-51.02"/>
<rect y="23.07" height="4" antialias="false" width="2" ry="0" style="line-style:normal;line-weight:thin;filling:yellow;color:black" rx="0" x="-51.08"/>
<text y="-30.49" rotation="270" text="768-3301" color="#000000" x="32.67" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<text y="-22.49" rotation="0" text="1" color="#000000" x="43.54" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<text y="-6.48" rotation="0" text="2" color="#000000" x="43.54" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<text y="9.52" rotation="0" text="3" color="#000000" x="43.54" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<text y="25.53" rotation="0" text="4" color="#000000" x="43.54" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<text y="41.54" rotation="0" text="5" color="#000000" x="43.54" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<circle y="11.64" antialias="false" style="line-style:normal;line-weight:thin;filling:white;color:black" x="5.86" diameter="20.58"/>
<text y="59.26" rotation="0" text="6" color="#000000" x="43.54" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<polygon y2="13.73" y3="15.97" x6="26.03" y7="27.88" y1="30.12" antialias="false" x2="22.33" y6="25.06" x1="22.33" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x3="24.59" y4="18.8" x5="26.52" x7="24.59" y5="21.93" x4="26.03"/>
<polygon y2="33.91" y3="9.91" y1="33.91" antialias="false" x2="14.21" x1="18.21" style="line-style:normal;line-weight:thin;filling:gray;color:black" x3="14.21" y4="9.91" x4="18.21"/>
</description>
</definition>

View File

@@ -1,14 +0,0 @@
<qet-directory>
<names>
<name lang="pl">Coupler</name>
<name lang="de">Koppler</name>
<name lang="el">Coupler</name>
<name lang="it">Coupler</name>
<name lang="ru">Coupler</name>
<name lang="nl">Coupler</name>
<name lang="cs">Komunikační modul</name>
<name lang="en">Coupler</name>
<name lang="fr">Coupleur</name>
<name lang="da">Coupler</name>
</names>
</qet-directory>

View File

@@ -1,243 +0,0 @@
<definition height="220" link_type="simple" hotspot_x="67" version="0.90" type="element" hotspot_y="136" width="130">
<names>
<name lang="cs">768-2201</name>
<name lang="en">768-2201</name>
<name lang="fr">768-2201</name>
<name lang="de">768-2201</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">768-2201</elementInformation>
<elementInformation show="1" name="description">FC ADV ETHERCAT</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<polygon y20="52.12" y51="-89.77" y48="-88.23" x97="57.67" x37="55.88" y71="-104.05" y58="-94.76" x16="55.68" y77="-108.34" y4="77.46" x22="55.27" y30="-74.82" y38="-79.93" x8="54.9" y75="-107.8" y44="-84.77" x6="-58.32" x42="55.77" y86="-114.74" x52="59.58" x13="59.54" y79="-109.75" x96="60" x87="59.54" y91="-118.33" y12="70.52" x24="59.54" y60="-95.3" y26="-72.96" x7="54.87" y23="50.58" y11="76" x36="55.46" x84="55.78" x67="60" x23="55.68" x51="55.78" y68="-102.8" x19="60" y53="-90.3" x47="60" y73="-104.87" y74="-105.29" x43="55.35" y65="-99.76" x65="55.78" y22="51.29" y6="78.98" x34="59.63" x95="60" style="line-style:normal;line-weight:thin;filling:white;color:black" x45="59.57" x73="59.54" y61="-97.8" y24="50.47" y55="-93.23" x11="60" x74="60" x90="59.54" x39="60" y80="-109.86" x33="60" x40="60" x92="55.36" y49="-88.36" x78="55.36" x27="59.63" y98="-123.04" x54="60" x3="-59.8" x79="55.78" y15="69.27" y72="-104.75" x83="59.54" x100="54.87" x81="60" x68="60" y64="-99.05" y28="-73.42" x49="55.78" x55="59.54" y87="-114.85" x80="59.54" y89="-117.79" y8="72.76" x31="59.63" y17="68.46" y18="68.03" x56="55.78" y25="50.06" x18="60" y27="-73.29" x38="59.63" x9="57.67" x88="60" y52="-89.92" y16="68.57" x94="59.54" y62="-98.23" y13="70.1" x69="59.54" y10="76.06" x70="55.78" y63="-98.35" y90="-118.21" x41="59.53" x71="55.36" y45="-84.92" y43="-84.07" x30="55.87" y96="-128.14" x35="55.88" y3="-129.85" y54="-92.81" x15="55.27" y67="-100.3" y69="-103.22" y19="52.54" x60="60" y37="-79.82" x17="59.54" y70="-103.34" y81="-110.29" y2="-130.78" x2="-59.29" y56="-93.36" x29="55.45" y93="-119.74" x26="60" y85="-114.04" y31="-74.93" x14="55.68" x44="55.77" y83="-113.21" y46="-85.31" x28="55.87" y50="-89.06" x61="60" y32="-75.27" y99="-123.04" y57="-94.06" x91="55.78" x64="55.36" x25="60" y7="78.98" x32="60" y36="-79.12" x46="60" y34="-78.29" x10="57.7" x58="55.78" x1="-58.3" x57="55.36" x85="55.36" x50="55.36" y94="-119.85" x99="54.87" x82="60" y82="-112.79" y21="52" y41="-83.24" x76="59.54" antialias="false" x63="55.78" x93="55.78" x66="59.54" x5="-59.28" x77="55.78" x4="-59.8" y42="-83.36" x62="59.54" x72="55.78" y88="-115.28" y76="-108.22" x98="57.67" x86="55.78" y97="-128.14" x53="60" x21="55.68" y59="-94.91" x59="59.58" y39="-80.26" y29="-74.12" y78="-109.04" x89="60" y9="72.76" y47="-87.81" y66="-99.87" y33="-77.96" x12="60" x48="59.54" x75="60" y92="-119.04" y1="-131.05" x20="59.54" y35="-78.41" y84="-113.34" y100="-131.04" y5="78.47" y14="70" y95="-120.28" y40="-82.82"/>
<polygon y5="-120" y7="-71.18" x10="59.79" x6="55.09" x9="55.48" y3="-120.53" x3="55.42" y9="-70.97" style="line-style:normal;line-weight:thin;filling:none;color:black" y10="-70.86" x1="59.79" x4="55.17" y1="-120.7" closed="false" x2="55.67" antialias="false" y4="-120.3" y8="-71.05" x8="55.25" y6="-71.37" x7="55.14" y2="-120.59" x5="55.09"/>
<polygon x3="8.28" x2="8.28" y3="-112.19" style="line-style:normal;line-weight:thin;filling:red;color:black" y1="-113.98" y4="-112.19" y2="-113.98" antialias="false" x1="9.28" x4="9.28"/>
<polygon x3="40.47" x2="40.47" y3="-22.56" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="-28.17" y4="-22.56" y2="-28.17" antialias="false" x1="38.05" x4="38.05"/>
<polygon x3="40.47" x2="40.47" y3="-14.57" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="-20.17" y4="-14.57" y2="-20.17" antialias="false" x1="38.05" x4="38.05"/>
<text rotation="90" y="-32.78" color="#000000" x="11.03" text="0" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<polygon x3="8.3" x2="8.3" y3="-114.98" style="line-style:normal;line-weight:thin;filling:red;color:black" y1="-116.78" y4="-114.98" y2="-116.78" antialias="false" x1="9.3" x4="9.3"/>
<polygon x3="53.06" x2="37.76" y3="-128.25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-124.23" y4="-124.23" y2="-128.25" antialias="false" x1="37.76" x4="53.06"/>
<polygon x3="40.47" x2="40.47" y3="-6.57" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="-12.17" y4="-6.57" y2="-12.17" antialias="false" x1="38.05" x4="38.05"/>
<polygon x3="47.84" x2="47.84" y3="-71.94" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="-120.54" y4="-71.94" y2="-120.54" antialias="false" x1="52.05" x4="52.05"/>
<text rotation="270" y="-31.64" color="#000000" x="26.38" text="ETHERCAT" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<polygon x3="8.28" x2="8.28" y3="-117.73" style="line-style:normal;line-weight:thin;filling:red;color:black" y1="-119.53" y4="-117.73" y2="-119.53" antialias="false" x1="9.28" x4="9.28"/>
<polygon x3="8.3" x2="8.3" y3="-106.59" style="line-style:normal;line-weight:thin;filling:red;color:black" y1="-108.38" y4="-106.59" y2="-108.38" antialias="false" x1="9.29" x4="9.29"/>
<polygon x3="40.47" x2="40.47" y3="1.43" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="-4.17" y4="1.43" y2="-4.17" antialias="false" x1="38.05" x4="38.05"/>
<text rotation="90" y="-51.07" color="#000000" x="10.95" text="0" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<polygon x3="48.46" x2="48.46" y3="-117.72" style="line-style:normal;line-weight:thin;filling:red;color:black" y1="-119.52" y4="-117.72" y2="-119.52" antialias="false" x1="49.45" x4="49.45"/>
<rect height="6.63" ry="1.14" y="-129.62" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" x="36.66" width="17.55" rx="1.14"/>
<text rotation="112" y="-30.55" color="#000000" x="10.89" text="1" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<polygon x3="40.47" x2="40.47" y3="9.43" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="3.82" y4="9.43" y2="3.82" antialias="false" x1="38.05" x4="38.05"/>
<polygon x3="8.3" x2="8.3" y3="-109.39" style="line-style:normal;line-weight:thin;filling:red;color:black" y1="-111.18" y4="-109.39" y2="-111.18" antialias="false" x1="9.3" x4="9.3"/>
<polygon x3="9.3" x2="9.3" y3="-114.98" style="line-style:normal;line-weight:thin;filling:yellow;color:black" y1="-116.78" y4="-114.98" y2="-116.78" antialias="false" x1="10.29" x4="10.29"/>
<text rotation="112" y="-48.85" color="#000000" x="10.8" text="1" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<polygon x3="49.45" x2="49.45" y3="-117.72" style="line-style:normal;line-weight:thin;filling:yellow;color:black" y1="-119.52" y4="-117.72" y2="-119.52" antialias="false" x1="50.45" x4="50.45"/>
<polygon x3="40.47" x2="40.47" y3="17.43" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="11.82" y4="17.43" y2="11.82" antialias="false" x1="38.05" x4="38.05"/>
<polygon x3="50.45" x2="50.45" y3="-117.72" style="line-style:normal;line-weight:thin;filling:green;color:black" y1="-119.52" y4="-117.72" y2="-119.52" antialias="false" x1="51.45" x4="51.45"/>
<text rotation="135" y="-28.95" color="#000000" x="10.17" text="2" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<polygon x3="40.47" x2="40.47" y3="25.42" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="19.82" y4="25.42" y2="19.82" antialias="false" x1="38.05" x4="38.05"/>
<polygon x3="8.31" x2="8.31" y3="-103.78" style="line-style:normal;line-weight:thin;filling:red;color:black" y1="-105.58" y4="-103.78" y2="-105.58" antialias="false" x1="9.31" x4="9.31"/>
<polygon x3="9.28" x2="9.28" y3="-117.73" style="line-style:normal;line-weight:thin;filling:yellow;color:black" y1="-119.53" y4="-117.73" y2="-119.53" antialias="false" x1="10.27" x4="10.27"/>
<polygon x3="40.47" x2="40.47" y3="33.42" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="27.82" y4="33.42" y2="27.82" antialias="false" x1="38.05" x4="38.05"/>
<polygon x3="51.15" x2="51.15" y3="-116.74" style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="-114.94" y4="-116.74" y2="-114.94" antialias="false" x1="48.75" x4="48.75"/>
<text rotation="157" y="-27.46" color="#000000" x="8.85" text="3" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<polygon x3="40.47" x2="40.47" y3="41.42" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="35.82" y4="41.42" y2="35.82" antialias="false" x1="38.05" x4="38.05"/>
<polygon x3="10.27" x2="10.27" y3="-117.73" style="line-style:normal;line-weight:thin;filling:green;color:black" y1="-119.53" y4="-117.73" y2="-119.53" antialias="false" x1="11.27" x4="11.27"/>
<polygon x3="51.15" x2="51.15" y3="-113.94" style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="-112.14" y4="-113.94" y2="-112.14" antialias="false" x1="48.75" x4="48.75"/>
<text rotation="135" y="-47.24" color="#000000" x="10.08" text="2" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<text rotation="180" y="-27" color="#000000" x="7.04" text="4" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<polygon x3="40.47" x2="40.47" y3="49.42" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="43.81" y4="49.42" y2="43.81" antialias="false" x1="38.05" x4="38.05"/>
<polygon x3="51.15" x2="51.15" y3="-111.14" style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="-109.34" y4="-111.14" y2="-109.34" antialias="false" x1="48.75" x4="48.75"/>
<polygon x3="10.29" x2="10.29" y3="-114.98" style="line-style:normal;line-weight:thin;filling:green;color:black" y1="-116.78" y4="-114.98" y2="-116.78" antialias="false" x1="11.29" x4="11.29"/>
<polygon x3="51.15" x2="51.15" y3="-108.34" style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="-106.54" y4="-108.34" y2="-106.54" antialias="false" x1="48.75" x4="48.75"/>
<text rotation="157" y="-45.76" color="#000000" x="8.76" text="3" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<polygon x3="9.28" x2="9.28" y3="-112.19" style="line-style:normal;line-weight:thin;filling:yellow;color:black" y1="-113.98" y4="-112.19" y2="-113.98" antialias="false" x1="10.27" x4="10.27"/>
<polygon x3="40.47" x2="40.47" y3="57.41" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="51.81" y4="57.41" y2="51.81" antialias="false" x1="38.05" x4="38.05"/>
<polygon x3="51.15" x2="51.15" y3="-105.54" style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="-103.74" y4="-105.54" y2="-103.74" antialias="false" x1="48.75" x4="48.75"/>
<polygon x3="9.29" x2="9.29" y3="-106.59" style="line-style:normal;line-weight:thin;filling:yellow;color:black" y1="-108.38" y4="-106.59" y2="-108.38" antialias="false" x1="10.29" x4="10.29"/>
<text rotation="202" y="-27.06" color="#000000" x="5.04" text="5" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<polygon x3="40.47" x2="40.47" y3="65.41" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="59.81" y4="65.41" y2="59.81" antialias="false" x1="38.05" x4="38.05"/>
<polygon x3="51.15" x2="51.15" y3="-102.74" style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="-100.94" y4="-102.74" y2="-100.94" antialias="false" x1="48.75" x4="48.75"/>
<text rotation="180" y="-45.3" color="#000000" x="6.95" text="4" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<polygon x3="40.47" x2="38.05" y3="65.41" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.27" y4="-28.27" y2="65.41" antialias="false" x1="38.05" x4="40.47"/>
<polygon x3="9.31" x2="9.31" y3="-103.78" style="line-style:normal;line-weight:thin;filling:yellow;color:black" y1="-105.58" y4="-103.78" y2="-105.58" antialias="false" x1="10.3" x4="10.3"/>
<polygon x3="42.17" x2="36.1" y3="69.5" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-28.27" y4="-28.27" y2="69.5" antialias="false" x1="36.1" x4="42.17"/>
<polygon x3="51.15" x2="51.15" y3="-99.94" style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="-98.14" y4="-99.94" y2="-98.14" antialias="false" x1="48.75" x4="48.75"/>
<polygon x3="9.3" x2="9.3" y3="-109.39" style="line-style:normal;line-weight:thin;filling:yellow;color:black" y1="-111.18" y4="-109.39" y2="-111.18" antialias="false" x1="10.29" x4="10.29"/>
<text rotation="202" y="-45.36" color="#000000" x="4.95" text="5" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<polygon x3="51.15" x2="51.15" y3="-97.14" style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="-95.34" y4="-97.14" y2="-95.34" antialias="false" x1="48.75" x4="48.75"/>
<polygon x3="10.29" x2="10.29" y3="-106.59" style="line-style:normal;line-weight:thin;filling:green;color:black" y1="-108.38" y4="-106.59" y2="-108.38" antialias="false" x1="11.29" x4="11.29"/>
<text rotation="225" y="-27.64" color="#000000" x="3.23" text="6" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<polygon x3="51.15" x2="51.15" y3="-94.35" style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="-92.55" y4="-94.35" y2="-92.55" antialias="false" x1="48.75" x4="48.75"/>
<polygon x3="10.27" x2="10.27" y3="-112.19" style="line-style:normal;line-weight:thin;filling:green;color:black" y1="-113.98" y4="-112.19" y2="-113.98" antialias="false" x1="11.27" x4="11.27"/>
<text rotation="225" y="-45.93" color="#000000" x="3.15" text="6" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<polygon x3="51.15" x2="51.15" y3="-91.54" style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="-89.74" y4="-91.54" y2="-89.74" antialias="false" x1="48.75" x4="48.75"/>
<text rotation="247" y="-29.06" color="#000000" x="1.61" text="7" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<polygon x3="10.29" x2="10.29" y3="-109.39" style="line-style:normal;line-weight:thin;filling:green;color:black" y1="-111.18" y4="-109.39" y2="-111.18" antialias="false" x1="11.29" x4="11.29"/>
<polygon x3="10.3" x2="10.3" y3="-103.78" style="line-style:normal;line-weight:thin;filling:green;color:black" y1="-105.58" y4="-103.78" y2="-105.58" antialias="false" x1="11.3" x4="11.3"/>
<polygon x3="51.15" x2="51.15" y3="-88.74" style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="-86.94" y4="-88.74" y2="-86.94" antialias="false" x1="48.75" x4="48.75"/>
<text rotation="247" y="-47.36" color="#000000" x="1.52" text="7" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<polygon x3="12.41" x2="7.2" y3="-120.58" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-102.77" y4="-102.77" y2="-120.58" antialias="false" x1="7.2" x4="12.41"/>
<polygon x3="51.15" x2="51.15" y3="-85.95" style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="-84.15" y4="-85.95" y2="-84.15" antialias="false" x1="48.75" x4="48.75"/>
<text rotation="270" y="-30.95" color="#000000" x="1.12" text="8" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<polygon x3="51.15" x2="51.15" y3="-83.15" style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="-81.35" y4="-83.15" y2="-81.35" antialias="false" x1="48.75" x4="48.75"/>
<text rotation="295" y="-33.24" color="#000000" x="0.91" text="9" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<text rotation="270" y="-49.25" color="#000000" x="1.04" text="8" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<polygon x3="51.15" x2="51.15" y3="-80.35" style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="-78.54" y4="-80.35" y2="-78.54" antialias="false" x1="48.75" x4="48.75"/>
<polygon x3="51.15" x2="51.15" y3="-77.54" style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="-75.75" y4="-77.54" y2="-75.75" antialias="false" x1="48.75" x4="48.75"/>
<text rotation="295" y="-51.53" color="#000000" x="0.83" text="9" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<text rotation="317" y="-35.12" color="#000000" x="1.81" text="A" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<polygon x3="51.15" x2="51.15" y3="-74.74" style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="-72.95" y4="-74.74" y2="-72.95" antialias="false" x1="48.75" x4="48.75"/>
<text rotation="317" y="-53.42" color="#000000" x="1.73" text="A" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<text rotation="337" y="-36.38" color="#000000" x="3.36" text="B" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<text rotation="337" y="-54.68" color="#000000" x="3.27" text="B" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<text rotation="0" y="-37" color="#000000" x="4.97" text="C" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<text rotation="0" y="-55.31" color="#000000" x="4.89" text="C" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<text rotation="22" y="-37.13" color="#000000" x="7.06" text="D" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<text rotation="45" y="-36.38" color="#000000" x="8.84" text="E" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<text rotation="22" y="-55.42" color="#000000" x="6.97" text="D" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<text rotation="45" y="-54.68" color="#000000" x="8.76" text="E" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<text rotation="67" y="-34.78" color="#000000" x="10.42" text="F" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<polygon y5="-28.44" y7="-39.87" x6="14" x9="-2.21" y3="-23.86" x3="2.42" y9="-35.3" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-2.21" x4="9.37" y1="-35.3" x2="-2.21" antialias="false" y4="-23.86" y8="-39.87" x8="2.42" y6="-35.3" x7="9.37" y2="-28.44" x5="14"/>
<text rotation="67" y="-53.08" color="#000000" x="10.33" text="F" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<ellipse height="7.77" y="-35.98" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x="2.19" width="7.87"/>
<line length1="3" end1="triangle" x2="4.05" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-32.09" y2="-32.09" antialias="false" x1="8.68" end2="none"/>
<polygon x3="-53.15" x2="-53.15" y3="37.23" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="69.23" y4="37.23" y2="69.23" antialias="false" x1="-21.13" x4="-21.13"/>
<polygon x3="-51.03" x2="-51.03" y3="42.06" style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="64.06" y4="42.06" y2="64.06" antialias="false" x1="-31.02" x4="-31.02"/>
<rect height="34.02" ry="5" y="-98.81" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" x="10.09" width="10" rx="5"/>
<polygon x3="57.95" x2="57.2" y3="-89" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-88.53" y4="-88.49" y2="-88.98" antialias="false" x1="56.11" closed="false" x4="58.36"/>
<polygon x3="57.95" x2="57.2" y3="-89.16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-89.62" y4="-89.66" y2="-89.17" antialias="false" x1="56.11" closed="false" x4="58.36"/>
<circle y="-2.6" style="line-style:normal;line-weight:thin;filling:white;color:black" antialias="false" x="21.81" diameter="4"/>
<polygon x3="57.95" x2="57.2" y3="-84" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-83.54" y4="-83.5" y2="-83.98" antialias="false" x1="56.11" closed="false" x4="58.36"/>
<polygon x3="-37.02" x2="-37.02" y3="43.88" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="62.58" y4="43.88" y2="62.58" antialias="false" x1="-31.02" x4="-31.02"/>
<polygon x3="57.95" x2="57.2" y3="-84.17" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-84.63" y4="-84.67" y2="-84.18" antialias="false" x1="56.11" closed="false" x4="58.36"/>
<polygon x3="-53.14" x2="-53.14" y3="49.83" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="56.63" y4="49.83" y2="56.63" antialias="false" x1="-48.74" x4="-48.74"/>
<polygon x3="57.95" x2="57.2" y3="-79" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-78.54" y4="-78.5" y2="-79" antialias="false" x1="56.11" closed="false" x4="58.36"/>
<polygon x3="-12.6" x2="-12.6" y3="-127.53" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-125.13" y4="-127.53" y2="-125.13" antialias="false" x1="25" x4="25"/>
<polygon x3="57.95" x2="57.2" y3="-79.18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-79.64" y4="-79.68" y2="-79.18" antialias="false" x1="56.11" closed="false" x4="58.36"/>
<rect height="4" ry="0" y="42.05" style="line-style:normal;line-weight:thin;filling:green;color:black" antialias="false" x="-51.02" width="2" rx="0"/>
<polygon x3="57.95" x2="57.2" y3="-74" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-73.55" y4="-73.51" y2="-74" antialias="false" x1="56.11" closed="false" x4="58.36"/>
<polygon x3="-12.6" x2="-12.6" y3="-127.53" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-125.13" y4="-127.53" y2="-125.13" antialias="false" x1="-7" x4="-7"/>
<polygon x3="57.95" x2="57.2" y3="-74.18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-74.64" y4="-74.68" y2="-74.19" antialias="false" x1="56.11" closed="false" x4="58.36"/>
<rect height="4" ry="0" y="60.06" style="line-style:normal;line-weight:thin;filling:yellow;color:black" antialias="false" x="-51.07" width="2" rx="0"/>
<polygon x3="-4.6" x2="-4.6" y3="-127.53" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-125.13" y4="-127.53" y2="-125.13" antialias="false" x1="1" x4="1"/>
<polygon x3="3.4" x2="3.4" y3="-127.53" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-125.13" y4="-127.53" y2="-125.13" antialias="false" x1="9" x4="9"/>
<polygon x3="11.41" x2="11.41" y3="-127.53" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-125.13" y4="-127.53" y2="-125.13" antialias="false" x1="17" x4="17"/>
<polygon x3="19.41" x2="19.41" y3="-127.53" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-125.13" y4="-127.53" y2="-125.13" antialias="false" x1="25" x4="25"/>
<polygon x2="52.12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-67.87" y2="-67.87" antialias="false" x1="22.67" closed="false"/>
<polygon x2="-58.34" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-131.07" y2="78.84" antialias="false" x1="-58.34" closed="false"/>
<polygon x2="-18.32" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-131.07" y2="78.84" antialias="false" x1="-18.32" closed="false"/>
<polygon x2="-18.52" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="77.44" y2="77.44" antialias="false" x1="-59.74" closed="false"/>
<polygon x2="-59.74" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-129.87" y2="-129.87" antialias="false" x1="35.95" closed="false"/>
<polygon x2="-18.72" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-4.66" y2="-4.66" antialias="false" x1="-59.74" closed="false"/>
<polygon x3="4.38" x2="3.27" y3="77.96" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="76.74" y4="78.82" y2="76.78" antialias="false" x1="2" closed="false" x4="4.38"/>
<polygon x3="-11.26" x2="-12.2" y3="76.83" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="78.82" y4="76.74" y2="77.82" antialias="false" x1="-12.2" closed="false" x4="-9.81"/>
<polygon x2="2" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="76.74" y2="76.74" antialias="false" x1="-9.81" closed="false"/>
<polygon x2="36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="69.61" y2="69.61" antialias="false" x1="-18.31" closed="false"/>
<polygon x3="-2.37" x2="-4.61" y3="-62.86" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-67.86" y4="-62.86" y2="-65.1" antialias="false" x1="-4.61" closed="false" x4="0.39"/>
<polygon x3="22.6" x2="20.36" y3="-65.1" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-62.86" y4="-67.86" y2="-62.86" antialias="false" x1="17.6" closed="false" x4="22.6"/>
<polygon x2="17.6" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-62.86" y2="-62.86" antialias="false" x1="0.39" closed="false"/>
<polygon x2="-4.61" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-67.86" y2="-104.17" antialias="false" x1="-4.61" closed="false"/>
<polygon x3="36" x2="22.6" y3="-104.17" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-67.86" y2="-104.17" antialias="false" x1="22.6" closed="false"/>
<polygon x2="-4.61" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-104.17" y2="-104.17" antialias="false" x1="-18.22" closed="false"/>
<polygon x2="26.7" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-123.47" y2="-123.47" antialias="false" x1="-13.91" closed="false"/>
<polygon x2="-13.81" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-131.07" y2="-123.61" antialias="false" x1="-13.81" closed="false"/>
<polygon x2="26.7" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-131.07" y2="-123.47" antialias="false" x1="26.7" closed="false"/>
<polygon x2="-12.61" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-124.39" y2="-124.39" antialias="false" x1="25" closed="false"/>
<polygon x2="25" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-128.34" y2="-124.39" antialias="false" x1="25" closed="false"/>
<polygon x2="-12.61" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-124.39" y2="-128.34" antialias="false" x1="-12.61" closed="false"/>
<polygon x2="-12.61" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-128.34" y2="-128.34" antialias="false" x1="25" closed="false"/>
<polygon x2="-4.61" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-67.86" y2="-67.86" antialias="false" x1="-18.29" closed="false"/>
<polygon x3="3.61" x2="3.61" y3="49.19" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="73.19" y4="49.19" y2="73.19" antialias="false" x1="23.61" x4="23.61"/>
<polygon x3="12.81" x2="12.81" y3="53.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="69.2" y4="53.2" y2="69.2" antialias="false" x1="16.81" x4="16.81"/>
<polygon x3="13.61" x2="13.61" y3="57.09" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="65.09" y4="57.09" y2="65.09" antialias="false" x1="15.61" x4="15.61"/>
<polygon x3="-53.15" x2="-53.15" y3="0.24" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="32.24" y4="0.24" y2="32.24" antialias="false" x1="-21.13" x4="-21.13"/>
<polygon x3="-51.03" x2="-51.03" y3="5.07" style="line-style:normal;line-weight:thin;filling:gray;color:black" y1="27.07" y4="5.07" y2="27.07" antialias="false" x1="-31.02" x4="-31.02"/>
<polygon x3="-37.03" x2="-37.03" y3="6.89" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="25.59" y4="6.89" y2="25.59" antialias="false" x1="-31.02" x4="-31.02"/>
<polygon x3="-53.14" x2="-53.14" y3="12.84" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="19.64" y4="12.84" y2="19.64" antialias="false" x1="-48.74" x4="-48.74"/>
<polygon x2="36.02" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="78.88" y2="-131.06" antialias="false" x1="36.02" closed="false"/>
<polygon x3="-64.24" x2="-64.24" y3="-43.83" style="line-style:normal;line-weight:thin;filling:orange;color:black" y1="-15.03" y4="-43.83" y2="-15.03" antialias="false" x1="-59.84" x4="-59.84"/>
<polygon x2="59.94" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-66.53" y2="-66.53" antialias="false" x1="52.12" closed="false"/>
<polygon x2="52.12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-123.03" y2="-66.53" antialias="false" x1="52.12" closed="false"/>
<polygon x2="52.12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-34.93" y2="72.67" antialias="false" x1="52.12" closed="false"/>
<polygon x2="59.93" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-35.66" y2="-35.66" antialias="false" x1="35.93" closed="false"/>
<polygon x3="39.14" x2="39.14" y3="-35.53" style="line-style:normal;line-weight:thin;filling:orange;color:black" y1="-31.53" y4="-35.53" y2="-31.53" antialias="false" x1="56.75" x4="56.75"/>
<polygon x2="36.09" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="67.27" y2="67.27" antialias="false" x1="60" closed="false"/>
<polygon x2="36.02" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="69.61" y2="69.61" antialias="false" x1="42.09" closed="false"/>
<polygon x2="42.12" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="69.61" y2="78.89" antialias="false" x1="42.12" closed="false"/>
<polygon x3="52.03" x2="52.04" y3="78.86" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="72.73" y2="72.74" antialias="false" x1="54.83" closed="false"/>
<polygon x3="57.91" x2="57.16" y3="-118.98" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-118.52" y4="-118.48" y2="-118.97" antialias="false" x1="56.07" closed="false" x4="58.32"/>
<polygon x3="57.91" x2="57.16" y3="-119.16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-119.61" y4="-119.65" y2="-119.17" antialias="false" x1="56.07" closed="false" x4="58.32"/>
<polygon x3="57.91" x2="57.16" y3="-114" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-113.53" y4="-113.49" y2="-113.98" antialias="false" x1="56.07" closed="false" x4="58.32"/>
<polygon x3="57.91" x2="57.16" y3="-114.16" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-114.62" y4="-114.66" y2="-114.17" antialias="false" x1="56.07" closed="false" x4="58.32"/>
<polygon x3="57.91" x2="57.16" y3="-109" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-108.54" y4="-108.5" y2="-108.98" antialias="false" x1="56.07" closed="false" x4="58.32"/>
<polygon x3="57.91" x2="57.16" y3="-109.17" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-109.63" y4="-109.67" y2="-109.18" antialias="false" x1="56.07" closed="false" x4="58.32"/>
<polygon x3="57.91" x2="57.16" y3="-104" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-103.54" y4="-103.5" y2="-104" antialias="false" x1="56.07" closed="false" x4="58.32"/>
<polygon x3="57.91" x2="57.16" y3="-104.17" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-104.63" y4="-104.67" y2="-104.18" antialias="false" x1="56.07" closed="false" x4="58.32"/>
<polygon x3="57.91" x2="57.16" y3="-99" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-98.54" y4="-98.5" y2="-99" antialias="false" x1="56.07" closed="false" x4="58.32"/>
<polygon x3="57.91" x2="57.16" y3="-99.18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-99.63" y4="-99.67" y2="-99.18" antialias="false" x1="56.07" closed="false" x4="58.32"/>
<polygon x3="57.91" x2="57.16" y3="-94" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-93.55" y4="-93.51" y2="-94" antialias="false" x1="56.07" closed="false" x4="58.32"/>
<polygon x3="57.91" x2="57.16" y3="-94.18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="-94.64" y4="-94.68" y2="-94.19" antialias="false" x1="56.07" closed="false" x4="58.32"/>
<polygon x3="57.91" x2="57.16" y3="51.35" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="51.81" y4="51.85" y2="51.36" antialias="false" x1="56.07" closed="false" x4="58.32"/>
<polygon x3="57.91" x2="57.16" y3="51.18" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="50.72" y4="50.68" y2="51.17" antialias="false" x1="56.07" closed="false" x4="58.32"/>
<polygon x3="57.91" x2="57.16" y3="69.36" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="69.82" y4="69.86" y2="69.37" antialias="false" x1="56.07" closed="false" x4="58.32"/>
<polygon x3="57.91" x2="57.16" y3="69.19" style="line-style:normal;line-weight:thin;filling:none;color:black" y1="68.73" y4="68.69" y2="69.18" antialias="false" x1="56.07" closed="false" x4="58.32"/>
<polygon y5="-20.55" y7="-24.87" x10="57.63" x6="50.14" x9="55.63" y3="-17.38" y12="-20.55" x3="53.31" y9="-26.03" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y10="-24.87" x1="57.63" x4="51.3" y11="-22.86" y1="-18.53" x2="55.63" antialias="false" x11="58.79" y4="-18.53" x12="58.79" y8="-26.03" x8="53.31" y6="-22.86" x7="51.3" y2="-17.38" x5="50.14"/>
<polygon y5="-19.09" y7="-20.55" x10="49.88" x6="48.84" x9="48.84" y3="-19.52" y12="-23.85" x3="57.16" y9="-23.85" style="line-style:normal;line-weight:thin;filling:gray;color:black" y10="-24.27" x1="57.58" x4="56.12" y11="-24.27" y1="-22.82" x2="57.58" antialias="false" x11="56.12" y4="-19.09" x12="57.16" y8="-22.82" x8="48.42" y6="-19.52" x7="48.42" y2="-20.55" x5="49.88"/>
<polygon y5="-19.14" y7="-20.51" x10="45.41" x6="43.02" x9="44.77" y3="-18.13" y12="-19.14" x3="44.03" y9="-20.88" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y10="-20.51" x1="45.41" x4="43.39" y11="-19.88" y1="-18.5" x2="44.77" antialias="false" x11="45.78" y4="-18.5" x12="45.78" y8="-20.88" x8="44.03" y6="-19.88" x7="43.39" y2="-18.13" x5="43.02"/>
<polygon y5="-18.57" y7="-17.11" x10="46.23" x6="50.16" x9="46.66" y3="-25.85" y12="-25.85" x3="50.16" y9="-17.54" style="line-style:normal;line-weight:thin;filling:orange;color:black" y10="-18.57" x1="47.69" x4="50.58" y11="-24.82" y1="-26.27" x2="49.12" antialias="false" x11="46.23" y4="-24.82" x12="46.66" y8="-17.11" x8="47.69" y6="-17.54" x7="49.12" y2="-26.27" x5="50.58"/>
<polygon y5="-4.53" y7="-8.86" x10="57.63" x6="50.14" x9="55.63" y3="-1.37" y12="-4.53" x3="53.31" y9="-10.02" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y10="-8.86" x1="57.63" x4="51.3" y11="-6.85" y1="-2.53" x2="55.63" antialias="false" x11="58.79" y4="-2.53" x12="58.79" y8="-10.02" x8="53.31" y6="-6.85" x7="51.3" y2="-1.37" x5="50.14"/>
<polygon y5="-3.09" y7="-4.54" x10="49.88" x6="48.84" x9="48.84" y3="-3.52" y12="-7.84" x3="57.16" y9="-7.84" style="line-style:normal;line-weight:thin;filling:gray;color:black" y10="-8.27" x1="57.58" x4="56.12" y11="-8.27" y1="-6.81" x2="57.58" antialias="false" x11="56.12" y4="-3.09" x12="57.16" y8="-6.81" x8="48.42" y6="-3.52" x7="48.42" y2="-4.54" x5="49.88"/>
<polygon y5="-3.13" y7="-4.5" x10="45.41" x6="43.02" x9="44.77" y3="-2.12" y12="-3.13" x3="44.03" y9="-4.88" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y10="-4.5" x1="45.41" x4="43.39" y11="-3.87" y1="-2.49" x2="44.77" antialias="false" x11="45.78" y4="-2.49" x12="45.78" y8="-4.88" x8="44.03" y6="-3.87" x7="43.39" y2="-2.12" x5="43.02"/>
<polygon y5="-2.56" y7="-1.1" x10="46.23" x6="50.16" x9="46.66" y3="-9.84" y12="-9.84" x3="50.16" y9="-1.53" style="line-style:normal;line-weight:thin;filling:orange;color:black" y10="-2.56" x1="47.69" x4="50.58" y11="-8.81" y1="-10.27" x2="49.12" antialias="false" x11="46.23" y4="-8.81" x12="46.66" y8="-1.1" x8="47.69" y6="-1.53" x7="49.12" y2="-10.27" x5="50.58"/>
<polygon y5="11.47" y7="7.15" x10="57.63" x6="50.14" x9="55.63" y3="14.64" y12="11.47" x3="53.31" y9="6" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y10="7.15" x1="57.63" x4="51.3" y11="9.15" y1="13.48" x2="55.63" antialias="false" x11="58.79" y4="13.48" x12="58.79" y8="6" x8="53.31" y6="9.15" x7="51.3" y2="14.64" x5="50.14"/>
<polygon y5="12.92" y7="11.46" x10="49.88" x6="48.84" x9="48.84" y3="12.49" y12="8.16" x3="57.16" y9="8.16" style="line-style:normal;line-weight:thin;filling:gray;color:black" y10="7.74" x1="57.58" x4="56.12" y11="7.74" y1="9.2" x2="57.58" antialias="false" x11="56.12" y4="12.92" x12="57.16" y8="9.2" x8="48.42" y6="12.49" x7="48.42" y2="11.46" x5="49.88"/>
<polygon y5="12.87" y7="11.5" x10="45.41" x6="43.02" x9="44.77" y3="13.89" y12="12.87" x3="44.03" y9="11.13" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y10="11.5" x1="45.41" x4="43.39" y11="12.14" y1="13.51" x2="44.77" antialias="false" x11="45.78" y4="13.51" x12="45.78" y8="11.13" x8="44.03" y6="12.14" x7="43.39" y2="13.89" x5="43.02"/>
<polygon y5="13.45" y7="14.9" x10="46.23" x6="50.16" x9="46.66" y3="6.16" y12="6.16" x3="50.16" y9="14.48" style="line-style:normal;line-weight:thin;filling:orange;color:black" y10="13.45" x1="47.69" x4="50.58" y11="7.2" y1="5.74" x2="49.12" antialias="false" x11="46.23" y4="7.2" x12="46.66" y8="14.9" x8="47.69" y6="14.48" x7="49.12" y2="5.74" x5="50.58"/>
<polygon y5="27.48" y7="23.15" x10="57.63" x6="50.14" x9="55.63" y3="30.64" y12="27.48" x3="53.31" y9="22" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y10="23.15" x1="57.63" x4="51.3" y11="25.16" y1="29.49" x2="55.63" antialias="false" x11="58.79" y4="29.49" x12="58.79" y8="22" x8="53.31" y6="25.16" x7="51.3" y2="30.64" x5="50.14"/>
<polygon y5="28.93" y7="27.47" x10="49.88" x6="48.84" x9="48.84" y3="28.5" y12="24.17" x3="57.16" y9="24.17" style="line-style:normal;line-weight:thin;filling:gray;color:black" y10="23.75" x1="57.58" x4="56.12" y11="23.75" y1="25.21" x2="57.58" antialias="false" x11="56.12" y4="28.93" x12="57.16" y8="25.21" x8="48.42" y6="28.5" x7="48.42" y2="27.47" x5="49.88"/>
<polygon y5="28.89" y7="27.51" x10="45.41" x6="43.02" x9="44.77" y3="29.89" y12="28.89" x3="44.03" y9="27.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y10="27.51" x1="45.41" x4="43.39" y11="28.15" y1="29.52" x2="44.77" antialias="false" x11="45.78" y4="29.52" x12="45.78" y8="27.14" x8="44.03" y6="28.15" x7="43.39" y2="29.89" x5="43.02"/>
<polygon y5="29.45" y7="30.91" x10="46.23" x6="50.16" x9="46.66" y3="22.17" y12="22.17" x3="50.16" y9="30.48" style="line-style:normal;line-weight:thin;filling:orange;color:black" y10="29.45" x1="47.69" x4="50.58" y11="23.2" y1="21.75" x2="49.12" antialias="false" x11="46.23" y4="23.2" x12="46.66" y8="30.91" x8="47.69" y6="30.48" x7="49.12" y2="21.75" x5="50.58"/>
<polygon y5="43.49" y7="39.16" x10="57.63" x6="50.14" x9="55.63" y3="46.65" y12="43.49" x3="53.31" y9="38" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y10="39.16" x1="57.63" x4="51.3" y11="41.17" y1="45.5" x2="55.63" antialias="false" x11="58.79" y4="45.5" x12="58.79" y8="38" x8="53.31" y6="41.17" x7="51.3" y2="46.65" x5="50.14"/>
<polygon y5="44.93" y7="43.48" x10="49.88" x6="48.84" x9="48.84" y3="44.51" y12="40.18" x3="57.16" y9="40.18" style="line-style:normal;line-weight:thin;filling:gray;color:black" y10="39.76" x1="57.58" x4="56.12" y11="39.76" y1="41.21" x2="57.58" antialias="false" x11="56.12" y4="44.93" x12="57.16" y8="41.21" x8="48.42" y6="44.51" x7="48.42" y2="43.48" x5="49.88"/>
<polygon y5="44.89" y7="43.52" x10="45.41" x6="43.02" x9="44.77" y3="45.9" y12="44.89" x3="44.03" y9="43.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y10="43.52" x1="45.41" x4="43.39" y11="44.16" y1="45.53" x2="44.77" antialias="false" x11="45.78" y4="45.53" x12="45.78" y8="43.15" x8="44.03" y6="44.16" x7="43.39" y2="45.9" x5="43.02"/>
<polygon y5="45.46" y7="46.92" x10="46.23" x6="50.16" x9="46.66" y3="38.18" y12="38.18" x3="50.16" y9="46.49" style="line-style:normal;line-weight:thin;filling:orange;color:black" y10="45.46" x1="47.69" x4="50.58" y11="39.21" y1="37.75" x2="49.12" antialias="false" x11="46.23" y4="39.21" x12="46.66" y8="46.92" x8="47.69" y6="46.49" x7="49.12" y2="37.75" x5="50.58"/>
<polygon y5="61.35" y7="57.03" x10="57.63" x6="50.14" x9="55.63" y3="64.52" y12="61.35" x3="53.31" y9="55.87" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y10="57.03" x1="57.63" x4="51.3" y11="59.04" y1="63.36" x2="55.63" antialias="false" x11="58.79" y4="63.36" x12="58.79" y8="55.87" x8="53.31" y6="59.04" x7="51.3" y2="64.52" x5="50.14"/>
<polygon y5="62.81" y7="61.35" x10="49.88" x6="48.84" x9="48.84" y3="62.38" y12="58.05" x3="57.16" y9="58.05" style="line-style:normal;line-weight:thin;filling:gray;color:black" y10="57.62" x1="57.58" x4="56.12" y11="57.62" y1="59.08" x2="57.58" antialias="false" x11="56.12" y4="62.81" x12="57.16" y8="59.08" x8="48.42" y6="62.38" x7="48.42" y2="61.35" x5="49.88"/>
<polygon y5="62.76" y7="61.38" x10="45.41" x6="43.02" x9="44.77" y3="63.77" y12="62.76" x3="44.03" y9="61.02" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y10="61.38" x1="45.41" x4="43.39" y11="62.02" y1="63.4" x2="44.77" antialias="false" x11="45.78" y4="63.4" x12="45.78" y8="61.02" x8="44.03" y6="62.02" x7="43.39" y2="63.77" x5="43.02"/>
<polygon y5="63.33" y7="64.78" x10="46.23" x6="50.16" x9="46.66" y3="56.05" y12="56.05" x3="50.16" y9="64.36" style="line-style:normal;line-weight:thin;filling:orange;color:black" y10="63.33" x1="47.69" x4="50.58" y11="57.08" y1="55.62" x2="49.12" antialias="false" x11="46.23" y4="57.08" x12="46.66" y8="64.78" x8="47.69" y6="64.36" x7="49.12" y2="55.62" x5="50.58"/>
<rect height="24.58" ry="4" y="-94.29" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" x="10.83" width="8.58" rx="4"/>
<polygon x2="11.66" style="line-style:normal;line-weight:normal;filling:lightgray;color:black" y1="-81.85" y2="-81.85" antialias="false" x1="18.55" closed="false"/>
<polygon x2="12.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="-83.11" y2="-83.11" antialias="false" x1="18.08" closed="false"/>
<polygon x2="12.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="-84.36" y2="-84.36" antialias="false" x1="18.08" closed="false"/>
<polygon x2="12.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="-85.62" y2="-85.62" antialias="false" x1="18.08" closed="false"/>
<polygon x2="12.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="-86.89" y2="-86.89" antialias="false" x1="18.08" closed="false"/>
<polygon x2="12.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="-88.14" y2="-88.14" antialias="false" x1="18.08" closed="false"/>
<polygon x2="12.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="-75.55" y2="-75.55" antialias="false" x1="18.08" closed="false"/>
<polygon x2="12.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="-76.81" y2="-76.81" antialias="false" x1="18.08" closed="false"/>
<polygon x2="12.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="-78.06" y2="-78.06" antialias="false" x1="18.08" closed="false"/>
<polygon x2="12.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="-79.32" y2="-79.32" antialias="false" x1="18.08" closed="false"/>
<polygon x2="12.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y1="-80.58" y2="-80.58" antialias="false" x1="18.08" closed="false"/>
<rect height="4" ry="0" y="5.07" style="line-style:normal;line-weight:thin;filling:green;color:black" antialias="false" x="-51.02" width="2" rx="0"/>
<rect height="4" ry="0" y="23.07" style="line-style:normal;line-weight:thin;filling:yellow;color:black" antialias="false" x="-51.08" width="2" rx="0"/>
<text rotation="270" y="-32.21" color="#000000" x="33.82" text="768-2201" font="Sans Serif,4,-1,5,50,0,0,0,0,0"/>
<polygon y5="-46.73" y7="-58.16" x6="13.92" x9="-2.29" y3="-42.16" x3="2.34" y9="-53.59" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="-2.29" x4="9.28" y1="-53.59" x2="-2.29" antialias="false" y4="-42.16" y8="-58.16" x8="2.34" y6="-53.59" x7="9.28" y2="-46.73" x5="13.92"/>
<ellipse height="7.77" y="-54.28" style="line-style:normal;line-weight:normal;filling:none;color:black" antialias="false" x="2.11" width="7.87"/>
<line length1="3" end1="triangle" x2="3.96" length2="1.5" style="line-style:normal;line-weight:normal;filling:none;color:black" y1="-50.39" y2="-50.39" antialias="false" x1="8.59" end2="none"/>
<text rotation="0" y="-22.49" color="#000000" x="43.54" text="1" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<text rotation="0" y="-6.48" color="#000000" x="43.54" text="2" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<text rotation="0" y="9.52" color="#000000" x="43.54" text="3" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<text rotation="0" y="25.53" color="#000000" x="43.54" text="4" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<text rotation="0" y="41.54" color="#000000" x="43.54" text="5" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<text rotation="0" y="59.26" color="#000000" x="43.54" text="6" font="Sans Serif,2.29,-1,5,50,0,0,0,0,0"/>
<dynamic_text rotation="0" keep_visual_rotation="true" text_width="-1" y="-43.64" frame="false" text_from="ElementInfo" z="226" Halignment="AlignHCenter" x="-42.22" Valignment="AlignVCenter" uuid="{2e19ff93-c457-4aaa-b375-63485ca14114}" font="Sans Serif,3.43,-1,5,25,0,0,0,0,0">
<text></text>
<info_name>label</info_name>
</dynamic_text>
</description>
</definition>

View File

@@ -1,14 +0,0 @@
<qet-directory>
<names>
<name lang="pl">DigitalIN</name>
<name lang="de">DigitalIN</name>
<name lang="el">DigitalIN</name>
<name lang="it">DigitalIN</name>
<name lang="ru">DigitalIN</name>
<name lang="nl">DigitalIN</name>
<name lang="cs">DigitalIN</name>
<name lang="en">DigitalIN</name>
<name lang="fr">DigitalIN</name>
<name lang="da">DigitalIN</name>
</names>
</qet-directory>

View File

@@ -1,160 +0,0 @@
<definition type="element" width="40" version="0.90" link_type="simple" hotspot_y="136" hotspot_x="22" height="220">
<names>
<name lang="de">763-1108</name>
<name lang="fr">763-1108</name>
<name lang="en">763-1108</name>
<name lang="cs">763-1108</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-1108</elementInformation>
<elementInformation show="1" name="description">8DI ADV 24 V DC HS</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<polygon y1="51.47" x2="9.22" antialias="false" y4="51.51" x3="9.96" x1="8.12" y3="51.02" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.38" y2="51.03" closed="false"/>
<polygon x7="-14.73" x60="7.83" y13="76.8" x29="11.59" y53="-88.59" x53="11.58" y67="-100.11" x89="11.58" y32="50.11" x75="12" x86="11.58" x94="12" y84="-113.69" y68="-100.22" y86="-115.21" y47="-83.6" y4="-129.61" x19="9.72" y92="-120.2" x2="-16.23" y16="78.6" x73="7.83" x79="7.83" y74="-105.22" x52="12" y48="-83.72" x64="12" x87="12" y33="49.7" x8="-12" x80="11.58" y93="-120.64" y62="-95.27" x55="7.83" x49="7.82" y52="-88.17" y23="69.74" y46="-83.18" y19="72.41" y60="-93.71" y77="-108.58" y3="-130.65" y31="50.23" y36="-73.77" x14="-17.18" y87="-115.64" x24="7.73" x10="-14.78" x6="-14.78" x54="7.83" y49="-85.13" x15="-16.48" y80="-110.22" x12="-17.42" x3="-17.06" y9="76.18" y90="-118.69" y14="77.69" y98="-131.4" y45="-80.62" x81="12" x67="7.83" y5="-123.89" y25="68.21" y20="75.7" x13="-17.43" y34="-73.31" y18="72.41" x5="-17.42" y38="-75.29" y69="-100.65" y73="-105.11" x62="11.62" y55="-90.12" x23="11.59" x66="7.83" y72="-103.7" x59="11.58" y42="-78.77" x40="12" x38="11.68" x83="11.58" y83="-113.57" y95="-128.5" x32="11.59" y97="-123.39" antialias="false" x56="11.62" x69="12" y40="-78.32" x4="-17.42" y27="67.67" x61="7.83" x95="9.72" y56="-90.28" x25="7.73" y58="-93.16" x68="11.58" x71="11.58" x74="11.58" y44="-80.29" y70="-103.16" x21="12.02" y29="51.76" style="line-style:normal;line-weight:thin;filling:white;color:black" y24="69.62" y7="-128.98" x34="12" y91="-120.09" x93="12" x16="-15.62" x43="7.92" y30="51.64" x72="7.83" y94="-128.49" y41="-78.64" y11="72.9" x26="11.59" x70="12" x96="9.72" x46="12" x37="7.92" y79="-110.11" y82="-113.15" y64="-98.16" y88="-118.14" x98="6.91" y57="-90.66" y59="-93.59" x92="11.58" x85="7.83" x76="12" y43="-80.17" x47="11.58" x27="12" x50="11.62" y96="-123.39" y21="75.65" y81="-110.64" y35="-73.65" x18="6.95" x78="7.83" y54="-88.71" x90="7.83" y1="-131.38" y10="76.2" y61="-95.12" y15="78.38" y12="72.9" y66="-98.71" y39="-75.62" x77="11.58" y50="-85.28" y26="68.1" x36="7.92" y65="-98.58" x30="7.73" y89="-118.57" x91="7.83" x31="7.73" x1="-15.59" x42="7.92" x33="12" y71="-103.58" y63="-95.66" x48="7.82" y75="-105.65" y85="-115.1" x58="12" x45="12" x44="11.69" x11="-14.78" y28="52.18" x97="6.92" y76="-108.15" y22="70.17" x88="12" x39="12" x22="12.02" x9="-12" x20="9.75" x17="6.92" y37="-75.18" x35="11.68" y6="-123.89" x82="12" y17="78.59" x28="12" x51="12" x57="12" x84="7.83" y2="-131.25" x41="11.69" y51="-85.67" y8="-128.98" x63="12" x65="11.58" y78="-108.7"/>
<polygon y1="50.39" x2="9.22" antialias="false" y4="50.35" x3="9.96" x1="8.12" y3="50.85" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.38" y2="50.83" closed="false"/>
<dynamic_text z="4" frame="false" keep_visual_rotation="true" text_width="-1" uuid="{7b126569-7aa5-4c19-a198-0690e9e25f60}" text_from="ElementInfo" y="-131.68" Valignment="AlignVCenter" font="Sans Serif,2.86,-1,5,25,0,0,0,0,0" Halignment="AlignHCenter" x="-4.52" rotation="0">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon y1="-124.69" x2="-10.27" antialias="false" y4="-124.69" x3="5.03" x1="-10.27" y3="-128.71" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="5.03" y2="-128.71"/>
<rect width="17.55" ry="1.14" antialias="false" rx="1.14" y="-130.08" style="line-style:normal;line-weight:thin;filling:none;color:black" height="6.63" x="-11.38"/>
<polygon y1="-120.9" x2="0" antialias="false" y4="-72.3" x3="0" x1="4.22" y3="-72.3" style="line-style:normal;line-weight:thin;filling:yellow;color:black" x4="4.22" y2="-120.9"/>
<polygon y1="-121.12" x5="7.22" x7="7.27" y7="-71.6" x6="7.22" y5="-120.41" x3="7.55" y6="-71.79" x9="7.61" y4="-120.72" x4="7.3" antialias="false" y10="-71.27" y3="-120.95" y2="-121" x8="7.38" y8="-71.47" x2="7.8" x10="11.92" closed="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="11.92" y9="-71.39"/>
<polygon y1="-68.24" x2="11.95" antialias="false" x1="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-68.24" closed="false"/>
<polygon y1="-123.36" x2="4.21" antialias="false" x1="4.21" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="72.39" closed="false"/>
<polygon y1="66.93" x2="-11.96" antialias="false" x1="11.95" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="66.93" closed="false"/>
<polygon y1="78.55" x2="-5.91" antialias="false" x3="-12" x1="-5.9" y3="69.28" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="69.28" closed="false"/>
<polygon y1="72.39" x2="4.13" antialias="false" x3="4.12" x1="6.92" y3="78.53" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="72.4" closed="false"/>
<polygon y1="-119.88" x2="0.62" antialias="false" y4="-118.08" x3="0.62" x1="1.62" y3="-118.08" style="line-style:normal;line-weight:thin;filling:red;color:black" x4="1.62" y2="-119.88"/>
<polygon y1="-119.88" x2="1.62" antialias="false" y4="-118.08" x3="1.62" x1="2.61" y3="-118.08" style="line-style:normal;line-weight:thin;filling:yellow;color:black" x4="2.61" y2="-119.88"/>
<polygon y1="-119.88" x2="2.61" antialias="false" y4="-118.08" x3="2.61" x1="3.61" y3="-118.08" style="line-style:normal;line-weight:thin;filling:green;color:black" x4="3.61" y2="-119.88"/>
<polygon y1="-118.86" x2="9.25" antialias="false" y4="-118.82" x3="10" x1="8.16" y3="-119.32" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-119.31" closed="false"/>
<polygon y1="-119.95" x2="9.25" antialias="false" y4="-120" x3="10" x1="8.16" y3="-119.49" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-119.5" closed="false"/>
<polygon y1="-113.86" x2="9.25" antialias="false" y4="-113.82" x3="10" x1="8.16" y3="-114.32" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-114.32" closed="false"/>
<polygon y1="-114.96" x2="9.25" antialias="false" y4="-115" x3="10" x1="8.16" y3="-114.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-114.5" closed="false"/>
<polygon y1="-108.87" x2="9.25" antialias="false" y4="-108.83" x3="10" x1="8.16" y3="-109.32" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-109.32" closed="false"/>
<polygon y1="-109.96" x2="9.25" antialias="false" y4="-110" x3="10" x1="8.16" y3="-109.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-109.51" closed="false"/>
<polygon y1="-103.87" x2="9.25" antialias="false" y4="-103.83" x3="10" x1="8.16" y3="-104.33" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-104.32" closed="false"/>
<polygon y1="-104.96" x2="9.25" antialias="false" y4="-105" x3="10" x1="8.16" y3="-104.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-104.51" closed="false"/>
<polygon y1="-98.88" x2="9.25" antialias="false" y4="-98.84" x3="10" x1="8.16" y3="-99.34" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-99.33" closed="false"/>
<polygon y1="-99.97" x2="9.25" antialias="false" y4="-100" x3="10" x1="8.16" y3="-99.51" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-99.52" closed="false"/>
<polygon y1="-93.88" x2="9.25" antialias="false" y4="-93.84" x3="10" x1="8.16" y3="-94.34" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-94.33" closed="false"/>
<polygon y1="-94.97" x2="9.25" antialias="false" y4="-95" x3="10" x1="8.16" y3="-94.51" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-94.52" closed="false"/>
<polygon y1="-88.89" x2="9.25" antialias="false" y4="-88.85" x3="10" x1="8.16" y3="-89.34" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-89.34" closed="false"/>
<polygon y1="-89.98" x2="9.25" antialias="false" y4="-90.02" x3="10" x1="8.16" y3="-89.52" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-89.53" closed="false"/>
<polygon y1="-83.89" x2="9.25" antialias="false" y4="-83.85" x3="10" x1="8.16" y3="-84.35" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-84.34" closed="false"/>
<polygon y1="-84.98" x2="9.25" antialias="false" y4="-85.02" x3="10" x1="8.16" y3="-84.52" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-84.53" closed="false"/>
<polygon y1="69.48" x2="9.25" antialias="false" y4="69.52" x3="10" x1="8.16" y3="69.03" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="69.04" closed="false"/>
<polygon y1="68.4" x2="9.25" antialias="false" y4="68.36" x3="10" x1="8.16" y3="68.85" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="68.84" closed="false"/>
<polygon y1="-78.9" x2="9.25" antialias="false" y4="-78.86" x3="10" x1="8.16" y3="-79.36" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-79.35" closed="false"/>
<polygon y1="-80" x2="9.25" antialias="false" y4="-80.03" x3="10" x1="8.16" y3="-79.53" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-79.54" closed="false"/>
<polygon y1="-73.91" x2="9.25" antialias="false" y4="-73.87" x3="10" x1="8.16" y3="-74.37" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-74.36" closed="false"/>
<polygon y1="-75" x2="9.25" antialias="false" y4="-75.04" x3="10" x1="8.16" y3="-74.54" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-74.55" closed="false"/>
<polygon y1="-66.86" x2="11.95" antialias="false" x1="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-66.86" closed="false"/>
<polygon y1="-60.44" x2="-7.72" antialias="false" y4="-54.83" x3="-7.72" x1="-10.15" y3="-54.83" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-60.44"/>
<polygon y1="-52.44" x2="-7.72" antialias="false" y4="-46.83" x3="-7.72" x1="-10.15" y3="-46.83" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-52.44"/>
<polygon y1="-44.44" x2="-7.72" antialias="false" y4="-38.83" x3="-7.72" x1="-10.15" y3="-38.83" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-44.44"/>
<polygon y1="-36.45" x2="-7.72" antialias="false" y4="-30.84" x3="-7.72" x1="-10.15" y3="-30.84" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-36.45"/>
<polygon y1="-28.45" x2="-7.72" antialias="false" y4="-22.84" x3="-7.72" x1="-10.15" y3="-22.84" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-28.45"/>
<polygon y1="-20.45" x2="-7.72" antialias="false" y4="-14.84" x3="-7.72" x1="-10.15" y3="-14.84" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-20.45"/>
<polygon y1="-12.45" x2="-7.72" antialias="false" y4="-6.84" x3="-7.72" x1="-10.15" y3="-6.84" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-12.45"/>
<polygon y1="-4.45" x2="-7.72" antialias="false" y4="1.15" x3="-7.72" x1="-10.15" y3="1.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-4.45"/>
<polygon y1="3.55" x2="-7.72" antialias="false" y4="9.15" x3="-7.72" x1="-10.15" y3="9.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="3.55"/>
<polygon y1="11.55" x2="-7.72" antialias="false" y4="17.15" x3="-7.72" x1="-10.15" y3="17.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="11.55"/>
<polygon y1="19.55" x2="-7.72" antialias="false" y4="25.15" x3="-7.72" x1="-10.15" y3="25.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="19.55"/>
<polygon y1="27.54" x2="-7.72" antialias="false" y4="33.15" x3="-7.72" x1="-10.15" y3="33.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="27.54"/>
<polygon y1="35.54" x2="-7.72" antialias="false" y4="41.14" x3="-7.72" x1="-10.15" y3="41.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="35.54"/>
<polygon y1="43.54" x2="-7.72" antialias="false" y4="49.14" x3="-7.72" x1="-10.15" y3="49.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="43.54"/>
<polygon y1="51.54" x2="-7.72" antialias="false" y4="57.14" x3="-7.72" x1="-10.15" y3="57.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="51.54"/>
<polygon y1="59.54" x2="-7.72" antialias="false" y4="65.14" x3="-7.72" x1="-10.15" y3="65.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="59.54"/>
<polygon y1="-60.44" x2="-10.15" antialias="false" y4="-60.44" x3="-7.72" x1="-10.15" y3="65.14" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="-7.72" y2="65.14"/>
<polygon y1="-60.44" x2="-12.1" antialias="false" y4="-60.44" x3="-6.03" x1="-12.1" y3="69.23" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="-6.03" y2="69.23"/>
<polygon y1="-115.3" x2="3.32" antialias="false" y4="-117.1" x3="3.32" x1="0.92" y3="-117.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-115.3"/>
<polygon y1="-112.5" x2="3.32" antialias="false" y4="-114.3" x3="3.32" x1="0.92" y3="-114.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-112.5"/>
<polygon y1="-109.7" x2="3.32" antialias="false" y4="-111.5" x3="3.32" x1="0.92" y3="-111.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-109.7"/>
<polygon y1="-106.9" x2="3.32" antialias="false" y4="-108.7" x3="3.32" x1="0.92" y3="-108.7" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-106.9"/>
<polygon y1="-104.1" x2="3.32" antialias="false" y4="-105.9" x3="3.32" x1="0.92" y3="-105.9" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-104.1"/>
<polygon y1="-101.3" x2="3.32" antialias="false" y4="-103.1" x3="3.32" x1="0.92" y3="-103.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-101.3"/>
<polygon y1="-98.5" x2="3.32" antialias="false" y4="-100.3" x3="3.32" x1="0.92" y3="-100.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-98.5"/>
<polygon y1="-95.7" x2="3.32" antialias="false" y4="-97.5" x3="3.32" x1="0.92" y3="-97.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-95.7"/>
<polygon y1="-92.91" x2="3.32" antialias="false" y4="-94.71" x3="3.32" x1="0.92" y3="-94.71" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-92.91"/>
<polygon y1="-90.1" x2="3.32" antialias="false" y4="-91.9" x3="3.32" x1="0.92" y3="-91.9" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-90.1"/>
<polygon y1="-87.3" x2="3.32" antialias="false" y4="-89.1" x3="3.32" x1="0.92" y3="-89.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-87.3"/>
<polygon y1="-84.51" x2="3.32" antialias="false" y4="-86.31" x3="3.32" x1="0.92" y3="-86.31" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-84.51"/>
<polygon y1="-81.71" x2="3.32" antialias="false" y4="-83.51" x3="3.32" x1="0.92" y3="-83.51" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-81.71"/>
<polygon y1="-78.9" x2="3.32" antialias="false" y4="-80.71" x3="3.32" x1="0.92" y3="-80.71" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-78.9"/>
<polygon y1="-76.11" x2="3.32" antialias="false" y4="-77.9" x3="3.32" x1="0.92" y3="-77.9" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-76.11"/>
<polygon y1="-73.31" x2="3.32" antialias="false" y4="-75.1" x3="3.32" x1="0.92" y3="-75.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-73.31"/>
<text y="-84.8" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="763-1108" x="-5.89" rotation="270" color="#000000"/>
<polygon y1="-62.85" x2="-8.76" antialias="false" y4="-66.85" x3="-8.76" x1="8.84" y3="-66.85" style="line-style:normal;line-weight:thin;filling:orange;color:black" x4="8.84" y2="-62.85"/>
<circle antialias="false" y="-57.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-49.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-41.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-33.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-25.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-17.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-9.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-1.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="6.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="14.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="22.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="30.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="38.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="46.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="56.6" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="64.6" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-61.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-53.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-45.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-37.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-29.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-21.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-13.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-5.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="2.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="10.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="18.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="26.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="34.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="42.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="52.4" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="60.4" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-59.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-51.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-43.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-35.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-27.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-19.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-11.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-3.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="4.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="12.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="20.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="28.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="36.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="44.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="54.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="62.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-61.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-53.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-45.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-37.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-29.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-21.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-13.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-5.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="2.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="10.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="18.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="26.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="34.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="42.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="52.3" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="60.3" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
</description>
</definition>

View File

@@ -1,160 +0,0 @@
<definition type="element" width="40" version="0.90" link_type="simple" hotspot_y="136" hotspot_x="22" height="220">
<names>
<name lang="de">763-1116</name>
<name lang="fr">763-1116</name>
<name lang="en">763-1116</name>
<name lang="cs">763-1116</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-1116</elementInformation>
<elementInformation show="1" name="description">16DI ADV 24 V DC HS</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<polygon y1="51.47" x2="9.22" antialias="false" y4="51.51" x3="9.96" x1="8.12" y3="51.02" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.38" y2="51.03" closed="false"/>
<polygon x7="-14.73" x60="7.83" y13="76.8" x29="11.59" y53="-88.59" x53="11.58" y67="-100.11" x89="11.58" y32="50.11" x75="12" x86="11.58" x94="12" y84="-113.69" y68="-100.22" y86="-115.21" y47="-83.6" y4="-129.61" x19="9.72" y92="-120.2" x2="-16.23" y16="78.6" x73="7.83" x79="7.83" y74="-105.22" x52="12" y48="-83.72" x64="12" x87="12" y33="49.7" x8="-12" x80="11.58" y93="-120.64" y62="-95.27" x55="7.83" x49="7.82" y52="-88.17" y23="69.74" y46="-83.18" y19="72.41" y60="-93.71" y77="-108.58" y3="-130.65" y31="50.23" y36="-73.77" x14="-17.18" y87="-115.64" x24="7.73" x10="-14.78" x6="-14.78" x54="7.83" y49="-85.13" x15="-16.48" y80="-110.22" x12="-17.42" x3="-17.06" y9="76.18" y90="-118.69" y14="77.69" y98="-131.4" y45="-80.62" x81="12" x67="7.83" y5="-123.89" y25="68.21" y20="75.7" x13="-17.43" y34="-73.31" y18="72.41" x5="-17.42" y38="-75.29" y69="-100.65" y73="-105.11" x62="11.62" y55="-90.12" x23="11.59" x66="7.83" y72="-103.7" x59="11.58" y42="-78.77" x40="12" x38="11.68" x83="11.58" y83="-113.57" y95="-128.5" x32="11.59" y97="-123.39" antialias="false" x56="11.62" x69="12" y40="-78.32" x4="-17.42" y27="67.67" x61="7.83" x95="9.72" y56="-90.28" x25="7.73" y58="-93.16" x68="11.58" x71="11.58" x74="11.58" y44="-80.29" y70="-103.16" x21="12.02" y29="51.76" style="line-style:normal;line-weight:thin;filling:white;color:black" y24="69.62" y7="-128.98" x34="12" y91="-120.09" x93="12" x16="-15.62" x43="7.92" y30="51.64" x72="7.83" y94="-128.49" y41="-78.64" y11="72.9" x26="11.59" x70="12" x96="9.72" x46="12" x37="7.92" y79="-110.11" y82="-113.15" y64="-98.16" y88="-118.14" x98="6.91" y57="-90.66" y59="-93.59" x92="11.58" x85="7.83" x76="12" y43="-80.17" x47="11.58" x27="12" x50="11.62" y96="-123.39" y21="75.65" y81="-110.64" y35="-73.65" x18="6.95" x78="7.83" y54="-88.71" x90="7.83" y1="-131.38" y10="76.2" y61="-95.12" y15="78.38" y12="72.9" y66="-98.71" y39="-75.62" x77="11.58" y50="-85.28" y26="68.1" x36="7.92" y65="-98.58" x30="7.73" y89="-118.57" x91="7.83" x31="7.73" x1="-15.59" x42="7.92" x33="12" y71="-103.58" y63="-95.66" x48="7.82" y75="-105.65" y85="-115.1" x58="12" x45="12" x44="11.69" x11="-14.78" y28="52.18" x97="6.92" y76="-108.15" y22="70.17" x88="12" x39="12" x22="12.02" x9="-12" x20="9.75" x17="6.92" y37="-75.18" x35="11.68" y6="-123.89" x82="12" y17="78.59" x28="12" x51="12" x57="12" x84="7.83" y2="-131.25" x41="11.69" y51="-85.67" y8="-128.98" x63="12" x65="11.58" y78="-108.7"/>
<polygon y1="50.39" x2="9.22" antialias="false" y4="50.35" x3="9.96" x1="8.12" y3="50.85" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.38" y2="50.83" closed="false"/>
<dynamic_text z="4" frame="false" keep_visual_rotation="true" text_width="-1" uuid="{7b126569-7aa5-4c19-a198-0690e9e25f60}" text_from="ElementInfo" y="-131.68" Valignment="AlignVCenter" font="Sans Serif,2.86,-1,5,25,0,0,0,0,0" Halignment="AlignHCenter" x="-4.52" rotation="0">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon y1="-124.69" x2="-10.27" antialias="false" y4="-124.69" x3="5.03" x1="-10.27" y3="-128.71" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="5.03" y2="-128.71"/>
<rect width="17.55" ry="1.14" antialias="false" rx="1.14" y="-130.08" style="line-style:normal;line-weight:thin;filling:none;color:black" height="6.63" x="-11.38"/>
<polygon y1="-120.9" x2="0" antialias="false" y4="-72.3" x3="0" x1="4.22" y3="-72.3" style="line-style:normal;line-weight:thin;filling:yellow;color:black" x4="4.22" y2="-120.9"/>
<polygon y1="-121.12" x5="7.22" x7="7.27" y7="-71.6" x6="7.22" y5="-120.41" x3="7.55" y6="-71.79" x9="7.61" y4="-120.72" x4="7.3" antialias="false" y10="-71.27" y3="-120.95" y2="-121" x8="7.38" y8="-71.47" x2="7.8" x10="11.92" closed="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="11.92" y9="-71.39"/>
<polygon y1="-68.24" x2="11.95" antialias="false" x1="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-68.24" closed="false"/>
<polygon y1="-123.36" x2="4.21" antialias="false" x1="4.21" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="72.39" closed="false"/>
<polygon y1="66.93" x2="-11.96" antialias="false" x1="11.95" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="66.93" closed="false"/>
<polygon y1="78.55" x2="-5.91" antialias="false" x3="-12" x1="-5.9" y3="69.28" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="69.28" closed="false"/>
<polygon y1="72.39" x2="4.13" antialias="false" x3="4.12" x1="6.92" y3="78.53" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="72.4" closed="false"/>
<polygon y1="-119.88" x2="0.62" antialias="false" y4="-118.08" x3="0.62" x1="1.62" y3="-118.08" style="line-style:normal;line-weight:thin;filling:red;color:black" x4="1.62" y2="-119.88"/>
<polygon y1="-119.88" x2="1.62" antialias="false" y4="-118.08" x3="1.62" x1="2.61" y3="-118.08" style="line-style:normal;line-weight:thin;filling:yellow;color:black" x4="2.61" y2="-119.88"/>
<polygon y1="-119.88" x2="2.61" antialias="false" y4="-118.08" x3="2.61" x1="3.61" y3="-118.08" style="line-style:normal;line-weight:thin;filling:green;color:black" x4="3.61" y2="-119.88"/>
<polygon y1="-118.86" x2="9.25" antialias="false" y4="-118.82" x3="10" x1="8.16" y3="-119.32" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-119.31" closed="false"/>
<polygon y1="-119.95" x2="9.25" antialias="false" y4="-120" x3="10" x1="8.16" y3="-119.49" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-119.5" closed="false"/>
<polygon y1="-113.86" x2="9.25" antialias="false" y4="-113.82" x3="10" x1="8.16" y3="-114.32" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-114.32" closed="false"/>
<polygon y1="-114.96" x2="9.25" antialias="false" y4="-115" x3="10" x1="8.16" y3="-114.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-114.5" closed="false"/>
<polygon y1="-108.87" x2="9.25" antialias="false" y4="-108.83" x3="10" x1="8.16" y3="-109.32" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-109.32" closed="false"/>
<polygon y1="-109.96" x2="9.25" antialias="false" y4="-110" x3="10" x1="8.16" y3="-109.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-109.51" closed="false"/>
<polygon y1="-103.87" x2="9.25" antialias="false" y4="-103.83" x3="10" x1="8.16" y3="-104.33" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-104.32" closed="false"/>
<polygon y1="-104.96" x2="9.25" antialias="false" y4="-105" x3="10" x1="8.16" y3="-104.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-104.51" closed="false"/>
<polygon y1="-98.88" x2="9.25" antialias="false" y4="-98.84" x3="10" x1="8.16" y3="-99.34" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-99.33" closed="false"/>
<polygon y1="-99.97" x2="9.25" antialias="false" y4="-100" x3="10" x1="8.16" y3="-99.51" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-99.52" closed="false"/>
<polygon y1="-93.88" x2="9.25" antialias="false" y4="-93.84" x3="10" x1="8.16" y3="-94.34" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-94.33" closed="false"/>
<polygon y1="-94.97" x2="9.25" antialias="false" y4="-95" x3="10" x1="8.16" y3="-94.51" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-94.52" closed="false"/>
<polygon y1="-88.89" x2="9.25" antialias="false" y4="-88.85" x3="10" x1="8.16" y3="-89.34" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-89.34" closed="false"/>
<polygon y1="-89.98" x2="9.25" antialias="false" y4="-90.02" x3="10" x1="8.16" y3="-89.52" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-89.53" closed="false"/>
<polygon y1="-83.89" x2="9.25" antialias="false" y4="-83.85" x3="10" x1="8.16" y3="-84.35" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-84.34" closed="false"/>
<polygon y1="-84.98" x2="9.25" antialias="false" y4="-85.02" x3="10" x1="8.16" y3="-84.52" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-84.53" closed="false"/>
<polygon y1="69.48" x2="9.25" antialias="false" y4="69.52" x3="10" x1="8.16" y3="69.03" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="69.04" closed="false"/>
<polygon y1="68.4" x2="9.25" antialias="false" y4="68.36" x3="10" x1="8.16" y3="68.85" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="68.84" closed="false"/>
<polygon y1="-78.9" x2="9.25" antialias="false" y4="-78.86" x3="10" x1="8.16" y3="-79.36" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-79.35" closed="false"/>
<polygon y1="-80" x2="9.25" antialias="false" y4="-80.03" x3="10" x1="8.16" y3="-79.53" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-79.54" closed="false"/>
<polygon y1="-73.91" x2="9.25" antialias="false" y4="-73.87" x3="10" x1="8.16" y3="-74.37" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-74.36" closed="false"/>
<polygon y1="-75" x2="9.25" antialias="false" y4="-75.04" x3="10" x1="8.16" y3="-74.54" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-74.55" closed="false"/>
<polygon y1="-66.86" x2="11.95" antialias="false" x1="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-66.86" closed="false"/>
<polygon y1="-60.44" x2="-7.72" antialias="false" y4="-54.83" x3="-7.72" x1="-10.15" y3="-54.83" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-60.44"/>
<polygon y1="-52.44" x2="-7.72" antialias="false" y4="-46.83" x3="-7.72" x1="-10.15" y3="-46.83" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-52.44"/>
<polygon y1="-44.44" x2="-7.72" antialias="false" y4="-38.83" x3="-7.72" x1="-10.15" y3="-38.83" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-44.44"/>
<polygon y1="-36.45" x2="-7.72" antialias="false" y4="-30.84" x3="-7.72" x1="-10.15" y3="-30.84" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-36.45"/>
<polygon y1="-28.45" x2="-7.72" antialias="false" y4="-22.84" x3="-7.72" x1="-10.15" y3="-22.84" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-28.45"/>
<polygon y1="-20.45" x2="-7.72" antialias="false" y4="-14.84" x3="-7.72" x1="-10.15" y3="-14.84" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-20.45"/>
<polygon y1="-12.45" x2="-7.72" antialias="false" y4="-6.84" x3="-7.72" x1="-10.15" y3="-6.84" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-12.45"/>
<polygon y1="-4.45" x2="-7.72" antialias="false" y4="1.15" x3="-7.72" x1="-10.15" y3="1.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-4.45"/>
<polygon y1="3.55" x2="-7.72" antialias="false" y4="9.15" x3="-7.72" x1="-10.15" y3="9.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="3.55"/>
<polygon y1="11.55" x2="-7.72" antialias="false" y4="17.15" x3="-7.72" x1="-10.15" y3="17.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="11.55"/>
<polygon y1="19.55" x2="-7.72" antialias="false" y4="25.15" x3="-7.72" x1="-10.15" y3="25.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="19.55"/>
<polygon y1="27.54" x2="-7.72" antialias="false" y4="33.15" x3="-7.72" x1="-10.15" y3="33.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="27.54"/>
<polygon y1="35.54" x2="-7.72" antialias="false" y4="41.14" x3="-7.72" x1="-10.15" y3="41.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="35.54"/>
<polygon y1="43.54" x2="-7.72" antialias="false" y4="49.14" x3="-7.72" x1="-10.15" y3="49.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="43.54"/>
<polygon y1="51.54" x2="-7.72" antialias="false" y4="57.14" x3="-7.72" x1="-10.15" y3="57.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="51.54"/>
<polygon y1="59.54" x2="-7.72" antialias="false" y4="65.14" x3="-7.72" x1="-10.15" y3="65.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="59.54"/>
<polygon y1="-60.44" x2="-10.15" antialias="false" y4="-60.44" x3="-7.72" x1="-10.15" y3="65.14" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="-7.72" y2="65.14"/>
<polygon y1="-60.44" x2="-12.1" antialias="false" y4="-60.44" x3="-6.03" x1="-12.1" y3="69.23" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="-6.03" y2="69.23"/>
<polygon y1="-115.3" x2="3.32" antialias="false" y4="-117.1" x3="3.32" x1="0.92" y3="-117.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-115.3"/>
<polygon y1="-112.5" x2="3.32" antialias="false" y4="-114.3" x3="3.32" x1="0.92" y3="-114.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-112.5"/>
<polygon y1="-109.7" x2="3.32" antialias="false" y4="-111.5" x3="3.32" x1="0.92" y3="-111.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-109.7"/>
<polygon y1="-106.9" x2="3.32" antialias="false" y4="-108.7" x3="3.32" x1="0.92" y3="-108.7" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-106.9"/>
<polygon y1="-104.1" x2="3.32" antialias="false" y4="-105.9" x3="3.32" x1="0.92" y3="-105.9" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-104.1"/>
<polygon y1="-101.3" x2="3.32" antialias="false" y4="-103.1" x3="3.32" x1="0.92" y3="-103.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-101.3"/>
<polygon y1="-98.5" x2="3.32" antialias="false" y4="-100.3" x3="3.32" x1="0.92" y3="-100.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-98.5"/>
<polygon y1="-95.7" x2="3.32" antialias="false" y4="-97.5" x3="3.32" x1="0.92" y3="-97.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-95.7"/>
<polygon y1="-92.91" x2="3.32" antialias="false" y4="-94.71" x3="3.32" x1="0.92" y3="-94.71" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-92.91"/>
<polygon y1="-90.1" x2="3.32" antialias="false" y4="-91.9" x3="3.32" x1="0.92" y3="-91.9" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-90.1"/>
<polygon y1="-87.3" x2="3.32" antialias="false" y4="-89.1" x3="3.32" x1="0.92" y3="-89.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-87.3"/>
<polygon y1="-84.51" x2="3.32" antialias="false" y4="-86.31" x3="3.32" x1="0.92" y3="-86.31" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-84.51"/>
<polygon y1="-81.71" x2="3.32" antialias="false" y4="-83.51" x3="3.32" x1="0.92" y3="-83.51" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-81.71"/>
<polygon y1="-78.9" x2="3.32" antialias="false" y4="-80.71" x3="3.32" x1="0.92" y3="-80.71" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-78.9"/>
<polygon y1="-76.11" x2="3.32" antialias="false" y4="-77.9" x3="3.32" x1="0.92" y3="-77.9" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-76.11"/>
<polygon y1="-73.31" x2="3.32" antialias="false" y4="-75.1" x3="3.32" x1="0.92" y3="-75.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-73.31"/>
<text y="-84.8" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="763-1116" x="-5.89" rotation="270" color="#000000"/>
<polygon y1="-62.85" x2="-8.76" antialias="false" y4="-66.85" x3="-8.76" x1="8.84" y3="-66.85" style="line-style:normal;line-weight:thin;filling:orange;color:black" x4="8.84" y2="-62.85"/>
<circle antialias="false" y="-57.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-49.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-41.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-33.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-25.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-17.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-9.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-1.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="6.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="14.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="22.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="30.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="38.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="46.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="56.6" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="64.6" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-61.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-53.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-45.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-37.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-29.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-21.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-13.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-5.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="2.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="10.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="18.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="26.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="34.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="42.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="52.4" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="60.4" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-59.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-51.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-43.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-35.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-27.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-19.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-11.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-3.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="4.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="12.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="20.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="28.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="36.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="44.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="54.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="62.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-61.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-53.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-45.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-37.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-29.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-21.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-13.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-5.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="2.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="10.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="18.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="26.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="34.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="42.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="52.3" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="60.3" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
</description>
</definition>

View File

@@ -1,14 +0,0 @@
<qet-directory>
<names>
<name lang="pl">DigitalOUT</name>
<name lang="de">DigitalOUT</name>
<name lang="el">DigitalOUT</name>
<name lang="it">DigitalOUT</name>
<name lang="ru">DigitalOUT</name>
<name lang="nl">DigitalOUT</name>
<name lang="cs">DigitalOUT</name>
<name lang="en">DigitalOUT</name>
<name lang="fr">DigitalOUT</name>
<name lang="da">DigitalOUT</name>
</names>
</qet-directory>

View File

@@ -1,160 +0,0 @@
<definition type="element" width="40" version="0.90" link_type="simple" hotspot_y="136" hotspot_x="22" height="220">
<names>
<name lang="de">763-1508</name>
<name lang="fr">763-1508</name>
<name lang="en">763-1508</name>
<name lang="cs">763-1508</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-1508</elementInformation>
<elementInformation show="1" name="description">8DO ADV 24 V DC; 0,5 A; HS</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<polygon y1="51.47" x2="9.22" antialias="false" y4="51.51" x3="9.96" x1="8.12" y3="51.02" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.38" y2="51.03" closed="false"/>
<polygon x7="-14.73" x60="7.83" y13="76.8" x29="11.59" y53="-88.59" x53="11.58" y67="-100.11" x89="11.58" y32="50.11" x75="12" x86="11.58" x94="12" y84="-113.69" y68="-100.22" y86="-115.21" y47="-83.6" y4="-129.61" x19="9.72" y92="-120.2" x2="-16.23" y16="78.6" x73="7.83" x79="7.83" y74="-105.22" x52="12" y48="-83.72" x64="12" x87="12" y33="49.7" x8="-12" x80="11.58" y93="-120.64" y62="-95.27" x55="7.83" x49="7.82" y52="-88.17" y23="69.74" y46="-83.18" y19="72.41" y60="-93.71" y77="-108.58" y3="-130.65" y31="50.23" y36="-73.77" x14="-17.18" y87="-115.64" x24="7.73" x10="-14.78" x6="-14.78" x54="7.83" y49="-85.13" x15="-16.48" y80="-110.22" x12="-17.42" x3="-17.06" y9="76.18" y90="-118.69" y14="77.69" y98="-131.4" y45="-80.62" x81="12" x67="7.83" y5="-123.89" y25="68.21" y20="75.7" x13="-17.43" y34="-73.31" y18="72.41" x5="-17.42" y38="-75.29" y69="-100.65" y73="-105.11" x62="11.62" y55="-90.12" x23="11.59" x66="7.83" y72="-103.7" x59="11.58" y42="-78.77" x40="12" x38="11.68" x83="11.58" y83="-113.57" y95="-128.5" x32="11.59" y97="-123.39" antialias="false" x56="11.62" x69="12" y40="-78.32" x4="-17.42" y27="67.67" x61="7.83" x95="9.72" y56="-90.28" x25="7.73" y58="-93.16" x68="11.58" x71="11.58" x74="11.58" y44="-80.29" y70="-103.16" x21="12.02" y29="51.76" style="line-style:normal;line-weight:thin;filling:white;color:black" y24="69.62" y7="-128.98" x34="12" y91="-120.09" x93="12" x16="-15.62" x43="7.92" y30="51.64" x72="7.83" y94="-128.49" y41="-78.64" y11="72.9" x26="11.59" x70="12" x96="9.72" x46="12" x37="7.92" y79="-110.11" y82="-113.15" y64="-98.16" y88="-118.14" x98="6.91" y57="-90.66" y59="-93.59" x92="11.58" x85="7.83" x76="12" y43="-80.17" x47="11.58" x27="12" x50="11.62" y96="-123.39" y21="75.65" y81="-110.64" y35="-73.65" x18="6.95" x78="7.83" y54="-88.71" x90="7.83" y1="-131.38" y10="76.2" y61="-95.12" y15="78.38" y12="72.9" y66="-98.71" y39="-75.62" x77="11.58" y50="-85.28" y26="68.1" x36="7.92" y65="-98.58" x30="7.73" y89="-118.57" x91="7.83" x31="7.73" x1="-15.59" x42="7.92" x33="12" y71="-103.58" y63="-95.66" x48="7.82" y75="-105.65" y85="-115.1" x58="12" x45="12" x44="11.69" x11="-14.78" y28="52.18" x97="6.92" y76="-108.15" y22="70.17" x88="12" x39="12" x22="12.02" x9="-12" x20="9.75" x17="6.92" y37="-75.18" x35="11.68" y6="-123.89" x82="12" y17="78.59" x28="12" x51="12" x57="12" x84="7.83" y2="-131.25" x41="11.69" y51="-85.67" y8="-128.98" x63="12" x65="11.58" y78="-108.7"/>
<polygon y1="50.39" x2="9.22" antialias="false" y4="50.35" x3="9.96" x1="8.12" y3="50.85" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.38" y2="50.83" closed="false"/>
<dynamic_text z="4" frame="false" keep_visual_rotation="true" text_width="-1" uuid="{7b126569-7aa5-4c19-a198-0690e9e25f60}" text_from="ElementInfo" y="-131.68" Valignment="AlignVCenter" font="Sans Serif,2.86,-1,5,25,0,0,0,0,0" Halignment="AlignHCenter" x="-4.52" rotation="0">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon y1="-124.69" x2="-10.27" antialias="false" y4="-124.69" x3="5.03" x1="-10.27" y3="-128.71" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="5.03" y2="-128.71"/>
<rect width="17.55" ry="1.14" antialias="false" rx="1.14" y="-130.08" style="line-style:normal;line-weight:thin;filling:none;color:black" height="6.63" x="-11.38"/>
<polygon y1="-120.9" x2="0" antialias="false" y4="-72.3" x3="0" x1="4.22" y3="-72.3" style="line-style:normal;line-weight:thin;filling:red;color:black" x4="4.22" y2="-120.9"/>
<polygon y1="-121.12" x5="7.22" x7="7.27" y7="-71.6" x6="7.22" y5="-120.41" x3="7.55" y6="-71.79" x9="7.61" y4="-120.72" x4="7.3" antialias="false" y10="-71.27" y3="-120.95" y2="-121" x8="7.38" y8="-71.47" x2="7.8" x10="11.92" closed="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="11.92" y9="-71.39"/>
<polygon y1="-68.24" x2="11.95" antialias="false" x1="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-68.24" closed="false"/>
<polygon y1="-123.36" x2="4.21" antialias="false" x1="4.21" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="72.39" closed="false"/>
<polygon y1="66.93" x2="-11.96" antialias="false" x1="11.95" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="66.93" closed="false"/>
<polygon y1="78.55" x2="-5.91" antialias="false" x3="-12" x1="-5.9" y3="69.28" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="69.28" closed="false"/>
<polygon y1="72.39" x2="4.13" antialias="false" x3="4.12" x1="6.92" y3="78.53" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="72.4" closed="false"/>
<polygon y1="-119.88" x2="0.62" antialias="false" y4="-118.08" x3="0.62" x1="1.62" y3="-118.08" style="line-style:normal;line-weight:thin;filling:red;color:black" x4="1.62" y2="-119.88"/>
<polygon y1="-119.88" x2="1.62" antialias="false" y4="-118.08" x3="1.62" x1="2.61" y3="-118.08" style="line-style:normal;line-weight:thin;filling:yellow;color:black" x4="2.61" y2="-119.88"/>
<polygon y1="-119.88" x2="2.61" antialias="false" y4="-118.08" x3="2.61" x1="3.61" y3="-118.08" style="line-style:normal;line-weight:thin;filling:green;color:black" x4="3.61" y2="-119.88"/>
<polygon y1="-118.86" x2="9.25" antialias="false" y4="-118.82" x3="10" x1="8.16" y3="-119.32" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-119.31" closed="false"/>
<polygon y1="-119.95" x2="9.25" antialias="false" y4="-120" x3="10" x1="8.16" y3="-119.49" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-119.5" closed="false"/>
<polygon y1="-113.86" x2="9.25" antialias="false" y4="-113.82" x3="10" x1="8.16" y3="-114.32" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-114.32" closed="false"/>
<polygon y1="-114.96" x2="9.25" antialias="false" y4="-115" x3="10" x1="8.16" y3="-114.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-114.5" closed="false"/>
<polygon y1="-108.87" x2="9.25" antialias="false" y4="-108.83" x3="10" x1="8.16" y3="-109.32" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-109.32" closed="false"/>
<polygon y1="-109.96" x2="9.25" antialias="false" y4="-110" x3="10" x1="8.16" y3="-109.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-109.51" closed="false"/>
<polygon y1="-103.87" x2="9.25" antialias="false" y4="-103.83" x3="10" x1="8.16" y3="-104.33" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-104.32" closed="false"/>
<polygon y1="-104.96" x2="9.25" antialias="false" y4="-105" x3="10" x1="8.16" y3="-104.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-104.51" closed="false"/>
<polygon y1="-98.88" x2="9.25" antialias="false" y4="-98.84" x3="10" x1="8.16" y3="-99.34" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-99.33" closed="false"/>
<polygon y1="-99.97" x2="9.25" antialias="false" y4="-100" x3="10" x1="8.16" y3="-99.51" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-99.52" closed="false"/>
<polygon y1="-93.88" x2="9.25" antialias="false" y4="-93.84" x3="10" x1="8.16" y3="-94.34" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-94.33" closed="false"/>
<polygon y1="-94.97" x2="9.25" antialias="false" y4="-95" x3="10" x1="8.16" y3="-94.51" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-94.52" closed="false"/>
<polygon y1="-88.89" x2="9.25" antialias="false" y4="-88.85" x3="10" x1="8.16" y3="-89.34" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-89.34" closed="false"/>
<polygon y1="-89.98" x2="9.25" antialias="false" y4="-90.02" x3="10" x1="8.16" y3="-89.52" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-89.53" closed="false"/>
<polygon y1="-83.89" x2="9.25" antialias="false" y4="-83.85" x3="10" x1="8.16" y3="-84.35" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-84.34" closed="false"/>
<polygon y1="-84.98" x2="9.25" antialias="false" y4="-85.02" x3="10" x1="8.16" y3="-84.52" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-84.53" closed="false"/>
<polygon y1="69.48" x2="9.25" antialias="false" y4="69.52" x3="10" x1="8.16" y3="69.03" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="69.04" closed="false"/>
<polygon y1="68.4" x2="9.25" antialias="false" y4="68.36" x3="10" x1="8.16" y3="68.85" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="68.84" closed="false"/>
<polygon y1="-78.9" x2="9.25" antialias="false" y4="-78.86" x3="10" x1="8.16" y3="-79.36" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-79.35" closed="false"/>
<polygon y1="-80" x2="9.25" antialias="false" y4="-80.03" x3="10" x1="8.16" y3="-79.53" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-79.54" closed="false"/>
<polygon y1="-73.91" x2="9.25" antialias="false" y4="-73.87" x3="10" x1="8.16" y3="-74.37" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-74.36" closed="false"/>
<polygon y1="-75" x2="9.25" antialias="false" y4="-75.04" x3="10" x1="8.16" y3="-74.54" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-74.55" closed="false"/>
<polygon y1="-66.86" x2="11.95" antialias="false" x1="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-66.86" closed="false"/>
<polygon y1="-60.44" x2="-7.72" antialias="false" y4="-54.83" x3="-7.72" x1="-10.15" y3="-54.83" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-60.44"/>
<polygon y1="-52.44" x2="-7.72" antialias="false" y4="-46.83" x3="-7.72" x1="-10.15" y3="-46.83" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-52.44"/>
<polygon y1="-44.44" x2="-7.72" antialias="false" y4="-38.83" x3="-7.72" x1="-10.15" y3="-38.83" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-44.44"/>
<polygon y1="-36.45" x2="-7.72" antialias="false" y4="-30.84" x3="-7.72" x1="-10.15" y3="-30.84" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-36.45"/>
<polygon y1="-28.45" x2="-7.72" antialias="false" y4="-22.84" x3="-7.72" x1="-10.15" y3="-22.84" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-28.45"/>
<polygon y1="-20.45" x2="-7.72" antialias="false" y4="-14.84" x3="-7.72" x1="-10.15" y3="-14.84" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-20.45"/>
<polygon y1="-12.45" x2="-7.72" antialias="false" y4="-6.84" x3="-7.72" x1="-10.15" y3="-6.84" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-12.45"/>
<polygon y1="-4.45" x2="-7.72" antialias="false" y4="1.15" x3="-7.72" x1="-10.15" y3="1.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-4.45"/>
<polygon y1="3.55" x2="-7.72" antialias="false" y4="9.15" x3="-7.72" x1="-10.15" y3="9.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="3.55"/>
<polygon y1="11.55" x2="-7.72" antialias="false" y4="17.15" x3="-7.72" x1="-10.15" y3="17.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="11.55"/>
<polygon y1="19.55" x2="-7.72" antialias="false" y4="25.15" x3="-7.72" x1="-10.15" y3="25.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="19.55"/>
<polygon y1="27.54" x2="-7.72" antialias="false" y4="33.15" x3="-7.72" x1="-10.15" y3="33.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="27.54"/>
<polygon y1="35.54" x2="-7.72" antialias="false" y4="41.14" x3="-7.72" x1="-10.15" y3="41.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="35.54"/>
<polygon y1="43.54" x2="-7.72" antialias="false" y4="49.14" x3="-7.72" x1="-10.15" y3="49.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="43.54"/>
<polygon y1="51.54" x2="-7.72" antialias="false" y4="57.14" x3="-7.72" x1="-10.15" y3="57.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="51.54"/>
<polygon y1="59.54" x2="-7.72" antialias="false" y4="65.14" x3="-7.72" x1="-10.15" y3="65.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="59.54"/>
<polygon y1="-60.44" x2="-10.15" antialias="false" y4="-60.44" x3="-7.72" x1="-10.15" y3="65.14" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="-7.72" y2="65.14"/>
<polygon y1="-60.44" x2="-12.1" antialias="false" y4="-60.44" x3="-6.03" x1="-12.1" y3="69.23" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="-6.03" y2="69.23"/>
<polygon y1="-115.3" x2="3.32" antialias="false" y4="-117.1" x3="3.32" x1="0.92" y3="-117.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-115.3"/>
<polygon y1="-112.5" x2="3.32" antialias="false" y4="-114.3" x3="3.32" x1="0.92" y3="-114.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-112.5"/>
<polygon y1="-109.7" x2="3.32" antialias="false" y4="-111.5" x3="3.32" x1="0.92" y3="-111.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-109.7"/>
<polygon y1="-106.9" x2="3.32" antialias="false" y4="-108.7" x3="3.32" x1="0.92" y3="-108.7" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-106.9"/>
<polygon y1="-104.1" x2="3.32" antialias="false" y4="-105.9" x3="3.32" x1="0.92" y3="-105.9" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-104.1"/>
<polygon y1="-101.3" x2="3.32" antialias="false" y4="-103.1" x3="3.32" x1="0.92" y3="-103.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-101.3"/>
<polygon y1="-98.5" x2="3.32" antialias="false" y4="-100.3" x3="3.32" x1="0.92" y3="-100.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-98.5"/>
<polygon y1="-95.7" x2="3.32" antialias="false" y4="-97.5" x3="3.32" x1="0.92" y3="-97.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-95.7"/>
<polygon y1="-92.91" x2="3.32" antialias="false" y4="-94.71" x3="3.32" x1="0.92" y3="-94.71" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-92.91"/>
<polygon y1="-90.1" x2="3.32" antialias="false" y4="-91.9" x3="3.32" x1="0.92" y3="-91.9" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-90.1"/>
<polygon y1="-87.3" x2="3.32" antialias="false" y4="-89.1" x3="3.32" x1="0.92" y3="-89.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-87.3"/>
<polygon y1="-84.51" x2="3.32" antialias="false" y4="-86.31" x3="3.32" x1="0.92" y3="-86.31" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-84.51"/>
<polygon y1="-81.71" x2="3.32" antialias="false" y4="-83.51" x3="3.32" x1="0.92" y3="-83.51" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-81.71"/>
<polygon y1="-78.9" x2="3.32" antialias="false" y4="-80.71" x3="3.32" x1="0.92" y3="-80.71" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-78.9"/>
<polygon y1="-76.11" x2="3.32" antialias="false" y4="-77.9" x3="3.32" x1="0.92" y3="-77.9" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-76.11"/>
<polygon y1="-73.31" x2="3.32" antialias="false" y4="-75.1" x3="3.32" x1="0.92" y3="-75.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-73.31"/>
<text y="-84.8" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="763-1508" x="-5.89" rotation="270" color="#000000"/>
<polygon y1="-62.85" x2="-8.76" antialias="false" y4="-66.85" x3="-8.76" x1="8.84" y3="-66.85" style="line-style:normal;line-weight:thin;filling:orange;color:black" x4="8.84" y2="-62.85"/>
<circle antialias="false" y="-57.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-49.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-41.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-33.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-25.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-17.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-9.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-1.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="6.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="14.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="22.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="30.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="38.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="46.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="56.6" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="64.6" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-61.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-53.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-45.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-37.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-29.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-21.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-13.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-5.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="2.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="10.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="18.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="26.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="34.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="42.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="52.4" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="60.4" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-59.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-51.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-43.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-35.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-27.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-19.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-11.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-3.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="4.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="12.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="20.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="28.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="36.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="44.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="54.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="62.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-61.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-53.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-45.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-37.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-29.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-21.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-13.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-5.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="2.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="10.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="18.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="26.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="34.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="42.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="52.3" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="60.3" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
</description>
</definition>

View File

@@ -1,160 +0,0 @@
<definition type="element" width="40" version="0.90" link_type="simple" hotspot_y="136" hotspot_x="22" height="220">
<names>
<name lang="de">763-1516</name>
<name lang="fr">763-1516</name>
<name lang="en">763-1516</name>
<name lang="cs">763-1516</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-1516</elementInformation>
<elementInformation show="1" name="description">16DO ADV 24 V DC; 0,5 A</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<polygon y1="51.47" x2="9.22" antialias="false" y4="51.51" x3="9.96" x1="8.12" y3="51.02" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.38" y2="51.03" closed="false"/>
<polygon x7="-14.73" x60="7.83" y13="76.8" x29="11.59" y53="-88.59" x53="11.58" y67="-100.11" x89="11.58" y32="50.11" x75="12" x86="11.58" x94="12" y84="-113.69" y68="-100.22" y86="-115.21" y47="-83.6" y4="-129.61" x19="9.72" y92="-120.2" x2="-16.23" y16="78.6" x73="7.83" x79="7.83" y74="-105.22" x52="12" y48="-83.72" x64="12" x87="12" y33="49.7" x8="-12" x80="11.58" y93="-120.64" y62="-95.27" x55="7.83" x49="7.82" y52="-88.17" y23="69.74" y46="-83.18" y19="72.41" y60="-93.71" y77="-108.58" y3="-130.65" y31="50.23" y36="-73.77" x14="-17.18" y87="-115.64" x24="7.73" x10="-14.78" x6="-14.78" x54="7.83" y49="-85.13" x15="-16.48" y80="-110.22" x12="-17.42" x3="-17.06" y9="76.18" y90="-118.69" y14="77.69" y98="-131.4" y45="-80.62" x81="12" x67="7.83" y5="-123.89" y25="68.21" y20="75.7" x13="-17.43" y34="-73.31" y18="72.41" x5="-17.42" y38="-75.29" y69="-100.65" y73="-105.11" x62="11.62" y55="-90.12" x23="11.59" x66="7.83" y72="-103.7" x59="11.58" y42="-78.77" x40="12" x38="11.68" x83="11.58" y83="-113.57" y95="-128.5" x32="11.59" y97="-123.39" antialias="false" x56="11.62" x69="12" y40="-78.32" x4="-17.42" y27="67.67" x61="7.83" x95="9.72" y56="-90.28" x25="7.73" y58="-93.16" x68="11.58" x71="11.58" x74="11.58" y44="-80.29" y70="-103.16" x21="12.02" y29="51.76" style="line-style:normal;line-weight:thin;filling:white;color:black" y24="69.62" y7="-128.98" x34="12" y91="-120.09" x93="12" x16="-15.62" x43="7.92" y30="51.64" x72="7.83" y94="-128.49" y41="-78.64" y11="72.9" x26="11.59" x70="12" x96="9.72" x46="12" x37="7.92" y79="-110.11" y82="-113.15" y64="-98.16" y88="-118.14" x98="6.91" y57="-90.66" y59="-93.59" x92="11.58" x85="7.83" x76="12" y43="-80.17" x47="11.58" x27="12" x50="11.62" y96="-123.39" y21="75.65" y81="-110.64" y35="-73.65" x18="6.95" x78="7.83" y54="-88.71" x90="7.83" y1="-131.38" y10="76.2" y61="-95.12" y15="78.38" y12="72.9" y66="-98.71" y39="-75.62" x77="11.58" y50="-85.28" y26="68.1" x36="7.92" y65="-98.58" x30="7.73" y89="-118.57" x91="7.83" x31="7.73" x1="-15.59" x42="7.92" x33="12" y71="-103.58" y63="-95.66" x48="7.82" y75="-105.65" y85="-115.1" x58="12" x45="12" x44="11.69" x11="-14.78" y28="52.18" x97="6.92" y76="-108.15" y22="70.17" x88="12" x39="12" x22="12.02" x9="-12" x20="9.75" x17="6.92" y37="-75.18" x35="11.68" y6="-123.89" x82="12" y17="78.59" x28="12" x51="12" x57="12" x84="7.83" y2="-131.25" x41="11.69" y51="-85.67" y8="-128.98" x63="12" x65="11.58" y78="-108.7"/>
<polygon y1="50.39" x2="9.22" antialias="false" y4="50.35" x3="9.96" x1="8.12" y3="50.85" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.38" y2="50.83" closed="false"/>
<dynamic_text z="4" frame="false" keep_visual_rotation="true" text_width="-1" uuid="{7b126569-7aa5-4c19-a198-0690e9e25f60}" text_from="ElementInfo" y="-131.68" Valignment="AlignVCenter" font="Sans Serif,2.86,-1,5,25,0,0,0,0,0" Halignment="AlignHCenter" x="-4.52" rotation="0">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon y1="-124.69" x2="-10.27" antialias="false" y4="-124.69" x3="5.03" x1="-10.27" y3="-128.71" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="5.03" y2="-128.71"/>
<rect width="17.55" ry="1.14" antialias="false" rx="1.14" y="-130.08" style="line-style:normal;line-weight:thin;filling:none;color:black" height="6.63" x="-11.38"/>
<polygon y1="-120.9" x2="0" antialias="false" y4="-72.3" x3="0" x1="4.22" y3="-72.3" style="line-style:normal;line-weight:thin;filling:red;color:black" x4="4.22" y2="-120.9"/>
<polygon y1="-121.12" x5="7.22" x7="7.27" y7="-71.6" x6="7.22" y5="-120.41" x3="7.55" y6="-71.79" x9="7.61" y4="-120.72" x4="7.3" antialias="false" y10="-71.27" y3="-120.95" y2="-121" x8="7.38" y8="-71.47" x2="7.8" x10="11.92" closed="false" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="11.92" y9="-71.39"/>
<polygon y1="-68.24" x2="11.95" antialias="false" x1="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-68.24" closed="false"/>
<polygon y1="-123.36" x2="4.21" antialias="false" x1="4.21" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="72.39" closed="false"/>
<polygon y1="66.93" x2="-11.96" antialias="false" x1="11.95" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="66.93" closed="false"/>
<polygon y1="78.55" x2="-5.91" antialias="false" x3="-12" x1="-5.9" y3="69.28" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="69.28" closed="false"/>
<polygon y1="72.39" x2="4.13" antialias="false" x3="4.12" x1="6.92" y3="78.53" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="72.4" closed="false"/>
<polygon y1="-119.88" x2="0.62" antialias="false" y4="-118.08" x3="0.62" x1="1.62" y3="-118.08" style="line-style:normal;line-weight:thin;filling:red;color:black" x4="1.62" y2="-119.88"/>
<polygon y1="-119.88" x2="1.62" antialias="false" y4="-118.08" x3="1.62" x1="2.61" y3="-118.08" style="line-style:normal;line-weight:thin;filling:yellow;color:black" x4="2.61" y2="-119.88"/>
<polygon y1="-119.88" x2="2.61" antialias="false" y4="-118.08" x3="2.61" x1="3.61" y3="-118.08" style="line-style:normal;line-weight:thin;filling:green;color:black" x4="3.61" y2="-119.88"/>
<polygon y1="-118.86" x2="9.25" antialias="false" y4="-118.82" x3="10" x1="8.16" y3="-119.32" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-119.31" closed="false"/>
<polygon y1="-119.95" x2="9.25" antialias="false" y4="-120" x3="10" x1="8.16" y3="-119.49" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-119.5" closed="false"/>
<polygon y1="-113.86" x2="9.25" antialias="false" y4="-113.82" x3="10" x1="8.16" y3="-114.32" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-114.32" closed="false"/>
<polygon y1="-114.96" x2="9.25" antialias="false" y4="-115" x3="10" x1="8.16" y3="-114.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-114.5" closed="false"/>
<polygon y1="-108.87" x2="9.25" antialias="false" y4="-108.83" x3="10" x1="8.16" y3="-109.32" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-109.32" closed="false"/>
<polygon y1="-109.96" x2="9.25" antialias="false" y4="-110" x3="10" x1="8.16" y3="-109.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-109.51" closed="false"/>
<polygon y1="-103.87" x2="9.25" antialias="false" y4="-103.83" x3="10" x1="8.16" y3="-104.33" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-104.32" closed="false"/>
<polygon y1="-104.96" x2="9.25" antialias="false" y4="-105" x3="10" x1="8.16" y3="-104.5" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-104.51" closed="false"/>
<polygon y1="-98.88" x2="9.25" antialias="false" y4="-98.84" x3="10" x1="8.16" y3="-99.34" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-99.33" closed="false"/>
<polygon y1="-99.97" x2="9.25" antialias="false" y4="-100" x3="10" x1="8.16" y3="-99.51" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-99.52" closed="false"/>
<polygon y1="-93.88" x2="9.25" antialias="false" y4="-93.84" x3="10" x1="8.16" y3="-94.34" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-94.33" closed="false"/>
<polygon y1="-94.97" x2="9.25" antialias="false" y4="-95" x3="10" x1="8.16" y3="-94.51" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-94.52" closed="false"/>
<polygon y1="-88.89" x2="9.25" antialias="false" y4="-88.85" x3="10" x1="8.16" y3="-89.34" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-89.34" closed="false"/>
<polygon y1="-89.98" x2="9.25" antialias="false" y4="-90.02" x3="10" x1="8.16" y3="-89.52" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-89.53" closed="false"/>
<polygon y1="-83.89" x2="9.25" antialias="false" y4="-83.85" x3="10" x1="8.16" y3="-84.35" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-84.34" closed="false"/>
<polygon y1="-84.98" x2="9.25" antialias="false" y4="-85.02" x3="10" x1="8.16" y3="-84.52" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-84.53" closed="false"/>
<polygon y1="69.48" x2="9.25" antialias="false" y4="69.52" x3="10" x1="8.16" y3="69.03" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="69.04" closed="false"/>
<polygon y1="68.4" x2="9.25" antialias="false" y4="68.36" x3="10" x1="8.16" y3="68.85" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="68.84" closed="false"/>
<polygon y1="-78.9" x2="9.25" antialias="false" y4="-78.86" x3="10" x1="8.16" y3="-79.36" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-79.35" closed="false"/>
<polygon y1="-80" x2="9.25" antialias="false" y4="-80.03" x3="10" x1="8.16" y3="-79.53" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-79.54" closed="false"/>
<polygon y1="-73.91" x2="9.25" antialias="false" y4="-73.87" x3="10" x1="8.16" y3="-74.37" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-74.36" closed="false"/>
<polygon y1="-75" x2="9.25" antialias="false" y4="-75.04" x3="10" x1="8.16" y3="-74.54" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="10.41" y2="-74.55" closed="false"/>
<polygon y1="-66.86" x2="11.95" antialias="false" x1="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-66.86" closed="false"/>
<polygon y1="-60.44" x2="-7.72" antialias="false" y4="-54.83" x3="-7.72" x1="-10.15" y3="-54.83" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-60.44"/>
<polygon y1="-52.44" x2="-7.72" antialias="false" y4="-46.83" x3="-7.72" x1="-10.15" y3="-46.83" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-52.44"/>
<polygon y1="-44.44" x2="-7.72" antialias="false" y4="-38.83" x3="-7.72" x1="-10.15" y3="-38.83" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-44.44"/>
<polygon y1="-36.45" x2="-7.72" antialias="false" y4="-30.84" x3="-7.72" x1="-10.15" y3="-30.84" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-36.45"/>
<polygon y1="-28.45" x2="-7.72" antialias="false" y4="-22.84" x3="-7.72" x1="-10.15" y3="-22.84" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-28.45"/>
<polygon y1="-20.45" x2="-7.72" antialias="false" y4="-14.84" x3="-7.72" x1="-10.15" y3="-14.84" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-20.45"/>
<polygon y1="-12.45" x2="-7.72" antialias="false" y4="-6.84" x3="-7.72" x1="-10.15" y3="-6.84" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-12.45"/>
<polygon y1="-4.45" x2="-7.72" antialias="false" y4="1.15" x3="-7.72" x1="-10.15" y3="1.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="-4.45"/>
<polygon y1="3.55" x2="-7.72" antialias="false" y4="9.15" x3="-7.72" x1="-10.15" y3="9.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="3.55"/>
<polygon y1="11.55" x2="-7.72" antialias="false" y4="17.15" x3="-7.72" x1="-10.15" y3="17.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="11.55"/>
<polygon y1="19.55" x2="-7.72" antialias="false" y4="25.15" x3="-7.72" x1="-10.15" y3="25.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="19.55"/>
<polygon y1="27.54" x2="-7.72" antialias="false" y4="33.15" x3="-7.72" x1="-10.15" y3="33.15" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="27.54"/>
<polygon y1="35.54" x2="-7.72" antialias="false" y4="41.14" x3="-7.72" x1="-10.15" y3="41.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="35.54"/>
<polygon y1="43.54" x2="-7.72" antialias="false" y4="49.14" x3="-7.72" x1="-10.15" y3="49.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="43.54"/>
<polygon y1="51.54" x2="-7.72" antialias="false" y4="57.14" x3="-7.72" x1="-10.15" y3="57.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="51.54"/>
<polygon y1="59.54" x2="-7.72" antialias="false" y4="65.14" x3="-7.72" x1="-10.15" y3="65.14" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x4="-10.15" y2="59.54"/>
<polygon y1="-60.44" x2="-10.15" antialias="false" y4="-60.44" x3="-7.72" x1="-10.15" y3="65.14" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="-7.72" y2="65.14"/>
<polygon y1="-60.44" x2="-12.1" antialias="false" y4="-60.44" x3="-6.03" x1="-12.1" y3="69.23" style="line-style:normal;line-weight:thin;filling:none;color:black" x4="-6.03" y2="69.23"/>
<polygon y1="-115.3" x2="3.32" antialias="false" y4="-117.1" x3="3.32" x1="0.92" y3="-117.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-115.3"/>
<polygon y1="-112.5" x2="3.32" antialias="false" y4="-114.3" x3="3.32" x1="0.92" y3="-114.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-112.5"/>
<polygon y1="-109.7" x2="3.32" antialias="false" y4="-111.5" x3="3.32" x1="0.92" y3="-111.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-109.7"/>
<polygon y1="-106.9" x2="3.32" antialias="false" y4="-108.7" x3="3.32" x1="0.92" y3="-108.7" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-106.9"/>
<polygon y1="-104.1" x2="3.32" antialias="false" y4="-105.9" x3="3.32" x1="0.92" y3="-105.9" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-104.1"/>
<polygon y1="-101.3" x2="3.32" antialias="false" y4="-103.1" x3="3.32" x1="0.92" y3="-103.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-101.3"/>
<polygon y1="-98.5" x2="3.32" antialias="false" y4="-100.3" x3="3.32" x1="0.92" y3="-100.3" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-98.5"/>
<polygon y1="-95.7" x2="3.32" antialias="false" y4="-97.5" x3="3.32" x1="0.92" y3="-97.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-95.7"/>
<polygon y1="-92.91" x2="3.32" antialias="false" y4="-94.71" x3="3.32" x1="0.92" y3="-94.71" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-92.91"/>
<polygon y1="-90.1" x2="3.32" antialias="false" y4="-91.9" x3="3.32" x1="0.92" y3="-91.9" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-90.1"/>
<polygon y1="-87.3" x2="3.32" antialias="false" y4="-89.1" x3="3.32" x1="0.92" y3="-89.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-87.3"/>
<polygon y1="-84.51" x2="3.32" antialias="false" y4="-86.31" x3="3.32" x1="0.92" y3="-86.31" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-84.51"/>
<polygon y1="-81.71" x2="3.32" antialias="false" y4="-83.51" x3="3.32" x1="0.92" y3="-83.51" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-81.71"/>
<polygon y1="-78.9" x2="3.32" antialias="false" y4="-80.71" x3="3.32" x1="0.92" y3="-80.71" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-78.9"/>
<polygon y1="-76.11" x2="3.32" antialias="false" y4="-77.9" x3="3.32" x1="0.92" y3="-77.9" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-76.11"/>
<polygon y1="-73.31" x2="3.32" antialias="false" y4="-75.1" x3="3.32" x1="0.92" y3="-75.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" x4="0.92" y2="-73.31"/>
<text y="-84.8" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="763-1516" x="-5.89" rotation="270" color="#000000"/>
<polygon y1="-62.85" x2="-8.76" antialias="false" y4="-66.85" x3="-8.76" x1="8.84" y3="-66.85" style="line-style:normal;line-weight:thin;filling:orange;color:black" x4="8.84" y2="-62.85"/>
<circle antialias="false" y="-57.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-49.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-41.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-33.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-25.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-17.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-9.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-1.3" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="6.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="14.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="22.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="30.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="38.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="46.7" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="56.6" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="64.6" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="2.8" x="-5"/>
<circle antialias="false" y="-61.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-53.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-45.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-37.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-29.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-21.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-13.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="-5.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="2.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="10.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="18.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="26.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="34.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="42.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="52.4" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<circle antialias="false" y="60.4" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" diameter="7" x="2.4"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-59.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-51.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-43.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-35.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-27.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-19.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-11.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="-3.8" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="4.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="12.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="20.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="28.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="36.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="44.2" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="54.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="8" ry="1" antialias="false" rx="1" y="62.1" style="line-style:normal;line-weight:thin;filling:gray;color:black" height="3.5" x="0.5"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-61.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-53.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-45.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-37.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-29.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-21.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-13.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="-5.6" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="2.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="10.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="18.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="26.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="34.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="42.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="52.3" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
<rect width="4.4" ry="2" antialias="false" rx="1" y="60.3" style="line-style:normal;line-weight:thin;filling:orange;color:black" height="7.1" x="-1.8"/>
</description>
</definition>

View File

@@ -1,14 +0,0 @@
<qet-directory>
<names>
<name lang="pl">AnalogIN</name>
<name lang="de">AnalogIN</name>
<name lang="el">AnalogIN</name>
<name lang="it">AnalogIN</name>
<name lang="ru">AnalogIN</name>
<name lang="nl">AnalogIN</name>
<name lang="cs">AnalogIN</name>
<name lang="en">AnalogIN</name>
<name lang="fr">AnalogIN</name>
<name lang="da">AnalogIN</name>
</names>
</qet-directory>

View File

@@ -1,14 +0,0 @@
<qet-directory>
<names>
<name lang="pl">AnalogOUT</name>
<name lang="de">AnalogOUT</name>
<name lang="el">AnalogOUT</name>
<name lang="it">AnalogOUT</name>
<name lang="ru">AnalogOUT</name>
<name lang="nl">AnalogOUT</name>
<name lang="cs">AnalogOUT</name>
<name lang="en">AnalogOUT</name>
<name lang="fr">AnalogOUT</name>
<name lang="da">AnalogOUT</name>
</names>
</qet-directory>

View File

@@ -1,14 +0,0 @@
<qet-directory>
<names>
<name lang="pl">System</name>
<name lang="de">System</name>
<name lang="el">System</name>
<name lang="it">System</name>
<name lang="ru">System</name>
<name lang="nl">System</name>
<name lang="cs">Systémové moduly</name>
<name lang="en">System</name>
<name lang="fr">Systeme</name>
<name lang="da">System</name>
</names>
</qet-directory>

View File

@@ -1,76 +0,0 @@
<definition link_type="simple" version="0.90" height="220" hotspot_y="136" width="40" hotspot_x="21" type="element">
<names>
<name lang="de">763-4750</name>
<name lang="en">763-4750</name>
<name lang="fr">763-4750</name>
<name lang="cs">763-4750</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-4750</elementInformation>
<elementInformation show="1" name="description">GW 750 ADV</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<polygon x25="-17.25" x29="-15.98" y28="-131.09" x17="-17.21" y15="78.44" y18="72.94" x7="8.03" y16="78" x13="-10.19" y2="-127.21" y13="78.64" x4="5.04" y27="-130.63" y3="-129.37" y1="-127.21" x8="12" x14="-15.9" x24="-14.62" y14="78.64" y12="57.4" y4="-129.37" y23="-128.94" y17="77.39" x21="-12" x23="-14.62" x3="-1.93" y25="-123.85" y20="76.23" x10="8.03" y21="76.22" x16="-16.93" x26="-17.25" x12="-1.93" y19="72.94" antialias="false" y7="-131.14" x1="-10.39" x28="-16.52" x11="8.03" x22="-12" x27="-16.98" y5="-127.19" x9="12" y8="-131.14" x20="-14.62" y30="-131.31" style="line-style:normal;line-weight:thin;filling:white;color:black" x5="5.04" y26="-130" x15="-16.45" y24="-123.85" x30="-10.39" y6="-127.19" x19="-14.62" y11="57.4" y29="-131.31" x2="-1.93" y9="60.36" y10="60.36" y22="-128.94" x18="-17.25" x6="8.03"/>
<rect rx="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y="-126.2" height="10.6" antialias="false" width="24" ry="0" x="-12"/>
<rect rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y="-113.89" height="20" antialias="false" width="18.29" ry="0" x="-9.06"/>
<polygon x2="5.42" x3="5.42" y1="-87.85" y4="-63.86" x4="-8.7" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-87.85" x1="-8.7" antialias="false" y3="-63.86"/>
<rect rx="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y="-123.49" height="5" antialias="false" width="16.09" ry="0" x="-8.05"/>
<rect rx="0" style="line-style:normal;line-weight:thin;filling:none;color:black" y="-124.92" height="8.06" antialias="false" width="22.15" ry="0" x="-10.96"/>
<rect rx="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" y="-107.6" height="2.86" antialias="false" width="5.72" ry="0" x="1.51"/>
<text font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" y="-95.59" color="#000000" rotation="0" text="D" x="-11.64"/>
<rect rx="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" y="-98.45" height="2.86" antialias="false" width="5.72" ry="0" x="1.51"/>
<dynamic_text uuid="{7e6b9aba-9db0-4037-a375-6029b90c44cb}" font="Sans Serif,4,-1,5,25,0,0,0,0,0" text_from="ElementInfo" y="-60.15" text_width="-1" frame="false" Halignment="AlignHCenter" keep_visual_rotation="true" z="10" rotation="0" x="-3.06" Valignment="AlignVCenter">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<text font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" y="-110.06" color="#000000" rotation="0" text="E" x="9.75"/>
<rect rx="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" y="-103.02" height="2.86" antialias="false" width="5.72" ry="0" x="1.51"/>
<rect rx="0" style="line-style:normal;line-weight:thin;filling:gray;color:black" y="-112.17" height="2.86" antialias="false" width="5.72" ry="0" x="1.51"/>
<text font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" y="-100.74" color="#000000" rotation="0" text="C" x="-11.64"/>
<text font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" y="-95.59" color="#000000" rotation="0" text="H" x="9.69"/>
<text font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" y="-105.48" color="#000000" rotation="0" text="F" x="9.84"/>
<text font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" y="-105.48" color="#000000" rotation="0" text="B" x="-11.64"/>
<text font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" y="-100.62" color="#000000" rotation="0" text="G" x="9.6"/>
<rect rx="0" style="line-style:normal;line-weight:thin;filling:red;color:black" y="-107.6" height="2.86" antialias="false" width="5.72" ry="0" x="-6.49"/>
<rect rx="0" style="line-style:normal;line-weight:thin;filling:green;color:black" y="-98.45" height="2.86" antialias="false" width="5.72" ry="0" x="-6.49"/>
<rect rx="0" style="line-style:normal;line-weight:thin;filling:green;color:black" y="-103.02" height="2.86" antialias="false" width="5.72" ry="0" x="-6.49"/>
<rect rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y="24.75" height="8" antialias="false" width="7.03" ry="0" x="0.08"/>
<rect rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y="-49.06" height="8" antialias="false" width="7.03" ry="0" x="0.08"/>
<rect rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y="-12.13" height="8" antialias="false" width="7.03" ry="0" x="0.08"/>
<polygon x17="-1.17" y15="35.06" y18="37.41" x7="-1.89" y16="35.51" x13="7.48" y2="44.03" y13="35.81" x4="-9.04" y3="45.64" y1="37.37" x8="-0.81" x14="5.08" x24="-11.24" y14="35.06" y12="38.06" y4="46.7" y23="35.45" y17="36.35" x21="-5" x23="-10.17" x3="-10.89" y20="35.46" x10="6.49" y21="35.02" x16="-0.12" x12="9.2" y19="36.3" antialias="false" y7="44.04" x1="-12" x11="9.2" x22="-8.9" y5="46.7" x9="1.06" y8="45.63" x20="-3.68" style="line-style:normal;line-weight:thin;filling:gray;color:black" x5="-4.82" x15="1.12" y24="36.29" y6="45.68" x19="-2.65" y11="44" x2="-12" y9="46.7" y10="46.7" y22="35.02" x18="-1.89" x6="-2.97"/>
<polygon x17="-1.22" y15="-38.69" y18="-36.34" x7="-1.94" y16="-38.24" x13="7.43" y2="-29.72" y13="-37.94" x4="-9.09" y3="-28.11" y1="-36.38" x8="-0.85" x14="5.03" x24="-11.29" y14="-38.69" y12="-35.69" y4="-27.05" y23="-38.3" y17="-37.4" x21="-5.02" x23="-10.21" x3="-10.93" y20="-38.29" x10="6.45" y21="-38.73" x16="-0.16" x12="9.16" y19="-37.45" antialias="false" y7="-29.71" x1="-12" x11="9.16" x22="-8.94" y5="-27.05" x9="1.02" y8="-28.12" x20="-3.73" style="line-style:normal;line-weight:thin;filling:gray;color:black" x5="-4.86" x15="1.08" y24="-37.46" y6="-28.07" x19="-2.7" y11="-29.73" x2="-12" y9="-27.05" y10="-27.05" y22="-38.73" x18="-1.94" x6="-3.02"/>
<polygon x17="-1.2" y15="-2.1" y18="0.25" x7="-1.92" y16="-1.65" x13="7.45" y2="6.87" y13="-1.35" x4="-9.06" y3="8.48" y1="0.21" x8="-0.83" x14="5.06" x24="-11.26" y14="-2.1" y12="0.9" y4="9.54" y23="-1.71" y17="-0.81" x21="-5" x23="-10.19" x3="-10.91" y20="-1.7" x10="6.47" y21="-2.14" x16="-0.14" x12="9.18" y19="-0.86" antialias="false" y7="6.88" x1="-12" x11="9.18" x22="-8.92" y5="9.54" x9="1.04" y8="8.47" x20="-3.71" style="line-style:normal;line-weight:thin;filling:gray;color:black" x5="-4.84" x15="1.1" y24="-0.87" y6="8.52" x19="-2.68" y11="6.85" x2="-12" y9="9.54" y10="9.54" y22="-2.14" x18="-1.92" x6="-3"/>
<polygon x11="-4.95" x15="-8.98" x12="-4.95" x13="-5.85" y11="-1.66" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x5="-9.19" x3="-11" y6="7.6" y13="-3.66" y2="0.71" y8="2.05" y7="5.81" y15="-2.77" x9="-3.81" y16="-1.66" antialias="false" y3="2.05" y10="0.05" y12="-2.77" y4="5.81" x7="-2.93" y9="0.71" x1="-8.79" x16="-8.98" x2="-10.11" y5="7.6" x8="-2.93" x6="-4.74" y14="-3.66" y1="0.05" x14="-8.07" x4="-11" x10="-5.1"/>
<polygon x11="-4.97" x15="-9" x12="-4.97" x13="-5.87" y11="-38.25" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x5="-9.21" x3="-11.02" y6="-29" y13="-40.25" y2="-35.87" y8="-34.54" y7="-30.78" y15="-39.36" x9="-3.83" y16="-38.25" antialias="false" y3="-34.54" y10="-36.54" y12="-39.36" y4="-30.78" x7="-2.95" y9="-35.87" x1="-8.82" x16="-9" x2="-10.14" y5="-29" x8="-2.95" x6="-4.76" y14="-40.25" y1="-36.54" x14="-8.1" x4="-11.02" x10="-5.12"/>
<rect rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y="-49.06" height="8" antialias="false" width="7.03" ry="0" x="-10.03"/>
<polygon x11="-4.92" x15="-8.95" x12="-4.92" x13="-5.83" y11="35.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x5="-9.17" x3="-10.97" y6="44.76" y13="33.5" y2="37.87" y8="39.21" y7="42.97" y15="34.39" x9="-3.79" y16="35.5" antialias="false" y3="39.21" y10="37.21" y12="34.39" y4="42.97" x7="-2.91" y9="37.87" x1="-8.77" x16="-8.95" x2="-10.09" y5="44.76" x8="-2.91" x6="-4.71" y14="33.5" y1="37.21" x14="-8.05" x4="-10.97" x10="-5.08"/>
<rect rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y="-12.13" height="8" antialias="false" width="7.03" ry="0" x="-10.03"/>
<rect rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" y="24.75" height="8" antialias="false" width="7.03" ry="0" x="-10.03"/>
<polygon x11="5.43" x15="1.4" x12="5.43" x13="4.53" y11="35.5" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x5="1.19" x3="-0.62" y6="44.76" y13="33.5" y2="37.87" y8="39.21" y7="42.97" y15="34.39" x9="6.57" y16="35.5" antialias="false" y3="39.21" y10="37.21" y12="34.39" y4="42.97" x7="7.45" y9="37.87" x1="1.58" x16="1.4" x2="0.26" y5="44.76" x8="7.45" x6="5.64" y14="33.5" y1="37.21" x14="2.3" x4="-0.62" x10="5.27"/>
<polygon x11="5.38" x15="1.35" x12="5.38" x13="4.48" y11="-38.25" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x5="1.14" x3="-0.66" y6="-29" y13="-40.25" y2="-35.87" y8="-34.54" y7="-30.78" y15="-39.36" x9="6.52" y16="-38.25" antialias="false" y3="-34.54" y10="-36.54" y12="-39.36" y4="-30.78" x7="7.4" y9="-35.87" x1="1.54" x16="1.35" x2="0.22" y5="-29" x8="7.4" x6="5.6" y14="-40.25" y1="-36.54" x14="2.26" x4="-0.66" x10="5.23"/>
<polygon x11="5.41" x15="1.38" x12="5.41" x13="4.5" y11="-1.66" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" x5="1.16" x3="-0.64" y6="7.6" y13="-3.66" y2="0.71" y8="2.05" y7="5.81" y15="-2.77" x9="6.54" y16="-1.66" antialias="false" y3="2.05" y10="0.05" y12="-2.77" y4="5.81" x7="7.42" y9="0.71" x1="1.56" x16="1.38" x2="0.24" y5="7.6" x8="7.42" x6="5.62" y14="-3.66" y1="0.05" x14="2.28" x4="-0.64" x10="5.25"/>
<polygon x2="-12" y1="14.8" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="14.8" x1="12" antialias="false" closed="false"/>
<polygon x2="12" y1="22.79" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="22.79" x1="-12" antialias="false" closed="false"/>
<polygon x2="-12" y1="-22.2" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-22.2" x1="12" antialias="false" closed="false"/>
<polygon x2="12" y1="-14.21" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-14.21" x1="-12" antialias="false" closed="false"/>
<polygon x2="-12" y1="-59.21" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-59.21" x1="12" antialias="false" closed="false"/>
<polygon x2="12.16" y1="-51.21" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-51.21" x1="-12.05" antialias="false" closed="false"/>
<polygon x2="12" x3="12" y1="-12.34" y4="5.92" x4="9.5" style="line-style:normal;line-weight:thin;filling:orange;color:black" y2="-12.34" x1="9.5" antialias="false" y3="5.92"/>
<polygon x2="12" y1="-3.52" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-3.52" x1="9.5" antialias="false" closed="false"/>
<text font="Sans Serif,2.86,-1,5,50,0,0,0,0,0" y="53.62" color="#000000" rotation="0" text="763-4750" x="-9.35"/>
<text font="Sans Serif,2.29,-1,5,50,0,0,0,0,0" y="-110" color="#000000" rotation="0" text="A" x="-11.64"/>
<rect rx="0" style="line-style:normal;line-weight:thin;filling:red;color:black" y="-112.17" height="2.86" antialias="false" width="5.72" ry="0" x="-6.49"/>
<polygon x2="-12" y1="-63.86" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-63.86" x1="12" antialias="false" closed="false"/>
<polygon x2="-12" y1="-87.85" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-87.85" x1="12" antialias="false" closed="false"/>
<polygon x2="-12" y1="-90.66" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-90.66" x1="12" antialias="false" closed="false"/>
<polygon x2="4.41" x3="4.41" y1="-86.85" y4="-64.86" x4="-7.69" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="-86.85" x1="-7.69" antialias="false" y3="-64.86"/>
<polygon x2="-10.21" x3="-1.9" y1="78.62" y4="57.39" x4="-1.9" style="line-style:normal;line-weight:thin;filling:none;color:black" y2="56.39" x1="-10.21" antialias="false" y3="56.39" closed="false"/>
<rect rx="0" style="line-style:normal;line-weight:thin;filling:green;color:black" y="-107.6" height="2.86" antialias="false" width="2.86" ry="0" x="-3.63"/>
<rect rx="0" style="line-style:normal;line-weight:thin;filling:yellow;color:black" y="-112.17" height="2.86" antialias="false" width="1.9" ry="0" x="-4.55"/>
<rect rx="0" style="line-style:normal;line-weight:thin;filling:green;color:black" y="-112.17" height="2.86" antialias="false" width="1.9" ry="0" x="-2.65"/>
</description>
</definition>

View File

@@ -1,113 +0,0 @@
<definition hotspot_y="136" link_type="simple" type="element" hotspot_x="22" width="40" version="0.90" height="220">
<names>
<name lang="de">763-5101</name>
<name lang="fr">763-5101</name>
<name lang="en">763-5101</name>
<name lang="cs">763-5101</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-5101</elementInformation>
<elementInformation show="1" name="description">PS ADV 24 V DC; Fuse</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<polygon x40="12" y3="-130.65" x95="9.72" y95="-128.5" y31="50.23" y46="-83.18" y74="-105.22" y28="52.18" style="line-style:normal;line-weight:thin;filling:white;color:black" y24="69.62" x12="-17.42" x16="-15.63" y80="-110.22" y20="75.7" y59="-93.59" x72="7.83" x39="12" y49="-85.13" x98="6.91" x33="12" y17="78.59" x67="7.83" y86="-115.21" x26="11.59" y53="-88.59" y22="70.17" y55="-90.12" x41="11.69" x60="7.83" x17="6.92" y21="75.65" x64="12" y18="72.41" x94="12" x70="12" y7="-128.98" x88="12" x28="12" y66="-98.71" y54="-88.71" y9="76.18" y16="78.6" y81="-110.64" x8="-12" x52="12" x74="11.58" x37="7.92" x30="7.73" y88="-118.14" x90="7.83" y27="67.67" x77="11.58" y69="-100.65" x45="12" x6="-14.78" x24="7.73" y41="-78.64" x48="7.82" x87="12" x50="11.62" y8="-128.98" y36="-73.77" x85="7.83" x93="12" x46="12" y89="-118.57" y6="-123.89" y67="-100.11" y83="-113.57" y94="-128.49" x21="12" y56="-90.28" x11="-14.78" y61="-95.12" y57="-90.66" y37="-75.18" y26="68.1" x68="11.58" x38="11.68" y79="-110.11" y60="-93.71" x61="7.83" y82="-113.15" x49="7.82" x80="11.58" x75="12" y63="-95.66" y87="-115.64" y52="-88.17" x47="11.58" y30="51.64" y51="-85.67" y78="-108.7" x36="7.92" x63="12" y48="-83.72" x55="7.83" y10="76.2" y73="-105.11" y25="68.21" x92="11.58" y92="-120.2" y70="-103.16" y84="-113.69" x51="12" x7="-14.73" x10="-14.78" x35="11.68" x78="7.83" y32="50.11" y65="-98.58" y34="-73.31" x29="11.59" x4="-17.42" x53="11.58" y77="-108.58" x62="11.62" x84="7.83" y23="69.74" y47="-83.6" x25="7.73" x1="-15.59" y12="72.9" x81="12" y29="51.76" x89="11.58" x54="7.83" x19="9.72" y4="-129.61" x58="12" x86="11.58" x31="7.73" x34="12" x14="-17.18" y90="-118.69" x44="11.69" x3="-17.06" y76="-108.15" x32="11.59" x91="7.83" x96="9.72" y35="-73.65" x9="-12" x20="9.75" x43="7.92" y2="-131.25" x27="12" x5="-17.42" y45="-80.62" y91="-120.09" x71="11.58" x2="-16.23" y44="-80.29" x13="-17.43" y19="72.41" x82="12" y43="-80.17" x73="7.83" x65="11.58" y68="-100.22" x18="6.95" x22="12" y58="-93.16" x83="11.58" y75="-105.65" y62="-95.27" y42="-78.77" x59="11.58" x66="7.83" x57="12" x23="11.59" y96="-123.39" x79="7.83" y5="-123.89" x15="-16.48" y11="72.9" x56="11.62" y14="77.69" y93="-120.64" y98="-131.4" y38="-75.29" y39="-75.62" y97="-123.39" y71="-103.58" x76="12" x97="6.92" x69="12" y13="76.8" y64="-98.16" y1="-131.38" y72="-103.7" x42="7.92" y15="78.38" y33="49.7" antialias="false" y40="-78.32" y50="-85.28" y85="-115.1"/>
<polygon style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="-120.9" x2="0" y4="-72.3" y3="-72.3" x4="4.22" y1="-120.9" x1="4.22" x3="0"/>
<dynamic_text Valignment="AlignVCenter" rotation="0" text_width="-1" uuid="{7b126569-7aa5-4c19-a198-0690e9e25f60}" x="-4.57" frame="false" font="Sans Serif,2.86,-1,5,25,0,0,0,0,0" y="-131.68" z="3" text_from="ElementInfo" keep_visual_rotation="true" Halignment="AlignHCenter">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-128.71" x2="-10.16" y4="-124.69" y3="-128.71" x4="5.15" y1="-124.69" x1="-10.16" x3="5.15"/>
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-115.3" x2="3.32" y4="-117.1" y3="-117.1" x4="0.92" y1="-115.3" x1="0.92" x3="3.32"/>
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-112.5" x2="3.32" y4="-114.3" y3="-114.3" x4="0.92" y1="-112.5" x1="0.92" x3="3.32"/>
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-109.7" x2="3.32" y4="-111.5" y3="-111.5" x4="0.92" y1="-109.7" x1="0.92" x3="3.32"/>
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-106.9" x2="3.32" y4="-108.7" y3="-108.7" x4="0.92" y1="-106.9" x1="0.92" x3="3.32"/>
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-104.1" x2="3.32" y4="-105.9" y3="-105.9" x4="0.92" y1="-104.1" x1="0.92" x3="3.32"/>
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-101.3" x2="3.32" y4="-103.1" y3="-103.1" x4="0.92" y1="-101.3" x1="0.92" x3="3.32"/>
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-98.5" x2="3.32" y4="-100.3" y3="-100.3" x4="0.92" y1="-98.5" x1="0.92" x3="3.32"/>
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-95.7" x2="3.32" y4="-97.5" y3="-97.5" x4="0.92" y1="-95.7" x1="0.92" x3="3.32"/>
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-92.91" x2="3.32" y4="-94.71" y3="-94.71" x4="0.92" y1="-92.91" x1="0.92" x3="3.32"/>
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-90.1" x2="3.32" y4="-91.9" y3="-91.9" x4="0.92" y1="-90.1" x1="0.92" x3="3.32"/>
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-87.3" x2="3.32" y4="-89.1" y3="-89.1" x4="0.92" y1="-87.3" x1="0.92" x3="3.32"/>
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-84.51" x2="3.32" y4="-86.31" y3="-86.31" x4="0.92" y1="-84.51" x1="0.92" x3="3.32"/>
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-81.71" x2="3.32" y4="-83.51" y3="-83.51" x4="0.92" y1="-81.71" x1="0.92" x3="3.32"/>
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-78.9" x2="3.32" y4="-80.71" y3="-80.71" x4="0.92" y1="-78.9" x1="0.92" x3="3.32"/>
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-76.11" x2="3.32" y4="-77.9" y3="-77.9" x4="0.92" y1="-76.11" x1="0.92" x3="3.32"/>
<polygon x8="7.38" x4="7.3" y3="-120.95" style="line-style:normal;line-weight:thin;filling:none;color:black" x7="7.27" y7="-71.6" y1="-121.12" y10="-71.27" closed="false" y8="-71.47" x3="7.55" x9="7.61" x10="11.92" x2="7.8" y2="-121" y6="-71.79" y5="-120.41" y4="-120.72" x5="7.22" x6="7.22" y9="-71.39" x1="11.92" antialias="false"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-68.24" x2="12" y1="-68.24" x1="-12" closed="false"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-66.86" x2="4.21" y1="-123.36" x1="4.21" closed="false"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="72.33" x2="4.21" y1="-35.26" x1="4.21" closed="false"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-36" x2="12" y1="-36" x1="-12" closed="false"/>
<polygon style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" y2="-31.86" x2="-8.76" y4="-35.86" y3="-35.86" x4="8.84" y1="-31.86" x1="8.84" x3="-8.76"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="66.93" x2="-12" y1="66.93" x1="12" closed="false"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="78.55" x2="-6" y1="69.28" x1="-6" closed="false"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="72.4" x2="4.13" y3="78.53" y1="72.39" x1="6.92" closed="false" x3="4.13"/>
<polygon style="line-style:normal;line-weight:thin;filling:red;color:black" antialias="false" y2="-119.88" x2="0.62" y4="-118.08" y3="-118.08" x4="1.62" y1="-119.88" x1="1.62" x3="0.62"/>
<polygon style="line-style:normal;line-weight:thin;filling:yellow;color:black" antialias="false" y2="-119.88" x2="1.62" y4="-118.08" y3="-118.08" x4="2.61" y1="-119.88" x1="2.61" x3="1.62"/>
<polygon style="line-style:normal;line-weight:thin;filling:green;color:black" antialias="false" y2="-119.88" x2="2.61" y4="-118.08" y3="-118.08" x4="3.61" y1="-119.88" x1="3.61" x3="2.61"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-119.31" x2="9.25" y4="-118.82" y3="-119.32" x4="10.41" y1="-118.86" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-119.5" x2="9.25" y4="-120" y3="-119.49" x4="10.41" y1="-119.95" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-114.32" x2="9.25" y4="-113.82" y3="-114.32" x4="10.41" y1="-113.86" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-114.5" x2="9.25" y4="-115" y3="-114.5" x4="10.41" y1="-114.96" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-109.32" x2="9.25" y4="-108.83" y3="-109.32" x4="10.41" y1="-108.87" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-109.51" x2="9.25" y4="-110" y3="-109.5" x4="10.41" y1="-109.96" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-104.32" x2="9.25" y4="-103.83" y3="-104.33" x4="10.41" y1="-103.87" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-104.51" x2="9.25" y4="-105" y3="-104.5" x4="10.41" y1="-104.96" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-99.33" x2="9.25" y4="-98.84" y3="-99.34" x4="10.41" y1="-98.88" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-99.52" x2="9.25" y4="-100" y3="-99.51" x4="10.41" y1="-99.97" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-94.33" x2="9.25" y4="-93.84" y3="-94.34" x4="10.41" y1="-93.88" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-94.52" x2="9.25" y4="-95" y3="-94.51" x4="10.41" y1="-94.97" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-89.34" x2="9.25" y4="-88.85" y3="-89.34" x4="10.41" y1="-88.89" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-89.53" x2="9.25" y4="-90.02" y3="-89.52" x4="10.41" y1="-89.98" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-84.34" x2="9.25" y4="-83.85" y3="-84.35" x4="10.41" y1="-83.89" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-84.53" x2="9.25" y4="-85.02" y3="-84.52" x4="10.41" y1="-84.98" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="51.03" x2="9.25" y4="51.51" y3="51.02" x4="10.41" y1="51.47" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="50.83" x2="9.25" y4="50.35" y3="50.85" x4="10.41" y1="50.39" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="69.04" x2="9.25" y4="69.52" y3="69.03" x4="10.41" y1="69.48" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="68.84" x2="9.25" y4="68.36" y3="68.85" x4="10.41" y1="68.4" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-79.35" x2="9.25" y4="-78.86" y3="-79.36" x4="10.41" y1="-78.9" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-79.54" x2="9.25" y4="-80.03" y3="-79.53" x4="10.41" y1="-80" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-74.36" x2="9.25" y4="-73.87" y3="-74.37" x4="10.41" y1="-73.91" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-74.55" x2="9.25" y4="-75.04" y3="-74.54" x4="10.41" y1="-75" x1="8.15" closed="false" x3="10"/>
<polygon style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="-28.45" x2="-7.63" y4="-22.84" y3="-22.84" x4="-10.05" y1="-28.45" x1="-10.05" x3="-7.63"/>
<polygon style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="-20.45" x2="-7.63" y4="-14.84" y3="-14.84" x4="-10.05" y1="-20.45" x1="-10.05" x3="-7.63"/>
<polygon style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="-12.45" x2="-7.63" y4="-6.84" y3="-6.84" x4="-10.05" y1="-12.45" x1="-10.05" x3="-7.63"/>
<polygon style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="-4.45" x2="-7.63" y4="1.15" y3="1.15" x4="-10.05" y1="-4.45" x1="-10.05" x3="-7.63"/>
<polygon style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="3.55" x2="-7.63" y4="9.15" y3="9.15" x4="-10.05" y1="3.55" x1="-10.05" x3="-7.63"/>
<polygon style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="11.55" x2="-7.63" y4="17.15" y3="17.15" x4="-10.05" y1="11.55" x1="-10.05" x3="-7.63"/>
<polygon style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="19.55" x2="-7.63" y4="25.15" y3="25.15" x4="-10.05" y1="19.55" x1="-10.05" x3="-7.63"/>
<polygon style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="27.54" x2="-7.63" y4="33.15" y3="33.15" x4="-10.05" y1="27.54" x1="-10.05" x3="-7.63"/>
<polygon style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="35.54" x2="-7.63" y4="41.14" y3="41.14" x4="-10.05" y1="35.54" x1="-10.05" x3="-7.63"/>
<polygon style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="43.54" x2="-7.63" y4="49.14" y3="49.14" x4="-10.05" y1="43.54" x1="-10.05" x3="-7.63"/>
<polygon style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="51.54" x2="-7.63" y4="57.14" y3="57.14" x4="-10.05" y1="51.54" x1="-10.05" x3="-7.63"/>
<polygon style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="59.54" x2="-7.63" y4="65.14" y3="65.14" x4="-10.05" y1="59.54" x1="-10.05" x3="-7.63"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="65.14" x2="-10.05" y4="-28.54" y3="65.14" x4="-7.63" y1="-28.54" x1="-10.05" x3="-7.63"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="69.23" x2="-12" y4="-28.54" y3="69.23" x4="-6" y1="-28.54" x1="-12" x3="-6"/>
<polygon style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" y2="-49.46" x2="-9.86" y4="-65.44" y3="-65.44" x4="10.11" y1="-49.46" x1="10.11" x3="-9.86"/>
<polygon style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" y2="-49.55" x2="-6.67" y4="-51.55" y3="-51.55" x4="7.31" y1="-49.55" x1="7.31" x3="-6.67"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-66.86" x2="12" y1="-66.86" x1="-12" closed="false"/>
<polygon style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-46.59" x2="12" y1="-46.59" x1="-12" closed="false"/>
<rect style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" rx="1.14" width="17.55" x="-11.26" y="-130.08" height="6.63" ry="1.14"/>
<polygon style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-73.31" x2="3.32" y4="-75.1" y3="-75.1" x4="0.92" y1="-73.31" x1="0.92" x3="3.32"/>
<text rotation="270" x="-5.89" font="Sans Serif,4,-1,5,50,0,0,0,0,0" y="-84.8" text="763-5101" color="#000000"/>
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="2.8" x="-5" y="10.7"/>
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="2.8" x="-5" y="26.7"/>
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="2.8" x="-5" y="42.7"/>
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="2.8" x="-5" y="60.6"/>
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="8.5" x="2.4" y="5.7"/>
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="8.5" x="2.4" y="21.7"/>
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="8.5" x="2.4" y="37.7"/>
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" diameter="8.5" x="2.4" y="55.6"/>
<rect style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" rx="1" width="8.5" x="0.5" y="7.8" height="4.5" ry="1"/>
<rect style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" rx="1" width="8.5" x="0.5" y="23.7" height="4.5" ry="1"/>
<rect style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" rx="1" width="8.5" x="0.5" y="39.7" height="4.5" ry="1"/>
<rect style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" rx="1" width="8.5" x="0.5" y="57.6" height="4.5" ry="1"/>
<rect style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" rx="1" width="4.4" x="-1.8" y="5.9" height="8.1" ry="2"/>
<rect style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" rx="1" width="4.4" x="-1.8" y="21.9" height="8.1" ry="2"/>
<rect style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" rx="1" width="4.4" x="-1.8" y="37.9" height="8.1" ry="2"/>
<rect style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" rx="1" width="4.4" x="-1.8" y="55.8" height="8.1" ry="2"/>
</description>
</definition>

View File

@@ -1,119 +0,0 @@
<definition type="element" height="220" hotspot_y="136" width="40" hotspot_x="22" version="0.90" link_type="simple">
<names>
<name lang="cs">763-5120</name>
<name lang="fr">763-5120</name>
<name lang="de">763-5120</name>
<name lang="en">763-5120</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-5120</elementInformation>
<elementInformation show="1" name="description">PS SYSTEM ADV 24 V DC</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<polygon y87="-115.64" x19="9.72" x66="7.83" x83="11.58" y2="-131.25" y69="-100.65" x27="12" y61="-95.12" x56="11.62" y30="51.64" x96="9.72" y29="51.76" y14="77.69" antialias="false" x53="11.58" y7="-128.98" y43="-80.17" x67="7.83" x65="11.58" x7="-14.73" x77="11.58" x86="11.58" x14="-17.18" x38="11.68" x31="7.73" x73="7.83" y96="-123.39" y26="68.1" x26="11.59" x32="11.59" y36="-73.77" y50="-85.28" y93="-120.64" y46="-83.18" y3="-130.65" y17="78.59" y11="72.9" y19="72.41" x49="7.82" y79="-110.11" y67="-100.11" x22="12" x88="12" y25="68.21" y23="69.74" y82="-113.15" y98="-131.4" y9="76.18" x74="11.58" y58="-93.16" y66="-98.71" y51="-85.67" x6="-14.78" y4="-129.61" x76="12" y80="-110.22" y27="67.67" y92="-120.2" y40="-78.32" y57="-90.66" x36="7.92" y1="-131.38" y47="-83.6" y85="-115.1" y95="-128.5" y24="69.62" y84="-113.69" y10="76.2" y39="-75.62" y68="-100.22" x62="11.62" y55="-90.12" x10="-14.78" y77="-108.58" x39="12" x61="7.83" y89="-118.57" x89="11.58" x84="7.83" x92="11.58" y53="-88.59" y31="50.23" x9="-12" x90="7.83" x17="6.92" y21="75.65" y5="-123.89" x47="11.58" x51="12" x98="6.91" x71="11.58" x40="12" x18="6.95" x25="7.73" y62="-95.27" y83="-113.57" y86="-115.21" x45="12" x59="11.58" x69="12" x35="11.68" y13="76.8" x13="-17.43" y56="-90.28" x37="7.92" y22="70.17" x23="11.59" x54="7.83" x48="7.82" x81="12" y88="-118.14" x95="9.72" y6="-123.89" x60="7.83" x12="-17.42" x8="-12" x70="12" y35="-73.65" y60="-93.71" x91="7.83" y71="-103.58" x20="9.75" y15="78.38" y91="-120.09" y33="49.7" x68="11.58" y44="-80.29" y42="-78.77" y97="-123.39" x44="11.69" x50="11.62" x24="7.73" y34="-73.31" x11="-14.78" x85="7.83" y37="-75.18" x75="12" x79="7.83" x2="-16.23" y72="-103.7" y28="52.18" style="line-style:normal;line-weight:thin;filling:white;color:black" y73="-105.11" x93="12" y32="50.11" y64="-98.16" x28="12" x82="12" x42="7.92" y63="-95.66" y38="-75.29" x21="12" x57="12" x46="12" y20="75.7" x97="6.92" y78="-108.7" y18="72.41" y74="-105.22" y59="-93.59" x15="-16.48" y45="-80.62" y48="-83.72" x78="7.83" y65="-98.58" y75="-105.65" x55="7.83" y81="-110.64" x41="11.69" y90="-118.69" y94="-128.49" x80="11.58" x94="12" x29="11.59" x5="-17.42" x30="7.73" x34="12" x3="-17.06" y41="-78.64" y70="-103.16" y76="-108.15" y54="-88.71" x1="-15.59" x58="12" x4="-17.42" x72="7.83" x63="12" y12="72.9" x64="12" y8="-128.98" y49="-85.13" y52="-88.17" x33="12" x16="-15.63" x87="12" x52="12" y16="78.6" x43="7.92"/>
<polygon x1="4.22" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="-120.9" y4="-72.3" x3="0" y1="-120.9" x2="0" y3="-72.3" x4="4.22"/>
<dynamic_text rotation="0" keep_visual_rotation="true" Valignment="AlignVCenter" z="3" font="Sans Serif,2.86,-1,5,25,0,0,0,0,0" x="-4.57" text_width="-1" Halignment="AlignHCenter" y="-131.68" frame="false" uuid="{7b126569-7aa5-4c19-a198-0690e9e25f60}" text_from="ElementInfo">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon x1="-10.16" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-128.71" y4="-124.69" x3="5.15" y1="-124.69" x2="-10.16" y3="-128.71" x4="5.15"/>
<polygon x1="0.92" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-115.3" y4="-117.1" x3="3.32" y1="-115.3" x2="3.32" y3="-117.1" x4="0.92"/>
<polygon x1="0.92" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-112.5" y4="-114.3" x3="3.32" y1="-112.5" x2="3.32" y3="-114.3" x4="0.92"/>
<polygon x1="0.92" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-109.7" y4="-111.5" x3="3.32" y1="-109.7" x2="3.32" y3="-111.5" x4="0.92"/>
<polygon x1="0.92" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-106.9" y4="-108.7" x3="3.32" y1="-106.9" x2="3.32" y3="-108.7" x4="0.92"/>
<polygon x1="0.92" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-104.1" y4="-105.9" x3="3.32" y1="-104.1" x2="3.32" y3="-105.9" x4="0.92"/>
<polygon x1="0.92" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-101.3" y4="-103.1" x3="3.32" y1="-101.3" x2="3.32" y3="-103.1" x4="0.92"/>
<polygon x1="0.92" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-98.5" y4="-100.3" x3="3.32" y1="-98.5" x2="3.32" y3="-100.3" x4="0.92"/>
<polygon x1="0.92" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-95.7" y4="-97.5" x3="3.32" y1="-95.7" x2="3.32" y3="-97.5" x4="0.92"/>
<polygon x1="0.92" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-92.91" y4="-94.71" x3="3.32" y1="-92.91" x2="3.32" y3="-94.71" x4="0.92"/>
<polygon x1="0.92" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-90.1" y4="-91.9" x3="3.32" y1="-90.1" x2="3.32" y3="-91.9" x4="0.92"/>
<polygon x1="0.92" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-87.3" y4="-89.1" x3="3.32" y1="-87.3" x2="3.32" y3="-89.1" x4="0.92"/>
<polygon x1="0.92" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-84.51" y4="-86.31" x3="3.32" y1="-84.51" x2="3.32" y3="-86.31" x4="0.92"/>
<polygon x1="0.92" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-81.71" y4="-83.51" x3="3.32" y1="-81.71" x2="3.32" y3="-83.51" x4="0.92"/>
<polygon x1="0.92" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-78.9" y4="-80.71" x3="3.32" y1="-78.9" x2="3.32" y3="-80.71" x4="0.92"/>
<polygon x1="0.92" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-76.11" y4="-77.9" x3="3.32" y1="-76.11" x2="3.32" y3="-77.9" x4="0.92"/>
<polygon y4="-120.72" x3="7.55" y1="-121.12" y5="-120.41" x10="11.92" y10="-71.27" x9="7.61" y8="-71.47" x5="7.22" antialias="false" y3="-120.95" x2="7.8" y6="-71.79" y2="-121" x6="7.22" closed="false" y9="-71.39" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="11.92" x7="7.27" x4="7.3" x8="7.38" y7="-71.6"/>
<polygon closed="false" x1="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-68.24" y1="-68.24" x2="11.95"/>
<polygon closed="false" x1="4.21" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-66.86" y1="-123.36" x2="4.21"/>
<polygon closed="false" x1="4.21" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="72.33" y1="-35.26" x2="4.21"/>
<polygon closed="false" x1="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-36" y1="-36" x2="12"/>
<polygon x1="8.84" style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" y2="-31.86" y4="-35.86" x3="-8.76" y1="-31.86" x2="-8.76" y3="-35.86" x4="8.84"/>
<polygon closed="false" x1="12.09" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="66.93" y1="66.93" x2="-11.82"/>
<polygon closed="false" x1="-5.81" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="69.28" y1="69.28" x2="-11.89"/>
<polygon closed="false" x1="-5.79" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="78.55" y1="69.28" x2="-5.79"/>
<polygon closed="false" x1="6.92" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="72.4" x3="4.12" y1="72.39" x2="4.13" y3="78.53"/>
<polygon x1="1.62" style="line-style:normal;line-weight:thin;filling:red;color:black" antialias="false" y2="-119.88" y4="-118.08" x3="0.62" y1="-119.88" x2="0.62" y3="-118.08" x4="1.62"/>
<polygon x1="2.61" style="line-style:normal;line-weight:thin;filling:yellow;color:black" antialias="false" y2="-119.88" y4="-118.08" x3="1.62" y1="-119.88" x2="1.62" y3="-118.08" x4="2.61"/>
<polygon x1="3.61" style="line-style:normal;line-weight:thin;filling:green;color:black" antialias="false" y2="-119.88" y4="-118.08" x3="2.61" y1="-119.88" x2="2.61" y3="-118.08" x4="3.61"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-119.31" y4="-118.82" x3="10" y1="-118.86" x2="9.25" y3="-119.32" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-119.5" y4="-120" x3="10" y1="-119.95" x2="9.25" y3="-119.49" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-114.32" y4="-113.82" x3="10" y1="-113.86" x2="9.25" y3="-114.32" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-114.5" y4="-115" x3="10" y1="-114.96" x2="9.25" y3="-114.5" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-109.32" y4="-108.83" x3="10" y1="-108.87" x2="9.25" y3="-109.32" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-109.51" y4="-110" x3="10" y1="-109.96" x2="9.25" y3="-109.5" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-104.32" y4="-103.83" x3="10" y1="-103.87" x2="9.25" y3="-104.33" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-104.51" y4="-105" x3="10" y1="-104.96" x2="9.25" y3="-104.5" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-99.33" y4="-98.84" x3="10" y1="-98.88" x2="9.25" y3="-99.34" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-99.52" y4="-100" x3="10" y1="-99.97" x2="9.25" y3="-99.51" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-94.33" y4="-93.84" x3="10" y1="-93.88" x2="9.25" y3="-94.34" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-94.52" y4="-95" x3="10" y1="-94.97" x2="9.25" y3="-94.51" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-89.34" y4="-88.85" x3="10" y1="-88.89" x2="9.25" y3="-89.34" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-89.53" y4="-90.02" x3="10" y1="-89.98" x2="9.25" y3="-89.52" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-84.34" y4="-83.85" x3="10" y1="-83.89" x2="9.25" y3="-84.35" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-84.53" y4="-85.02" x3="10" y1="-84.98" x2="9.25" y3="-84.52" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="51.03" y4="51.51" x3="10" y1="51.47" x2="9.25" y3="51.02" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="50.83" y4="50.35" x3="10" y1="50.39" x2="9.25" y3="50.85" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="69.04" y4="69.52" x3="10" y1="69.48" x2="9.25" y3="69.03" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="68.84" y4="68.36" x3="10" y1="68.4" x2="9.25" y3="68.85" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-79.35" y4="-78.86" x3="10" y1="-78.9" x2="9.25" y3="-79.36" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-79.54" y4="-80.03" x3="10" y1="-80" x2="9.25" y3="-79.53" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-74.36" y4="-73.87" x3="10" y1="-73.91" x2="9.25" y3="-74.37" x4="10.41"/>
<polygon closed="false" x1="8.15" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-74.55" y4="-75.04" x3="10" y1="-75" x2="9.25" y3="-74.54" x4="10.41"/>
<polygon x1="-10.05" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="-28.45" y4="-22.84" x3="-7.63" y1="-28.45" x2="-7.63" y3="-22.84" x4="-10.05"/>
<polygon x1="-10.05" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="-20.45" y4="-14.84" x3="-7.63" y1="-20.45" x2="-7.63" y3="-14.84" x4="-10.05"/>
<polygon x1="-10.05" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="-12.45" y4="-6.84" x3="-7.63" y1="-12.45" x2="-7.63" y3="-6.84" x4="-10.05"/>
<polygon x1="-10.05" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="-4.45" y4="1.15" x3="-7.63" y1="-4.45" x2="-7.63" y3="1.15" x4="-10.05"/>
<polygon x1="-10.05" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="3.55" y4="9.15" x3="-7.63" y1="3.55" x2="-7.63" y3="9.15" x4="-10.05"/>
<polygon x1="-10.05" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="11.55" y4="17.15" x3="-7.63" y1="11.55" x2="-7.63" y3="17.15" x4="-10.05"/>
<polygon x1="-10.05" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="19.55" y4="25.15" x3="-7.63" y1="19.55" x2="-7.63" y3="25.15" x4="-10.05"/>
<polygon x1="-10.05" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="27.54" y4="33.15" x3="-7.63" y1="27.54" x2="-7.63" y3="33.15" x4="-10.05"/>
<polygon x1="-10.05" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="35.54" y4="41.14" x3="-7.63" y1="35.54" x2="-7.63" y3="41.14" x4="-10.05"/>
<polygon x1="-10.05" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="43.54" y4="49.14" x3="-7.63" y1="43.54" x2="-7.63" y3="49.14" x4="-10.05"/>
<polygon x1="-10.05" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="51.54" y4="57.14" x3="-7.63" y1="51.54" x2="-7.63" y3="57.14" x4="-10.05"/>
<polygon x1="-10.05" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" y2="59.54" y4="65.14" x3="-7.63" y1="59.54" x2="-7.63" y3="65.14" x4="-10.05"/>
<polygon x1="-10.05" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="65.14" y4="-28.54" x3="-7.63" y1="-28.54" x2="-10.05" y3="65.14" x4="-7.63"/>
<polygon x1="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="69.23" y4="-28.54" x3="-5.94" y1="-28.54" x2="-12" y3="69.23" x4="-5.94"/>
<polygon closed="false" x1="-12" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" y2="-66.86" y1="-66.86" x2="11.95"/>
<rect height="6.63" width="17.55" style="line-style:normal;line-weight:thin;filling:none;color:black" antialias="false" x="-11.26" rx="1.14" y="-130.08" ry="1.14"/>
<polygon x1="0.92" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" y2="-73.31" y4="-75.1" x3="3.32" y1="-73.31" x2="3.32" y3="-75.1" x4="0.92"/>
<text rotation="270" text="763-5120" font="Sans Serif,4,-1,5,50,0,0,0,0,0" x="-5.89" color="#000000" y="-84.8"/>
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" x="-5" diameter="2.8" y="-21.3"/>
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" x="-5" diameter="2.8" y="-5.3"/>
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" x="-5" diameter="2.8" y="10.7"/>
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" x="-5" diameter="2.8" y="26.7"/>
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" x="-5" diameter="2.8" y="42.7"/>
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" x="-5" diameter="2.8" y="60.6"/>
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" x="2.4" diameter="8.5" y="-26.3"/>
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" x="2.4" diameter="8.5" y="-10.3"/>
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" x="2.4" diameter="8.5" y="5.7"/>
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" x="2.4" diameter="8.5" y="21.7"/>
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" x="2.4" diameter="8.5" y="37.7"/>
<circle style="line-style:normal;line-weight:thin;filling:lightgray;color:black" antialias="false" x="2.4" diameter="8.5" y="55.6"/>
<rect height="4.5" width="8.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x="0.5" rx="1" y="-24.3" ry="1"/>
<rect height="4.5" width="8.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x="0.5" rx="1" y="-8.3" ry="1"/>
<rect height="4.5" width="8.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x="0.5" rx="1" y="7.8" ry="1"/>
<rect height="4.5" width="8.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x="0.5" rx="1" y="23.7" ry="1"/>
<rect height="4.5" width="8.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x="0.5" rx="1" y="39.7" ry="1"/>
<rect height="4.5" width="8.5" style="line-style:normal;line-weight:thin;filling:gray;color:black" antialias="false" x="0.5" rx="1" y="57.6" ry="1"/>
<rect height="8.1" width="4.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" x="-1.8" rx="1" y="-26.1" ry="2"/>
<rect height="8.1" width="4.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" x="-1.8" rx="1" y="-10.1" ry="2"/>
<rect height="8.1" width="4.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" x="-1.8" rx="1" y="5.9" ry="2"/>
<rect height="8.1" width="4.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" x="-1.8" rx="1" y="21.9" ry="2"/>
<rect height="8.1" width="4.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" x="-1.8" rx="1" y="37.9" ry="2"/>
<rect height="8.1" width="4.4" style="line-style:normal;line-weight:thin;filling:orange;color:black" antialias="false" x="-1.8" rx="1" y="55.8" ry="2"/>
</description>
</definition>

View File

@@ -1,24 +0,0 @@
<definition type="element" width="20" version="0.90" link_type="simple" hotspot_y="136" hotspot_x="12" height="220">
<names>
<name lang="de">763-5600</name>
<name lang="fr">763-5600</name>
<name lang="en">763-5600</name>
<name lang="cs">763-5600</name>
</names>
<elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation>
<elementInformation show="1" name="designation">763-5600</elementInformation>
<elementInformation show="1" name="description">END Module ADV</elementInformation>
</elementInformations>
<informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations>
<description>
<dynamic_text z="1" frame="false" keep_visual_rotation="true" text_width="-1" uuid="{4e4b145e-eacc-4700-bc38-f1339f6fdefe}" text_from="ElementInfo" y="-24.21" Valignment="AlignVCenter" font="Sans Serif,3.43,-1,5,25,0,0,0,0,0" Halignment="AlignHCenter" x="-5.27" rotation="270">
<text></text>
<info_name>label</info_name>
</dynamic_text>
<polygon y11="-131.18" x11="-8.93" x15="-7.48" y5="77.76" y9="-131.31" x1="-7.48" y13="-129.54" x17="-5" y17="-128.91" y7="78.67" antialias="false" x6="-9.18" y15="-123.82" x4="-10.13" x10="-8.3" style="line-style:normal;line-weight:thin;filling:white;color:black" x2="-7.48" x12="-9.77" x5="-9.88" y2="72.98" x13="-10.13" x14="-10.13" x7="-8.33" y4="76.87" y8="78.67" x3="-10.13" x16="-7.48" y14="-123.82" y6="78.45" y12="-130.59" x8="5" x18="-5" y1="76.27" y10="-131.31" y18="76.27" x9="5" y3="72.98" y16="-128.91"/>
<text y="-84.8" font="Sans Serif,4,-1,5,50,0,0,0,0,0" text="763-5600" x="1.87" rotation="270" color="#000000"/>
</description>
</definition>

View File

@@ -1,14 +0,0 @@
<qet-directory>
<names>
<name lang="pl">I/O-System Advanced</name>
<name lang="de">I/O-System Advanced</name>
<name lang="el">I/O-System Advanced</name>
<name lang="it">I/O-System Advanced</name>
<name lang="ru">I/O-System Advanced</name>
<name lang="nl">I/O-System Advanced</name>
<name lang="cs">I/O-System Advanced</name>
<name lang="en">I/O-System Advanced</name>
<name lang="fr">I/O-System Advanced</name>
<name lang="da">I/O-System Advanced</name>
</names>
</qet-directory>

View File

@@ -1,19 +1,19 @@
<definition type="element" width="5" height="188" version="0.90" hotspot_x="2" hotspot_y="94" link_type="simple"> <definition width="10" link_type="simple" type="element" height="190" hotspot_y="95" hotspot_x="5" version="0.90">
<names> <names>
<name lang="cs">859-525</name> <name lang="en">Series 859 - Endplate</name>
<name lang="de">859-525</name> <name lang="de">Serie 859 - Abschluß-/ Endplatte</name>
<name lang="en">859-525</name> <name lang="cs">Řada 859 - koncová deska</name>
<name lang="fr">859-525</name> <name lang="fr">Série 859 - plaque d'extrémité</name>
</names> </names>
<elementInformations> <elementInformations>
<elementInformation show="1" name="manufacturer">WAGO</elementInformation> <elementInformation name="description" show="1">Abschlussplatte / Endplate</elementInformation>
<elementInformation show="1" name="designation">859-525</elementInformation> <elementInformation name="manufacturer" show="1">WAGO</elementInformation>
<elementInformation show="1" name="description">Abschlussplatte / Endplate</elementInformation> <elementInformation name="designation" show="1">859-525</elementInformation>
</elementInformations> </elementInformations>
<informations>Author: plc-user for QElectroTech <informations>Author: plc-user for QElectroTech
License:see https://qelectrotech.org/wiki_new/doc/elements_license License:see https://qelectrotech.org/wiki_new/doc/elements_license
</informations> </informations>
<description> <description>
<rect x="-1" y="-91" rx="0" ry="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" width="2" height="182" antialias="false"/> <rect width="2" antialias="false" height="182" rx="0" style="line-style:normal;line-weight:thin;filling:lightgray;color:black" ry="0" x="-1" y="-91"/>
</description> </description>
</definition> </definition>

View File

@@ -2,7 +2,6 @@
<names> <names>
<name lang="fr">11- Impression, perforation, télécopie</name> <name lang="fr">11- Impression, perforation, télécopie</name>
<name lang="es">11- Impresión, perforación, envío de faxes</name> <name lang="es">11- Impresión, perforación, envío de faxes</name>
<name lang="de">11- Drucken, Lochen und Fernkopieren</name>
<name lang="ja">11- 印刷,さん孔及びファクシミリ</name> <name lang="ja">11- 印刷,さん孔及びファクシミリ</name>
<name lang="de">11- Drucken, Lochen und Fernkopieren</name> <name lang="de">11- Drucken, Lochen und Fernkopieren</name>
<name lang="cs">11- Tisk, děrování, fax</name> <name lang="cs">11- Tisk, děrování, fax</name>

View File

@@ -3,7 +3,7 @@
<name lang="fr">03- Dispositifs de liaison</name> <name lang="fr">03- Dispositifs de liaison</name>
<name lang="de">03- Verbinder</name> <name lang="de">03- Verbinder</name>
<name lang="ja">03- 接続部品</name> <name lang="ja">03- 接続部品</name>
<name lang="fr">03- Spojovací součásti</name> <name lang="cs">03- Spojovací součásti</name>
<name lang="en">03- Connection devices</name> <name lang="en">03- Connection devices</name>
</names> </names>
</qet-directory> </qet-directory>

View File

@@ -0,0 +1,53 @@
<definition height="130" version="0.90" width="70" type="element" link_type="simple" hotspot_y="60" hotspot_x="35">
<uuid uuid="{8538cdcd-dcd1-46fb-8575-0da8d0c9f516}"/>
<names>
<name lang="fr">Cognex D900 vue de face</name>
<name lang="en">Cognex D900 front view</name>
</names>
<elementInformations>
<elementInformation show="1" name="plant"></elementInformation>
<elementInformation show="1" name="machine_manufacturer_reference"></elementInformation>
<elementInformation show="1" name="comment"></elementInformation>
<elementInformation show="1" name="supplier"></elementInformation>
<elementInformation show="1" name="manufacturer_reference"></elementInformation>
<elementInformation show="1" name="label"></elementInformation>
<elementInformation show="1" name="quantity"></elementInformation>
<elementInformation show="1" name="unity"></elementInformation>
<elementInformation show="1" name="description"></elementInformation>
<elementInformation show="1" name="designation">D900</elementInformation>
<elementInformation show="1" name="manufacturer">Cognex</elementInformation>
</elementInformations>
<informations>Scale : 1px = 1mm
Echelle : 1px = 1mm</informations>
<description>
<line antialias="false" end2="none" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="25" y2="63" y1="61" length1="1.5" length2="1.5" x2="12"/>
<rect y="54" height="10" width="13" antialias="false" ry="0" x="-7" style="line-style:normal;line-weight:normal;filling:black;color:black" rx="0"/>
<rect y="54" height="10" width="13" antialias="false" ry="0" x="12" style="line-style:normal;line-weight:normal;filling:gray;color:black" rx="0"/>
<rect y="-55" height="105" width="60" antialias="false" ry="2" x="-30" style="line-style:normal;line-weight:normal;filling:yellow;color:black" rx="2"/>
<rect y="1" height="46" width="1" antialias="false" ry="0.5" x="4" style="line-style:normal;line-weight:thin;filling:none;color:black" rx="0.5"/>
<rect y="1" height="46" width="1" antialias="false" ry="0.5" x="-10" style="line-style:normal;line-weight:thin;filling:none;color:black" rx="0.5"/>
<rect y="1" height="46" width="1" antialias="false" ry="0.5" x="9" style="line-style:normal;line-weight:thin;filling:none;color:black" rx="0.5"/>
<rect y="1" height="46" width="1" antialias="false" ry="0.5" x="-5" style="line-style:normal;line-weight:thin;filling:none;color:black" rx="0.5"/>
<rect y="1" height="46" width="1" antialias="false" ry="0.5" x="14" style="line-style:normal;line-weight:thin;filling:none;color:black" rx="0.5"/>
<rect y="1" height="46" width="1" antialias="false" ry="0.5" x="-15" style="line-style:normal;line-weight:thin;filling:none;color:black" rx="0.5"/>
<rect y="1" height="46" width="1" antialias="false" ry="0.5" x="-0.5" style="line-style:normal;line-weight:thin;filling:none;color:black" rx="0.5"/>
<rect y="51" height="3" width="52" antialias="false" ry="0" x="-26" style="line-style:normal;line-weight:normal;filling:black;color:black" rx="0"/>
<rect y="54" height="10" width="13" antialias="false" ry="0" x="-25" style="line-style:normal;line-weight:normal;filling:black;color:black" rx="0"/>
<line antialias="false" end2="none" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="25" y2="57" y1="55" length1="1.5" length2="1.5" x2="12"/>
<line antialias="false" end2="none" end1="none" style="line-style:normal;line-weight:thin;filling:none;color:black" x1="25" y2="60" y1="58" length1="1.5" length2="1.5" x2="12"/>
<rect y="-55" height="55" width="60" antialias="false" ry="2" x="-30" style="line-style:normal;line-weight:normal;filling:black;color:black" rx="2"/>
<circle y="-55" antialias="false" x="-30" diameter="60" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<circle y="-47.5" antialias="false" x="-22.5" diameter="45" style="line-style:normal;line-weight:normal;filling:lightgray;color:black"/>
<circle y="3.5" antialias="false" x="-21.5" diameter="5" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<line antialias="false" end2="none" end1="none" style="line-style:normal;line-weight:normal;filling:none;color:black" x1="26" y2="20" y1="20" length1="1.5" length2="1.5" x2="-27"/>
<circle y="33.5" antialias="false" x="16.5" diameter="5" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle y="33.5" antialias="false" x="-21.5" diameter="5" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<circle y="3.5" antialias="false" x="16.5" diameter="5" style="line-style:normal;line-weight:thin;filling:gray;color:black"/>
<arc y="18" height="2" width="7" antialias="true" x="-30" start="180" style="line-style:normal;line-weight:normal;filling:none;color:black" angle="90"/>
<arc y="18" height="2" width="7" antialias="true" x="23" start="270" style="line-style:normal;line-weight:normal;filling:none;color:black" angle="90"/>
<circle y="-38.5" antialias="false" x="-13.5" diameter="27" style="line-style:normal;line-weight:normal;filling:gray;color:black"/>
<terminal y="60" orientation="s" x="0" type="Generic" name="" uuid="{4dea2b71-47b6-46ac-9255-5ca72c2c85e6}"/>
<terminal y="60" orientation="s" x="-20" type="Generic" name="" uuid="{c35702a0-aed2-4520-bffb-e3ec76979406}"/>
<terminal y="60" orientation="s" x="20" type="Generic" name="" uuid="{8eeedc48-43ec-4b2f-86c7-01a6781a33ce}"/>
</description>
</definition>

View File

@@ -0,0 +1,6 @@
<qet-directory>
<names>
<name lang="en">In-Sight</name>
<name lang="fr">In-Sight</name>
</names>
</qet-directory>

View File

@@ -0,0 +1,6 @@
<qet-directory>
<names>
<name lang="en">Cognex</name>
<name lang="fr">Cognex</name>
</names>
</qet-directory>

View File

@@ -2,7 +2,7 @@
<uuid uuid="{ed39aaa8-fa3f-423b-9829-1e2c8664a2bf}"/> <uuid uuid="{ed39aaa8-fa3f-423b-9829-1e2c8664a2bf}"/>
<names> <names>
<name lang="fr">413017 - Alimentation modulaire 9V= 1,6A</name> <name lang="fr">413017 - Alimentation modulaire 9V= 1,6A</name>
<name lang="fr">413017 - Napájecí zdroj 9V= 1,6A</name> <name lang="cs">413017 - Napájecí zdroj 9V= 1,6A</name>
</names> </names>
<elementInformations> <elementInformations>
<elementInformation show="1" name="comment"></elementInformation> <elementInformation show="1" name="comment"></elementInformation>

View File

@@ -2,6 +2,6 @@
<names> <names>
<name lang="fr">Protection</name> <name lang="fr">Protection</name>
<name lang="en">Protection</name> <name lang="en">Protection</name>
<name lang="en">Ochranné svorky</name> <name lang="cs">Ochranné svorky</name>
</names> </names>
</qet-directory> </qet-directory>

View File

@@ -2,6 +2,6 @@
<names> <names>
<name lang="fr">Fonction</name> <name lang="fr">Fonction</name>
<name lang="en">Function</name> <name lang="en">Function</name>
<name lang="en">Funkční</name> <name lang="cd">Funkční</name>
</names> </names>
</qet-directory> </qet-directory>

View File

@@ -3,7 +3,7 @@
<names> <names>
<name lang="en">Sofrel Surge Protector </name> <name lang="en">Sofrel Surge Protector </name>
<name lang="fr"> Parafoudre Sofrel</name> <name lang="fr"> Parafoudre Sofrel</name>
<name lang="en">Sofrel Přepěťová ochrana</name> <name lang="cs">Sofrel Přepěťová ochrana</name>
</names> </names>
<elementInformations> <elementInformations>
<elementInformation show="1" name="manufacturer-reference"></elementInformation> <elementInformation show="1" name="manufacturer-reference"></elementInformation>

View File

@@ -0,0 +1,6 @@
<qet-directory>
<names>
<name lang="en">Bar</name>
<name lang="fr">Barres</name>
</names>
</qet-directory>

View File

@@ -0,0 +1,33 @@
<definition height="60" link_type="simple" hotspot_x="84" type="element" width="180" version="0.90" hotspot_y="30">
<uuid uuid="{6b234073-9dd5-4afd-847d-fcebb16b52e3}"/>
<names>
<name lang="en">M-EBAR 125 front view</name>
<name lang="fr">M-EBAR 125 vue de face</name>
</names>
<elementInformations/>
<informations>Scale : 1px = 1mm
Echelle : 1px = 1mm</informations>
<description>
<rect ry="0" y="-24" height="48" antialias="false" x="-80" width="160" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<circle y="-6" antialias="false" x="16" diameter="12" style="line-style:normal;line-weight:normal;filling:none;color:black"/>
<rect ry="0" y="23" height="1" antialias="false" x="-69" width="125" rx="0" style="line-style:normal;line-weight:normal;filling:HTMLGrayDimGray;color:HTMLGrayDimGray"/>
<rect ry="0" y="-24" height="1" antialias="false" x="-69" width="125" rx="0" style="line-style:normal;line-weight:normal;filling:HTMLGrayDimGray;color:HTMLGrayDimGray"/>
<rect ry="0" y="-24" height="48" antialias="false" x="57" width="23" rx="0" style="line-style:normal;line-weight:normal;filling:black;color:black"/>
<rect ry="0" y="18" height="2" antialias="false" x="71" width="4" rx="0" style="line-style:normal;line-weight:normal;filling:orange;color:orange"/>
<rect ry="0" y="-5.5" height="11" antialias="false" x="80" width="12" rx="0" style="line-style:normal;line-weight:normal;filling:gray;color:black"/>
<line x2="83" antialias="false" y1="-5" end2="none" y2="5" x1="81" end1="none" length2="1.5" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<line x2="86" antialias="false" y1="-5" end2="none" y2="5" x1="84" end1="none" length2="1.5" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<line x2="89" antialias="false" y1="-5" end2="none" y2="5" x1="87" end1="none" length2="1.5" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<line x2="92" antialias="false" y1="-5" end2="none" y2="5" x1="90" end1="none" length2="1.5" length1="1.5" style="line-style:normal;line-weight:thin;filling:none;color:black"/>
<rect ry="0" y="-20" height="2" antialias="false" x="71" width="4" rx="0" style="line-style:normal;line-weight:normal;filling:green;color:green"/>
<rect ry="10" y="-10" height="20" antialias="false" x="-68" width="120" rx="10" style="line-style:normal;line-weight:normal;filling:white;color:black"/>
<text y="-17" rotation="270" x="69" color="#ffffff" text="ON" font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<text y="21" rotation="270" x="69" color="#ffffff" text="Str." font="Sans Serif,2,-1,5,50,0,0,0,0,0"/>
<circle y="-7.5" antialias="false" x="-40.5" diameter="15" style="line-style:normal;line-weight:normal;filling:HTMLBrownCornsilk;color:HTMLBrownCornsilk"/>
<circle y="-7.5" antialias="false" x="-65.5" diameter="15" style="line-style:normal;line-weight:normal;filling:HTMLBrownCornsilk;color:HTMLBrownCornsilk"/>
<circle y="-7.5" antialias="false" x="34.5" diameter="15" style="line-style:normal;line-weight:normal;filling:HTMLBrownCornsilk;color:HTMLBrownCornsilk"/>
<circle y="-7.5" antialias="false" x="-15.5" diameter="15" style="line-style:normal;line-weight:normal;filling:HTMLBrownCornsilk;color:HTMLBrownCornsilk"/>
<circle y="-7.5" antialias="false" x="9.5" diameter="15" style="line-style:normal;line-weight:normal;filling:HTMLBrownCornsilk;color:HTMLBrownCornsilk"/>
<terminal y="0" orientation="e" x="90" uuid="{8a26c79a-ad6e-4042-a95f-d1032f16d886}" type="Generic" name=""/>
</description>
</definition>

View File

@@ -0,0 +1,6 @@
<qet-directory>
<names>
<name lang="en">tpl-vision</name>
<name lang="fr">tpl-vision</name>
</names>
</qet-directory>

View File

@@ -2,8 +2,7 @@
<uuid uuid="{BD6DCEEE-8BB3-46DA-A403-E15E18A1332F}"/><names> <uuid uuid="{BD6DCEEE-8BB3-46DA-A403-E15E18A1332F}"/><names>
<name lang="es">ACS con retorno</name> <name lang="es">ACS con retorno</name>
<name lang="ca">ACS amb retorn</name> <name lang="ca">ACS amb retorn</name>
<name lang="ca">Retour ECS</name> <name lang="fr">Retour ECS</name>
</names> </names>
<informations>Rafael Ferrando. <informations>Rafael Ferrando.
Mantenimiento de Instalaciones Térmicas</informations> Mantenimiento de Instalaciones Térmicas</informations>

View File

@@ -1,5 +1,6 @@
<definition link_type="simple" type="element" hotspot_x="20" hotspot_y="29" width="60" height="50" version="0.5"> <definition link_type="simple" type="element" hotspot_x="20" hotspot_y="29" width="60" height="50" version="0.5">
<uuid uuid="{CB91CADE-A807-48D7-9216-D42914375983}"/><names> <uuid uuid="{CB91CADE-A807-48D7-9216-D42914375983}"/>
<names>
<name lang="ca">ACS+retorn</name> <name lang="ca">ACS+retorn</name>
<name lang="es">ACS+retorno </name> <name lang="es">ACS+retorno </name>
<name lang="en">DHW+return </name> <name lang="en">DHW+return </name>

View File

@@ -3,7 +3,7 @@
<name lang="es">Flujostato</name> <name lang="es">Flujostato</name>
<name lang="en">Flow switch</name> <name lang="en">Flow switch</name>
<name lang="ca">Flujostato</name> <name lang="ca">Flujostato</name>
<name lang="ca">Controleur de débit</name> <name lang="fr">Controleur de débit</name>
</names> </names>
<informations>Rafael Ferrando. <informations>Rafael Ferrando.
Mantenimiento de Instalaciones Térmicas</informations> Mantenimiento de Instalaciones Térmicas</informations>

View File

@@ -1,7 +1,6 @@
<definition hotspot_x="14" hotspot_y="32" width="30" type="element" version="0.5" height="60" link_type="simple"> <definition hotspot_x="14" hotspot_y="32" width="30" type="element" version="0.5" height="60" link_type="simple">
<uuid uuid="{7D243178-2DD6-4186-9049-15C0DEE24982}"/><names> <uuid uuid="{7D243178-2DD6-4186-9049-15C0DEE24982}"/><names>
<name lang="ca">Toaller</name> <name lang="ca">Toaller</name>
<name lang="es">Toallero</name>
<name lang="es">Towel rack</name> <name lang="es">Towel rack</name>
<name lang="fr">Portes serviettes</name> <name lang="fr">Portes serviettes</name>
</names> </names>

8
elements/count_elements.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
# compte les elements
nb_elmts=$(find . -name "*.elmt" | wc -l)
nb_categ=$(find . -name "qet_directory" | wc -l)
((nb_files=$nb_elmts + $nb_categ))
echo "${nb_elmts} elements dans ${nb_categ} categories (soit ${nb_files} fichiers)"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

13587
lang/qet_cn.ts Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Some files were not shown because too many files have changed in this diff Show More