SNT

Cours de SNT
git clone git://git.vgx.fr/SNT
Log | Files | Refs

commit 2563b797c4fa698e547e6f9e530329ef4120a05d
parent 0883c1275e6e5315fce6174ee884b59d8f1aff5b
Author: Léo Villeveygoux <l@vgx.fr>
Date:   Fri, 16 Oct 2020 17:15:49 +0200

Ajout des séances sur TCP et IP

Diffstat:
Ainternet/TCP-IP/cours_internet_IP.md | 112+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Ainternet/TCP-IP/cours_internet_IP.pdf | 0
Ainternet/TCP-IP/illustrations/B-O-N-J-O-U-R.svg | 132+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Ainternet/TCP-IP/illustrations/BONJOUR.svg | 78++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Ainternet/TCP-IP/illustrations/commutation-circuit.pdf | 0
Ainternet/TCP-IP/illustrations/commutation-circuit.svg | 1679+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Ainternet/TCP-IP/illustrations/commutation-paquets.pdf | 0
Ainternet/TCP-IP/illustrations/commutation-paquets.svg | 1619+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Ainternet/TCP-IP/illustrations/contenus.png | 0
Ainternet/TCP-IP/illustrations/paquets-1.blend | 0
Ainternet/TCP-IP/illustrations/paquets-1.mp4 | 0
Ainternet/TCP-IP/illustrations/paquets-2.blend | 0
Ainternet/TCP-IP/illustrations/paquets-2.mp4 | 0
Ainternet/TCP-IP/illustrations/paquets-3.blend | 0
Ainternet/TCP-IP/illustrations/paquets-3.mp4 | 0
Ainternet/TCP-IP/illustrations/paquets-bonjour-1.svg | 771+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Ainternet/TCP-IP/illustrations/paquets-bonjour-2.svg | 813+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Ainternet/TCP-IP/illustrations/paquets-problemes-1.svg | 1800+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Ainternet/TCP-IP/illustrations/paquets-problemes-2.svg | 891+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Ainternet/TCP-IP/illustrations/paquets.png | 0
Ainternet/TCP-IP/illustrations/paquets.svg | 753+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Ainternet/TCP-IP/tableau-TCP-IP.odt | 0
Ainternet/TCP-IP/tableau-TCP-IP.pdf | 0
23 files changed, 8648 insertions(+), 0 deletions(-)

diff --git a/internet/TCP-IP/cours_internet_IP.md b/internet/TCP-IP/cours_internet_IP.md @@ -0,0 +1,112 @@ +# Internet + +## Attendus + +![](illustrations/contenus.png) + +# Protocoles TCP/IP, paquets, routage + +## Histoire (10mn) + +### Télécommunication + +- difficile à dater : signaux de fumées, pigeons voyageurs +- 1794 : Télégraphe optique +- 1837 : Télégraphe électrique +- 1876 : téléphone + +### Premiers réseaux informatiques + +- 1950s : dévelloppement de l'informatique +- 1960s : premiers réseaux, à échelle locale +- 1969 : ARPANET, réseau à l'échelle des États Unis, ancêtre d'Internet + +### Internet + +- 1983 : les protocoles IP et TCP sont adoptés, ARPANET devient Internet +- 1992 : invention du Web (voir le thème correspondant du programme) +- fin 1990s : démocratisation de l'accès à Internet + + +## Activité : commutation de circuits (10mn) + +Revenons un peu avant ARPANET, au temps des réseaux téléphoniques, des premiers réseaux informatiques. + +![](illustrations/commutation-circuit.svg) + +Pour qu'un terminal soit relié à un autre il faut lui réserver un circuit connecté de bout en bout. + +Une ligne ne peut être connectée qu'à une seule autre. + +Les évenements suivants arrivent, essayez de connecter les lignes correspondantes, si il y a un problème, dites lequel : + +* la ligne 1 à Cognac appelle la ligne 3 à Niort +* la ligne 2 à Angoulême appelle la ligne 2 à Cognac +* la ligne 6 à Cognac appelle la ligne 3 à Cognac +* la ligne 4 à Cognac appelle la ligne 1 à Poitiers +* la ligne 2 à Niort appelle la ligne 5 à Cognac +* la ligne 2 à Poitiers appelle la ligne 2 à Angoulême + +### Quels sont les problèmes ? (5mn) + +Problèmes à faire émerger : + +* Si il n'y a plus de ligne disponible, on ne peut pas se connecter +* Un terminal ne peut pas être connecté à 2 autres +* Pendant une connexion, une ligne est réservée même si il n'y a pas de données échangées +* Soit il faut une vision globale du réseau, soit on réserve des bouts de lignes lentement avant m^eme de commencer à les utiliser + +### Quelles solutions ? (5mn) + +* Plus de câbles, mais c'est vite pas tenable +* Découper les messages en petits bouts : la commutation de paquets + - revenir sur les raisons pour lesquelles ça peut résoudre les problèmes + +## Activité : questions de routage (15mn) + +![](illustrations/commutation-paquets.svg) + +* de quoi a-t-on besoin pour faire passer un message d'un terminal à l'autre ? + - addresse source, destination, decoupage du message : c'est le protocole IP +* que doit faire un routeur quand il reçoit un message ? + - le transmettre dans la "bonne direction", il doit avoir une idée de quel voisin sélectionner +* que faire si le réseau est encombré ? endommagé ? si des paquets tournent en boucle + - stoquer les paquets, essayer d'autres chemins, jetter les paquets, leur donner un temps de vie maximal (TTL) +* que peut-il arriver aux paquets qui gênerait la communication ? + - disparition, duplication, désordonnement +* quelles solutions à ces problèmes ? + - numérotation, réenvoi : c'est le protocole TCP + +Note : préciser la notion de "bonne direction" (table de routage comme "carte locale" du réseau) + +## Classement des caractéristiques et rôles de TCP et IP + +IP sert à transférer un paquet sur le réseau +il sert aux routeurs pour savoir quelle route faire prendre aux paquets, +mais ne regarde pas du tout le contenu. + +TCP sert à garantir la fiabilité de la transmisson, +quel que soit le chemin que peut parcourir un paquet. + +Classons les fonctionnalités et information de paquet suivants selon que ça appartienne à TCP ou à IP, ou aucun des 2. + +IP: +- adresse destinataire +- adresse emetteur +- TTL (nombre de routeurs passés) +- routage +- taille du paquet + +TCP: +- numérotation +- vérification des données +- réenvoi +- accusé de réception +- port (numéro de connexion / de serveur) +- gestion de la connexion + +Aucun: +- contenu du paquet +- sécurisation de la transmission +- protocole du Web +- garantie que le paquet arrive à temps diff --git a/internet/TCP-IP/cours_internet_IP.pdf b/internet/TCP-IP/cours_internet_IP.pdf Binary files differ. diff --git a/internet/TCP-IP/illustrations/B-O-N-J-O-U-R.svg b/internet/TCP-IP/illustrations/B-O-N-J-O-U-R.svg @@ -0,0 +1,132 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + sodipodi:docname="B-O-N-J-O-U-R.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)" + id="svg3671" + version="1.1" + viewBox="0 0 66.357353 14.969568" + height="14.969568mm" + width="66.357353mm"> + <defs + id="defs3665" /> + <sodipodi:namedview + inkscape:window-maximized="1" + inkscape:window-y="-1" + inkscape:window-x="-1" + inkscape:window-height="1078" + inkscape:window-width="1244" + fit-margin-bottom="0" + fit-margin-right="0" + fit-margin-left="0" + fit-margin-top="0" + showgrid="false" + inkscape:document-rotation="0" + inkscape:current-layer="layer1" + inkscape:document-units="mm" + inkscape:cy="30.627415" + inkscape:cx="144.95811" + inkscape:zoom="3.3653097" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" /> + <metadata + id="metadata3668"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + transform="translate(-19.897072,-137.51342)" + id="layer1" + inkscape:groupmode="layer" + inkscape:label="Calque 1"> + <rect + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + y="137.86014" + x="22.326672" + height="14.276128" + width="7.4895067" + id="rect3677" + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613375;paint-order:fill markers stroke" /> + <rect + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + y="137.86014" + x="76.301659" + height="14.276128" + width="7.4895067" + id="rect4325" + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613375;paint-order:fill markers stroke" /> + <rect + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613375;paint-order:fill markers stroke" + id="rect4315" + width="7.4895067" + height="14.276128" + x="31.322504" + y="137.86014" /> + <rect + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + y="137.86014" + x="40.318336" + height="14.276128" + width="7.4895067" + id="rect4317" + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613375;paint-order:fill markers stroke" /> + <rect + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613375;paint-order:fill markers stroke" + id="rect4319" + width="7.4895067" + height="14.276128" + x="49.314167" + y="137.86014" /> + <rect + y="137.86014" + x="58.310001" + height="14.276128" + width="7.4895067" + id="rect4321" + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613375;paint-order:fill markers stroke" /> + <rect + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613375;paint-order:fill markers stroke" + id="rect4323" + width="7.4895067" + height="14.276128" + x="67.305832" + y="137.86014" /> + <text + id="text3675" + y="149.56543" + x="22.18051" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:1.32292px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="font-weight:bold;stroke-width:0.264583" + y="149.56543" + x="22.18051" + id="tspan3673" + sodipodi:role="line">BONJOUR</tspan></text> + </g> +</svg> diff --git a/internet/TCP-IP/illustrations/BONJOUR.svg b/internet/TCP-IP/illustrations/BONJOUR.svg @@ -0,0 +1,78 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + sodipodi:docname="BONJOUR.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)" + id="svg3671" + version="1.1" + viewBox="0 0 66.357353 14.969568" + height="14.969568mm" + width="66.357353mm"> + <defs + id="defs3665" /> + <sodipodi:namedview + inkscape:window-maximized="1" + inkscape:window-y="-1" + inkscape:window-x="-1" + inkscape:window-height="1078" + inkscape:window-width="1918" + fit-margin-bottom="0" + fit-margin-right="0" + fit-margin-left="0" + fit-margin-top="0" + showgrid="false" + inkscape:document-rotation="0" + inkscape:current-layer="layer1" + inkscape:document-units="mm" + inkscape:cy="51.862413" + inkscape:cx="187.40272" + inkscape:zoom="2.2750724" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" /> + <metadata + id="metadata3668"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + transform="translate(-19.897072,-137.51342)" + id="layer1" + inkscape:groupmode="layer" + inkscape:label="Calque 1"> + <rect + y="138.38081" + x="20.764462" + height="13.234788" + width="64.622574" + id="rect3677" + style="fill:#ef2929;stroke:#cc0000;stroke-width:1.73478;paint-order:fill markers stroke" /> + <text + id="text3675" + y="149.56543" + x="22.18051" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:1.32292px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="font-weight:bold;stroke-width:0.264583" + y="149.56543" + x="22.18051" + id="tspan3673" + sodipodi:role="line">BONJOUR</tspan></text> + </g> +</svg> diff --git a/internet/TCP-IP/illustrations/commutation-circuit.pdf b/internet/TCP-IP/illustrations/commutation-circuit.pdf Binary files differ. diff --git a/internet/TCP-IP/illustrations/commutation-circuit.svg b/internet/TCP-IP/illustrations/commutation-circuit.svg @@ -0,0 +1,1679 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + sodipodi:docname="commutation-circuit.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)" + id="svg8" + version="1.1" + viewBox="0 0 160.39848 181.13374" + height="181.13374mm" + width="160.39848mm"> + <defs + id="defs2"> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker10685" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path10683" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker10675" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path10673" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker9695" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path9693" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker9685" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path9683" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker9675" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path9673" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker9665" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path9663" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker9655" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path9653" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker9645" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path9643" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker9635" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path9633" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker9625" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path9623" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker9615" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path9613" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker9605" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path9603" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker9595" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path9593" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker9585" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path9583" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker8723" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path8721" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker8713" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path8711" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker8703" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path8701" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker8693" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path8691" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker7770" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path7768" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker7760" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path7758" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker7750" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path7748" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker7740" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path7738" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker7730" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path7728" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker7720" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path7718" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker7088" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path7086" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker7078" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path7076" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker6542" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path6540" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker6532" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path6530" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="DotS" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path917" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3829" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3827" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3819" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3817" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3809" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3807" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3799" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3797" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3789" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3787" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3779" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3777" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3769" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3767" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3759" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3757" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3749" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3747" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3739" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3737" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3729" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3727" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3719" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3717" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3175" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3173" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3165" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3163" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3155" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3153" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3145" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3143" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3135" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3133" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3125" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3123" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3115" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3113" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3105" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3103" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3095" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3093" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3085" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3083" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3075" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3073" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3065" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3063" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2313" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path2311" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker2303" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2301" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2293" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path2291" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker2283" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2281" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2273" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path2271" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker2263" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2261" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2253" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path2251" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker2243" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2241" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2233" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path2231" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker2223" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2221" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2213" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path2211" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker2203" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2201" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker1614" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1612" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker1604" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1602" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1478" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1476" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1468" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1466" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker1362" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1360" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker1352" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1350" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1266" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1264" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1256" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1254" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker1190" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1188" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker1180" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1178" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="DotM" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path914" /> + </marker> + </defs> + <sodipodi:namedview + fit-margin-bottom="0" + fit-margin-right="0" + fit-margin-left="0" + fit-margin-top="0" + inkscape:window-maximized="1" + inkscape:window-y="-1" + inkscape:window-x="-1" + inkscape:window-height="1078" + inkscape:window-width="1918" + showgrid="false" + inkscape:document-rotation="0" + inkscape:current-layer="layer1" + inkscape:document-units="mm" + inkscape:cy="308.90686" + inkscape:cx="1075.5583" + inkscape:zoom="0.4803167" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" /> + <metadata + id="metadata5"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + transform="translate(-7.823148,-66.068488)" + id="layer1" + inkscape:groupmode="layer" + inkscape:label="Calque 1"> + <g + transform="translate(-10.583333,10.583333)" + id="g2015"> + <rect + style="fill:none;stroke:#000000;stroke-width:0.505005;paint-order:fill markers stroke" + id="rect846" + width="30.152264" + height="34.589516" + x="47.427097" + y="171.38521" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#DotM);marker-end:url(#DotM)" + d="m 27.146859,161.49386 23.093467,13.9985" + id="path848" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1176" + d="m 22.491573,173.49644 27.748753,7.81676" + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1180);marker-end:url(#marker1190)" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1256);marker-end:url(#marker1266)" + d="m 19.017743,185.22378 31.222583,1.38109" + id="path1252" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1348" + d="m 19.697322,197.48094 30.543004,-5.5844" + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1352);marker-end:url(#marker1362)" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1468);marker-end:url(#marker1478)" + d="m 24.201024,209.23821 26.039302,-12.05" + id="path1464" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1600" + d="M 27.817893,220.20979 50.240326,202.47988" + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1604);marker-end:url(#marker1614)" /> + <text + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="44.310223" + y="171.40913" + id="text1902"><tspan + sodipodi:role="line" + id="tspan1900" + x="44.310223" + y="171.40913" + style="stroke-width:0.264583">1</tspan></text> + <text + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="44.616554" + y="179.52106" + id="text1906"><tspan + sodipodi:role="line" + id="tspan1904" + x="44.616554" + y="179.52106" + style="stroke-width:0.264583">2</tspan></text> + <text + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="44.192543" + y="185.92691" + id="text1910"><tspan + sodipodi:role="line" + id="tspan1908" + x="44.192543" + y="185.92691" + style="stroke-width:0.264583">3</tspan></text> + <text + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="43.265392" + y="192.53706" + id="text1914"><tspan + sodipodi:role="line" + id="tspan1912" + x="43.265392" + y="192.53706" + style="stroke-width:0.264583">4</tspan></text> + <text + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="43.682667" + y="198.51208" + id="text1918"><tspan + sodipodi:role="line" + id="tspan1916" + x="43.682667" + y="198.51208" + style="stroke-width:0.264583">5</tspan></text> + <text + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="43.191105" + y="206.06956" + id="text1922"><tspan + sodipodi:role="line" + id="tspan1920" + x="43.191105" + y="206.06956" + style="stroke-width:0.264583">6</tspan></text> + </g> + <g + id="g2877"> + <rect + y="118.79026" + x="-218.18161" + height="34.589516" + width="30.152264" + id="rect2161" + style="fill:none;stroke:#000000;stroke-width:0.505005;paint-order:fill markers stroke" + transform="rotate(-90)" /> + <path + sodipodi:nodetypes="cc" + id="path2163" + d="m 108.89891,238.46185 13.9985,-23.09347" + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2203);marker-end:url(#marker2263)" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2213);marker-end:url(#marker2273)" + d="m 120.90149,243.11714 7.81676,-27.74876" + id="path2165" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path2167" + d="m 132.62883,246.59097 1.38109,-31.22259" + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2223);marker-end:url(#marker2283)" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2233);marker-end:url(#marker2293)" + d="m 144.88599,245.91139 -5.5844,-30.54301" + id="path2169" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path2171" + d="m 156.64326,241.40769 -12.05,-26.03931" + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2243);marker-end:url(#marker2303)" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2253);marker-end:url(#marker2313)" + d="M 167.61484,237.79082 149.88493,215.36838" + id="path2173" + sodipodi:nodetypes="cc" /> + <text + id="text2177" + y="222.51598" + x="115.88725" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="222.51598" + x="115.88725" + id="tspan2175" + sodipodi:role="line">1</tspan></text> + <text + id="text2181" + y="222.51598" + x="123.97214" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="222.51598" + x="123.97214" + id="tspan2179" + sodipodi:role="line">2</tspan></text> + <text + id="text2185" + y="222.51598" + x="130.85603" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="222.51598" + x="130.85603" + id="tspan2183" + sodipodi:role="line">3</tspan></text> + <text + id="text2189" + y="222.51598" + x="137.2666" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="222.51598" + x="137.2666" + id="tspan2187" + sodipodi:role="line">4</tspan></text> + <text + id="text2193" + y="222.51598" + x="143.67615" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="222.51598" + x="143.67615" + id="tspan2191" + sodipodi:role="line">5</tspan></text> + <text + id="text2197" + y="222.51598" + x="150.57246" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="222.51598" + x="150.57246" + id="tspan2195" + sodipodi:role="line">6</tspan></text> + </g> + <g + transform="matrix(1,0,0,-1,0,313.27072)" + id="g3061"> + <rect + transform="rotate(-90)" + style="fill:none;stroke:#000000;stroke-width:0.505005;paint-order:fill markers stroke" + id="rect3023" + width="30.152264" + height="34.589516" + x="-218.18161" + y="118.79026" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3065);marker-end:url(#marker3125)" + d="m 108.89891,238.46185 13.9985,-23.09347" + id="path3025" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path3027" + d="m 120.90149,243.11714 7.81676,-27.74876" + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3075);marker-end:url(#marker3135)" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3085);marker-end:url(#marker3145)" + d="m 132.62883,246.59097 1.38109,-31.22259" + id="path3029" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path3031" + d="m 144.88599,245.91139 -5.5844,-30.54301" + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3095);marker-end:url(#marker3155)" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3105);marker-end:url(#marker3165)" + d="m 156.64326,241.40769 -12.05,-26.03931" + id="path3033" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path3035" + d="M 167.61484,237.79082 149.88493,215.36838" + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3115);marker-end:url(#marker3175)" /> + <text + transform="scale(1,-1)" + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="115.88725" + y="-219.43399" + id="text3039"><tspan + sodipodi:role="line" + id="tspan3037" + x="115.88725" + y="-219.43399" + style="stroke-width:0.264583">1</tspan></text> + <text + transform="scale(1,-1)" + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="123.97214" + y="-219.43399" + id="text3043"><tspan + sodipodi:role="line" + id="tspan3041" + x="123.97214" + y="-219.43399" + style="stroke-width:0.264583">2</tspan></text> + <text + transform="scale(1,-1)" + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="130.85603" + y="-219.43399" + id="text3047"><tspan + sodipodi:role="line" + id="tspan3045" + x="130.85603" + y="-219.43399" + style="stroke-width:0.264583">3</tspan></text> + <text + transform="scale(1,-1)" + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="137.2666" + y="-219.43399" + id="text3051"><tspan + sodipodi:role="line" + id="tspan3049" + x="137.2666" + y="-219.43399" + style="stroke-width:0.264583">4</tspan></text> + <text + transform="scale(1,-1)" + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="143.67615" + y="-219.43399" + id="text3055"><tspan + sodipodi:role="line" + id="tspan3053" + x="143.67615" + y="-219.43399" + style="stroke-width:0.264583">5</tspan></text> + <text + transform="scale(1,-1)" + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="150.57246" + y="-219.43399" + id="text3059"><tspan + sodipodi:role="line" + id="tspan3057" + x="150.57246" + y="-219.43399" + style="stroke-width:0.264583">6</tspan></text> + </g> + <path + sodipodi:nodetypes="cc" + id="path1252-3" + d="M 64.281156,196.94387 H 123.44672" + style="fill:none;stroke:#000000;stroke-width:1.32743;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#DotS);marker-end:url(#DotS)" /> + <path + style="fill:none;stroke:#000000;stroke-width:1.32743;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker6532);marker-end:url(#marker6542)" + d="M 64.281156,201.86445 H 123.44672" + id="path6528" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path7074" + d="M 64.281156,206.78503 H 123.44672" + style="fill:none;stroke:#000000;stroke-width:1.32743;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7078);marker-end:url(#marker7088)" /> + <path + style="fill:none;stroke:#000000;stroke-width:1.32743;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker8703);marker-end:url(#marker8723)" + d="M 64.281156,106.98548 H 123.44672" + id="path8687" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#000000;stroke-width:1.46878;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7740);marker-end:url(#marker7770)" + d="m 139.60151,121.13471 v 71.4035" + id="path7712" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path7714" + d="m 134.60972,121.13471 v 71.4035" + style="fill:none;stroke:#000000;stroke-width:1.46878;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7730);marker-end:url(#marker7760)" /> + <path + style="fill:none;stroke:#000000;stroke-width:1.46878;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7720);marker-end:url(#marker7750)" + d="m 129.61793,121.13471 v 71.4035" + id="path7716" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path10671" + d="m 144.89318,121.13471 v 71.4035" + style="fill:none;stroke:#000000;stroke-width:1.46878;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker10675);marker-end:url(#marker10685)" /> + <path + sodipodi:nodetypes="cc" + id="path8689" + d="M 64.281156,111.90606 H 123.44672" + style="fill:none;stroke:#000000;stroke-width:1.32743;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker8693);marker-end:url(#marker8713)" /> + <g + id="g9581" + transform="translate(-10.583333,-79.375004)"> + <rect + y="171.38521" + x="47.427097" + height="34.589516" + width="30.152264" + id="rect9543" + style="fill:none;stroke:#000000;stroke-width:0.505005;paint-order:fill markers stroke" /> + <path + sodipodi:nodetypes="cc" + id="path9545" + d="m 27.146859,161.49386 23.093467,13.9985" + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker9585);marker-end:url(#marker9645)" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker9595);marker-end:url(#marker9655)" + d="m 22.491573,173.49644 27.748753,7.81676" + id="path9547" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path9549" + d="m 19.017743,185.22378 31.222583,1.38109" + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker9605);marker-end:url(#marker9665)" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker9615);marker-end:url(#marker9675)" + d="m 19.697322,197.48094 30.543004,-5.5844" + id="path9551" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path9553" + d="m 24.201024,209.23821 26.039302,-12.05" + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker9625);marker-end:url(#marker9685)" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker9635);marker-end:url(#marker9695)" + d="M 27.817893,220.20979 50.240326,202.47988" + id="path9555" + sodipodi:nodetypes="cc" /> + <text + id="text9559" + y="171.40913" + x="44.310223" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="171.40913" + x="44.310223" + id="tspan9557" + sodipodi:role="line">1</tspan></text> + <text + id="text9563" + y="179.52106" + x="44.616554" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="179.52106" + x="44.616554" + id="tspan9561" + sodipodi:role="line">2</tspan></text> + <text + id="text9567" + y="185.92691" + x="44.192543" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="185.92691" + x="44.192543" + id="tspan9565" + sodipodi:role="line">3</tspan></text> + <text + id="text9571" + y="192.53706" + x="43.265392" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="192.53706" + x="43.265392" + id="tspan9569" + sodipodi:role="line">4</tspan></text> + <text + id="text9575" + y="198.51208" + x="43.682667" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="198.51208" + x="43.682667" + id="tspan9573" + sodipodi:role="line">5</tspan></text> + <text + id="text9579" + y="206.06956" + x="43.191105" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="206.06956" + x="43.191105" + id="tspan9577" + sodipodi:role="line">6</tspan></text> + </g> + <text + id="text11879" + y="178.10042" + x="43.538025" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="178.10042" + x="43.538025" + id="tspan11877" + sodipodi:role="line">Cognac</tspan></text> + <text + id="text11883" + y="183.80553" + x="99.085823" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="183.80553" + x="99.085823" + id="tspan11881" + sodipodi:role="line">Angoulême</tspan></text> + <text + id="text11887" + y="130.50931" + x="108.61797" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="130.50931" + x="108.61797" + id="tspan11885" + sodipodi:role="line">Poitiers</tspan></text> + <text + id="text11891" + y="132.98134" + x="45.746304" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="132.98134" + x="45.746304" + id="tspan11889" + sodipodi:role="line">Niort</tspan></text> + </g> +</svg> diff --git a/internet/TCP-IP/illustrations/commutation-paquets.pdf b/internet/TCP-IP/illustrations/commutation-paquets.pdf Binary files differ. diff --git a/internet/TCP-IP/illustrations/commutation-paquets.svg b/internet/TCP-IP/illustrations/commutation-paquets.svg @@ -0,0 +1,1619 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + sodipodi:docname="commutation-paquets.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)" + id="svg8" + version="1.1" + viewBox="0 0 160.39848 181.13374" + height="181.13374mm" + width="160.39848mm"> + <defs + id="defs2"> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker10685" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path10683" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker10675" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path10673" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker9695" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path9693" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker9685" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path9683" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker9675" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path9673" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker9665" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path9663" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker9655" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path9653" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker9645" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path9643" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker9635" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path9633" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker9625" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path9623" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker9615" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path9613" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker9605" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path9603" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker9595" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path9593" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker9585" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path9583" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker8723" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path8721" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker8713" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path8711" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker8703" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path8701" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker8693" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path8691" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker7770" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path7768" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker7760" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path7758" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker7750" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path7748" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker7740" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path7738" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker7730" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path7728" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker7720" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path7718" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker6542" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path6540" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker6532" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path6530" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3829" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3827" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3819" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3817" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3809" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3807" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3799" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3797" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3789" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3787" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3779" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3777" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3769" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3767" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3759" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3757" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3749" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3747" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3739" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3737" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3729" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3727" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3719" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3717" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3175" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3173" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3165" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3163" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3155" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3153" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3145" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3143" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3135" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3133" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3125" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3123" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3115" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3113" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3105" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3103" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3095" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3093" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3085" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3083" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker3075" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3073" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3065" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3063" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2313" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path2311" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker2303" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2301" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2293" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path2291" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker2283" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2281" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2273" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path2271" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker2263" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2261" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2253" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path2251" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker2243" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2241" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2233" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path2231" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker2223" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2221" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2213" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path2211" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker2203" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2201" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker1614" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1612" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker1604" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1602" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1478" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1476" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1468" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1466" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker1362" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1360" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker1352" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1350" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1266" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1264" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1256" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1254" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker1190" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1188" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="marker1180" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1178" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="DotM" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="matrix(0.4,0,0,0.4,2.96,0.4)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path914" /> + </marker> + </defs> + <sodipodi:namedview + fit-margin-bottom="0" + fit-margin-right="0" + fit-margin-left="0" + fit-margin-top="0" + inkscape:window-maximized="1" + inkscape:window-y="-1" + inkscape:window-x="-1" + inkscape:window-height="1078" + inkscape:window-width="1918" + showgrid="false" + inkscape:document-rotation="0" + inkscape:current-layer="g2015" + inkscape:document-units="mm" + inkscape:cy="331.37461" + inkscape:cx="289.45901" + inkscape:zoom="1.0076477" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" /> + <metadata + id="metadata5"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + transform="translate(-7.823148,-66.068488)" + id="layer1" + inkscape:groupmode="layer" + inkscape:label="Calque 1"> + <g + transform="translate(-10.583333,10.583333)" + id="g2015"> + <rect + style="fill:none;stroke:#000000;stroke-width:0.505005;paint-order:fill markers stroke" + id="rect846" + width="30.152264" + height="34.589516" + x="47.427097" + y="171.38521" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.251207;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#DotM);marker-end:url(#DotM)" + d="m 26.322654,161.49386 20.752038,13.9985" + id="path848" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1176" + d="m 22.139364,173.49644 24.935328,7.81676" + style="fill:none;stroke:#000000;stroke-width:0.251207;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1180);marker-end:url(#marker1190)" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.251207;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1256);marker-end:url(#marker1266)" + d="m 19.017743,185.22378 28.056949,1.38109" + id="path1252" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1348" + d="m 19.62842,197.48094 27.446272,-5.5844" + style="fill:none;stroke:#000000;stroke-width:0.251207;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1352);marker-end:url(#marker1362)" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.251207;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1468);marker-end:url(#marker1478)" + d="m 23.675495,209.23821 23.399197,-12.05" + id="path1464" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1600" + d="M 26.925653,220.20979 47.074692,202.47988" + style="fill:none;stroke:#000000;stroke-width:0.251207;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1604);marker-end:url(#marker1614)" /> + <text + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="44.310223" + y="171.40913" + id="text1902"><tspan + sodipodi:role="line" + id="tspan1900" + x="44.310223" + y="171.40913" + style="stroke-width:0.264583">1</tspan></text> + <text + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="44.616554" + y="179.52106" + id="text1906"><tspan + sodipodi:role="line" + id="tspan1904" + x="44.616554" + y="179.52106" + style="stroke-width:0.264583">2</tspan></text> + <text + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="44.192543" + y="185.92691" + id="text1910"><tspan + sodipodi:role="line" + id="tspan1908" + x="44.192543" + y="185.92691" + style="stroke-width:0.264583">3</tspan></text> + <text + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="43.794559" + y="192.0079" + id="text1914"><tspan + sodipodi:role="line" + id="tspan1912" + x="43.794559" + y="192.0079" + style="stroke-width:0.264583">4</tspan></text> + <text + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="43.682667" + y="197.45377" + id="text1918"><tspan + sodipodi:role="line" + id="tspan1916" + x="43.682667" + y="197.45377" + style="stroke-width:0.264583">5</tspan></text> + <text + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="43.191105" + y="203.95293" + id="text1922"><tspan + sodipodi:role="line" + id="tspan1920" + x="43.191105" + y="203.95293" + style="stroke-width:0.264583">6</tspan></text> + </g> + <g + id="g2877"> + <rect + y="118.79026" + x="-218.18161" + height="34.589516" + width="30.152264" + id="rect2161" + style="fill:none;stroke:#000000;stroke-width:0.505005;paint-order:fill markers stroke" + transform="rotate(-90)" /> + <path + sodipodi:nodetypes="cc" + id="path2163" + d="m 108.89891,239.17957 13.9985,-21.05454" + style="fill:none;stroke:#000000;stroke-width:0.253031;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2203);marker-end:url(#marker2263)" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.253031;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2213);marker-end:url(#marker2273)" + d="m 120.90149,243.42384 7.81676,-25.29881" + id="path2165" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path2167" + d="m 132.62883,246.59097 1.38109,-28.46594" + style="fill:none;stroke:#000000;stroke-width:0.253031;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2223);marker-end:url(#marker2283)" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.253031;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2233);marker-end:url(#marker2293)" + d="m 144.88599,245.97139 -5.5844,-27.84636" + id="path2169" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path2171" + d="m 156.64326,241.86532 -12.05,-23.74029" + style="fill:none;stroke:#000000;stroke-width:0.253031;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2243);marker-end:url(#marker2303)" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.253031;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2253);marker-end:url(#marker2313)" + d="M 167.61484,238.56779 149.88493,218.12503" + id="path2173" + sodipodi:nodetypes="cc" /> + <text + id="text2177" + y="222.51598" + x="115.88725" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="222.51598" + x="115.88725" + id="tspan2175" + sodipodi:role="line">1</tspan></text> + <text + id="text2181" + y="222.51598" + x="123.97214" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="222.51598" + x="123.97214" + id="tspan2179" + sodipodi:role="line">2</tspan></text> + <text + id="text2185" + y="222.51598" + x="130.85603" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="222.51598" + x="130.85603" + id="tspan2183" + sodipodi:role="line">3</tspan></text> + <text + id="text2189" + y="222.51598" + x="137.2666" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="222.51598" + x="137.2666" + id="tspan2187" + sodipodi:role="line">4</tspan></text> + <text + id="text2193" + y="222.51598" + x="143.67615" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="222.51598" + x="143.67615" + id="tspan2191" + sodipodi:role="line">5</tspan></text> + <text + id="text2197" + y="222.51598" + x="150.57246" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="222.51598" + x="150.57246" + id="tspan2195" + sodipodi:role="line">6</tspan></text> + </g> + <g + transform="matrix(1,0,0,-1,0,313.27072)" + id="g3061"> + <rect + transform="rotate(-90)" + style="fill:none;stroke:#000000;stroke-width:0.505005;paint-order:fill markers stroke" + id="rect3023" + width="30.152264" + height="34.589516" + x="-218.18161" + y="118.79026" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.253074;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3065);marker-end:url(#marker3125)" + d="m 108.89891,239.17709 13.9985,-21.06161" + id="path3025" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path3027" + d="m 120.90149,243.42278 7.81676,-25.3073" + style="fill:none;stroke:#000000;stroke-width:0.253074;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3075);marker-end:url(#marker3135)" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.253074;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3085);marker-end:url(#marker3145)" + d="m 132.62883,246.59097 1.38109,-28.47549" + id="path3029" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path3031" + d="m 144.88599,245.97118 -5.5844,-27.8557" + style="fill:none;stroke:#000000;stroke-width:0.253074;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3095);marker-end:url(#marker3155)" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.253074;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3105);marker-end:url(#marker3165)" + d="m 156.64326,241.86374 -12.05,-23.74826" + id="path3033" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path3035" + d="M 167.61484,238.5651 149.88493,218.11548" + style="fill:none;stroke:#000000;stroke-width:0.253074;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3115);marker-end:url(#marker3175)" /> + <text + transform="scale(1,-1)" + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="115.88725" + y="-219.43399" + id="text3039"><tspan + sodipodi:role="line" + id="tspan3037" + x="115.88725" + y="-219.43399" + style="stroke-width:0.264583">1</tspan></text> + <text + transform="scale(1,-1)" + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="123.97214" + y="-219.43399" + id="text3043"><tspan + sodipodi:role="line" + id="tspan3041" + x="123.97214" + y="-219.43399" + style="stroke-width:0.264583">2</tspan></text> + <text + transform="scale(1,-1)" + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="130.85603" + y="-219.43399" + id="text3047"><tspan + sodipodi:role="line" + id="tspan3045" + x="130.85603" + y="-219.43399" + style="stroke-width:0.264583">3</tspan></text> + <text + transform="scale(1,-1)" + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="137.2666" + y="-219.43399" + id="text3051"><tspan + sodipodi:role="line" + id="tspan3049" + x="137.2666" + y="-219.43399" + style="stroke-width:0.264583">4</tspan></text> + <text + transform="scale(1,-1)" + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="143.67615" + y="-219.43399" + id="text3055"><tspan + sodipodi:role="line" + id="tspan3053" + x="143.67615" + y="-219.43399" + style="stroke-width:0.264583">5</tspan></text> + <text + transform="scale(1,-1)" + xml:space="preserve" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="150.57246" + y="-219.43399" + id="text3059"><tspan + sodipodi:role="line" + id="tspan3057" + x="150.57246" + y="-219.43399" + style="stroke-width:0.264583">6</tspan></text> + </g> + <path + style="fill:none;stroke:#000000;stroke-width:1.23743;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker6532);marker-end:url(#marker6542)" + d="M 67.047413,201.86445 H 118.46192" + id="path6528" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#000000;stroke-width:1.23933;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker8703);marker-end:url(#marker8723)" + d="M 67.194832,109.10216 H 118.76774" + id="path8687" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#000000;stroke-width:1.3816;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker7740);marker-end:url(#marker7770)" + d="m 136.42649,125.14994 v 63.17823" + id="path7712" + sodipodi:nodetypes="cc" /> + <g + id="g9581" + transform="translate(-10.583333,-79.375004)"> + <rect + y="171.38521" + x="47.427097" + height="34.589516" + width="30.152264" + id="rect9543" + style="fill:none;stroke:#000000;stroke-width:0.505005;paint-order:fill markers stroke" /> + <path + sodipodi:nodetypes="cc" + id="path9545" + d="m 26.409478,161.49386 20.99869,13.9985" + style="fill:none;stroke:#000000;stroke-width:0.252695;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker9585);marker-end:url(#marker9645)" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.252695;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker9595);marker-end:url(#marker9655)" + d="m 22.176467,173.49644 25.231701,7.81676" + id="path9547" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path9549" + d="m 19.017743,185.22378 28.390425,1.38109" + style="fill:none;stroke:#000000;stroke-width:0.252695;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker9605);marker-end:url(#marker9665)" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.252695;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker9615);marker-end:url(#marker9675)" + d="m 19.635678,197.48094 27.77249,-5.5844" + id="path9551" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path9553" + d="m 23.730856,209.23821 23.677312,-12.05" + style="fill:none;stroke:#000000;stroke-width:0.252695;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker9625);marker-end:url(#marker9685)" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.252695;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker9635);marker-end:url(#marker9695)" + d="M 27.019643,220.20979 47.408168,202.47988" + id="path9555" + sodipodi:nodetypes="cc" /> + <text + id="text9559" + y="171.40913" + x="44.310223" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="171.40913" + x="44.310223" + id="tspan9557" + sodipodi:role="line">1</tspan></text> + <text + id="text9563" + y="179.52106" + x="44.616554" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="179.52106" + x="44.616554" + id="tspan9561" + sodipodi:role="line">2</tspan></text> + <text + id="text9567" + y="185.92691" + x="44.192543" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="185.92691" + x="44.192543" + id="tspan9565" + sodipodi:role="line">3</tspan></text> + <text + id="text9571" + y="192.53706" + x="43.265392" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="192.53706" + x="43.265392" + id="tspan9569" + sodipodi:role="line">4</tspan></text> + <text + id="text9575" + y="198.51208" + x="43.682667" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="198.51208" + x="43.682667" + id="tspan9573" + sodipodi:role="line">5</tspan></text> + <text + id="text9579" + y="203.95293" + x="43.191105" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="203.95293" + x="43.191105" + id="tspan9577" + sodipodi:role="line">6</tspan></text> + </g> + <text + id="text11879" + y="174.39622" + x="54.527527" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583" + xml:space="preserve"><tspan + style="text-align:center;text-anchor:middle;stroke-width:0.264583" + y="174.39622" + x="54.527527" + id="tspan11877" + sodipodi:role="line">Routeur</tspan><tspan + id="tspan16031" + style="text-align:center;text-anchor:middle;stroke-width:0.264583" + y="179.68788" + x="54.527527" + sodipodi:role="line">de Cognac</tspan></text> + <text + id="text11883" + y="178.51385" + x="118.62674" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583" + xml:space="preserve"><tspan + style="text-align:center;text-anchor:middle;stroke-width:0.264583" + y="178.51385" + x="118.62674" + id="tspan11881" + sodipodi:role="line">Routeur</tspan><tspan + id="tspan16027" + style="text-align:center;text-anchor:middle;stroke-width:0.264583" + y="183.80551" + x="118.62674" + sodipodi:role="line">d'Angoulême</tspan></text> + <text + id="text11887" + y="130.50931" + x="123.19796" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583" + xml:space="preserve"><tspan + style="text-align:center;text-anchor:middle;stroke-width:0.264583" + y="130.50931" + x="123.19796" + id="tspan11885" + sodipodi:role="line">Routeur</tspan><tspan + id="tspan16029" + style="text-align:center;text-anchor:middle;stroke-width:0.264583" + y="135.80096" + x="123.19796" + sodipodi:role="line">de Poitiers</tspan></text> + <text + id="text11891" + y="131.39386" + x="35.162968" + style="font-size:4.23333px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="131.39386" + x="35.162968" + id="tspan11889" + sodipodi:role="line">Routeur de Niort</tspan></text> + </g> +</svg> diff --git a/internet/TCP-IP/illustrations/contenus.png b/internet/TCP-IP/illustrations/contenus.png Binary files differ. diff --git a/internet/TCP-IP/illustrations/paquets-1.blend b/internet/TCP-IP/illustrations/paquets-1.blend Binary files differ. diff --git a/internet/TCP-IP/illustrations/paquets-1.mp4 b/internet/TCP-IP/illustrations/paquets-1.mp4 Binary files differ. diff --git a/internet/TCP-IP/illustrations/paquets-2.blend b/internet/TCP-IP/illustrations/paquets-2.blend Binary files differ. diff --git a/internet/TCP-IP/illustrations/paquets-2.mp4 b/internet/TCP-IP/illustrations/paquets-2.mp4 Binary files differ. diff --git a/internet/TCP-IP/illustrations/paquets-3.blend b/internet/TCP-IP/illustrations/paquets-3.blend Binary files differ. diff --git a/internet/TCP-IP/illustrations/paquets-3.mp4 b/internet/TCP-IP/illustrations/paquets-3.mp4 Binary files differ. diff --git a/internet/TCP-IP/illustrations/paquets-bonjour-1.svg b/internet/TCP-IP/illustrations/paquets-bonjour-1.svg @@ -0,0 +1,771 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + inkscape:export-filename="/home/lvilleve/doc/lycee/production/SNT/internet/paquets.png" + sodipodi:docname="paquets-bonjour-1.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)" + id="svg8" + version="1.1" + viewBox="0 0 338.66667 190.5" + height="720" + width="1280"> + <defs + id="defs2"> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker3341" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3339" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker3331" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3329" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2999" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path2997" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2989" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path2987" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker2689" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2687" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker2679" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2677" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2399" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path2397" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2389" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path2387" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker2141" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2139" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker2131" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2129" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1855" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1853" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1845" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1843" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1835" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1833" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1825" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1823" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1815" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1813" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1805" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1803" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1597" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1595" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1587" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1585" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1577" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1575" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1567" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1565" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1557" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1555" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1547" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1545" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1375" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1373" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1365" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1363" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1289" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1287" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1279" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1277" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="DotS" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1022" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="DotM" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="scale(0.4) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1019" /> + </marker> + </defs> + <sodipodi:namedview + inkscape:window-maximized="1" + inkscape:window-y="-1" + inkscape:window-x="-1" + inkscape:window-height="1078" + inkscape:window-width="1918" + units="px" + showgrid="false" + inkscape:document-rotation="0" + inkscape:current-layer="layer1" + inkscape:document-units="mm" + inkscape:cy="455.60142" + inkscape:cx="621.93642" + inkscape:zoom="0.63043956" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" /> + <metadata + id="metadata5"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:groupmode="layer" + inkscape:label="Calque 1"> + <rect + rx="10.808706" + ry="10.808706" + y="113.04089" + x="85.958046" + height="43.793213" + width="45.042149" + id="rect10" + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" /> + <rect + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" + id="rect12" + width="45.042149" + height="43.793213" + x="207.66644" + y="113.04089" + ry="10.808706" + rx="10.808706" /> + <rect + rx="10.808706" + ry="10.808706" + y="33.665901" + x="207.66644" + height="43.793213" + width="45.042149" + id="rect14" + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" /> + <rect + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" + id="rect16" + width="45.042149" + height="43.793213" + x="85.958061" + y="33.665901" + ry="10.808706" + rx="10.808706" /> + <text + id="text30" + y="169.30852" + x="108.52254" + style="font-size:12.7px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583" + xml:space="preserve"><tspan + id="tspan32" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + y="169.30852" + x="108.52254" + sodipodi:role="line">Routeur</tspan><tspan + id="tspan36" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + y="185.18352" + x="108.52254" + sodipodi:role="line">de Cognac</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583" + x="108.2807" + y="12.675163" + id="text42"><tspan + sodipodi:role="line" + x="108.2807" + y="12.675163" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + id="tspan38">Routeur</tspan><tspan + sodipodi:role="line" + x="108.2807" + y="28.550163" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + id="tspan40">de Niort</tspan></text> + <text + id="text48" + y="12.675163" + x="230.14722" + style="font-size:12.7px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583" + xml:space="preserve"><tspan + id="tspan44" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + y="12.675163" + x="230.14722" + sodipodi:role="line">Routeur</tspan><tspan + id="tspan46" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + y="28.550163" + x="230.14722" + sodipodi:role="line">de Poitiers</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583" + x="230.17511" + y="169.30852" + id="text54"><tspan + sodipodi:role="line" + x="230.17511" + y="169.30852" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + id="tspan50">Routeur</tspan><tspan + sodipodi:role="line" + x="230.17511" + y="185.18352" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + id="tspan52">d'Angoulême</tspan></text> + <text + id="text76" + y="124.34998" + x="4.3049607" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="124.34998" + x="4.3049607" + id="tspan74" + sodipodi:role="line">1.1.1.1</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="4.3049607" + y="145.51666" + id="text80"><tspan + sodipodi:role="line" + id="tspan78" + x="4.3049607" + y="145.51666" + style="stroke-width:0.264583">1.1.1.2</tspan></text> + <text + id="text84" + y="166.68335" + x="4.3049607" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="166.68335" + x="4.3049607" + id="tspan82" + sodipodi:role="line">1.1.1.3</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="279.47168" + y="119.05831" + id="text88"><tspan + sodipodi:role="line" + id="tspan86" + x="279.47168" + y="119.05831" + style="stroke-width:0.264583">2.2.2.1</tspan></text> + <text + id="text100" + y="140.22499" + x="279.47168" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="140.22499" + x="279.47168" + id="tspan98" + sodipodi:role="line">2.2.2.2</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="279.47168" + y="161.39168" + id="text104"><tspan + sodipodi:role="line" + id="tspan102" + x="279.47168" + y="161.39168" + style="stroke-width:0.264583">2.2.2.3</tspan></text> + <text + id="text108" + y="39.683331" + x="279.47168" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="39.683331" + x="279.47168" + id="tspan106" + sodipodi:role="line">3.3.3.1</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="279.47168" + y="60.850002" + id="text120"><tspan + sodipodi:role="line" + id="tspan118" + x="279.47168" + y="60.850002" + style="stroke-width:0.264583">3.3.3.1</tspan></text> + <text + id="text124" + y="82.016663" + x="279.47168" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="82.016663" + x="279.47168" + id="tspan122" + sodipodi:role="line">3.3.3.1</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="4.3049636" + y="23.808331" + id="text128"><tspan + sodipodi:role="line" + id="tspan126" + x="4.3049636" + y="23.808331" + style="stroke-width:0.264583">4.4.4.1</tspan></text> + <path + sodipodi:nodetypes="cc" + id="path953" + d="m 61.682973,120.0909 28.124925,5.2841" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#DotS);marker-end:url(#DotS)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1279);marker-end:url(#marker1289)" + d="m 61.682973,141.25757 28.124925,-5.29923" + id="path1275" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1361" + d="M 61.682973,162.42424 89.807898,146.54168" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1365);marker-end:url(#marker1375)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1567);marker-end:url(#marker1597)" + d="m 275.99939,114.7992 -28.12494,10.57577" + id="path1539" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1541" + d="m 275.99939,135.96587 -28.12494,-0.008" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1557);marker-end:url(#marker1587)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1547);marker-end:url(#marker1577)" + d="M 275.99939,157.13254 247.87445,146.54165" + id="path1543" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1797" + d="M 275.99939,35.424189 247.87445,45.999953" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1825);marker-end:url(#marker1855)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1815);marker-end:url(#marker1845)" + d="m 275.99939,56.590847 -28.12494,-0.008" + id="path1799" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1801" + d="M 275.99939,77.757505 247.87445,67.166621" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1805);marker-end:url(#marker1835)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2131);marker-end:url(#marker2141)" + d="M 59.823696,19.34211 90.865827,54.593572" + id="path2127" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path2385" + d="M 211.83154,55.562508 H 126.75513" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2389);marker-end:url(#marker2399)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2679);marker-end:url(#marker2689)" + d="M 211.83154,134.9375 H 126.75513" + id="path2675" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path2985" + d="M 124.35414,124.51902 214.31247,65.90098" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2989);marker-end:url(#marker2999)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3331);marker-end:url(#marker3341)" + d="M 230.18755,119.22735 V 71.192647" + id="path3327" + sodipodi:nodetypes="cc" /> + <rect + style="fill:#ef2929;stroke:#cc0000;stroke-width:1.73478;paint-order:fill markers stroke" + id="rect3677" + width="64.622574" + height="13.234789" + x="7.0842819" + y="96.204384" /> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:1.32292px;word-spacing:0px;stroke-width:0.264583" + x="8.5003281" + y="107.38901" + id="text3675"><tspan + sodipodi:role="line" + id="tspan3673" + x="8.5003281" + y="107.38901" + style="font-weight:bold;stroke-width:0.264583">BONJOUR</tspan></text> + </g> +</svg> diff --git a/internet/TCP-IP/illustrations/paquets-bonjour-2.svg b/internet/TCP-IP/illustrations/paquets-bonjour-2.svg @@ -0,0 +1,813 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + inkscape:export-filename="/home/lvilleve/doc/lycee/production/SNT/internet/paquets.png" + sodipodi:docname="paquets-bonjour-2.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)" + id="svg8" + version="1.1" + viewBox="0 0 338.66667 190.5" + height="720" + width="1280"> + <defs + id="defs2"> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker3341" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3339" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker3331" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3329" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2999" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path2997" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2989" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path2987" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker2689" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2687" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker2679" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2677" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2399" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path2397" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2389" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path2387" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker2141" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2139" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker2131" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2129" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1855" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1853" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1845" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1843" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1835" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1833" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1825" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1823" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1815" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1813" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1805" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1803" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1597" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1595" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1587" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1585" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1577" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1575" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1567" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1565" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1557" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1555" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1547" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1545" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1375" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1373" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1365" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1363" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1289" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1287" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1279" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1277" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="DotS" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1022" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="DotM" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="scale(0.4) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1019" /> + </marker> + </defs> + <sodipodi:namedview + inkscape:window-maximized="1" + inkscape:window-y="-1" + inkscape:window-x="-1" + inkscape:window-height="1078" + inkscape:window-width="1918" + units="px" + showgrid="false" + inkscape:document-rotation="0" + inkscape:current-layer="layer1" + inkscape:document-units="mm" + inkscape:cy="374.25477" + inkscape:cx="238.58114" + inkscape:zoom="0.78903954" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" /> + <metadata + id="metadata5"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:groupmode="layer" + inkscape:label="Calque 1"> + <rect + rx="10.808706" + ry="10.808706" + y="113.04089" + x="85.958046" + height="43.793213" + width="45.042149" + id="rect10" + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" /> + <rect + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" + id="rect12" + width="45.042149" + height="43.793213" + x="207.66644" + y="113.04089" + ry="10.808706" + rx="10.808706" /> + <rect + rx="10.808706" + ry="10.808706" + y="33.665901" + x="207.66644" + height="43.793213" + width="45.042149" + id="rect14" + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" /> + <rect + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" + id="rect16" + width="45.042149" + height="43.793213" + x="85.958061" + y="33.665901" + ry="10.808706" + rx="10.808706" /> + <text + id="text30" + y="169.30852" + x="108.52254" + style="font-size:12.7px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583" + xml:space="preserve"><tspan + id="tspan32" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + y="169.30852" + x="108.52254" + sodipodi:role="line">Routeur</tspan><tspan + id="tspan36" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + y="185.18352" + x="108.52254" + sodipodi:role="line">de Cognac</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583" + x="108.2807" + y="12.675163" + id="text42"><tspan + sodipodi:role="line" + x="108.2807" + y="12.675163" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + id="tspan38">Routeur</tspan><tspan + sodipodi:role="line" + x="108.2807" + y="28.550163" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + id="tspan40">de Niort</tspan></text> + <text + id="text48" + y="12.675163" + x="230.14722" + style="font-size:12.7px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583" + xml:space="preserve"><tspan + id="tspan44" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + y="12.675163" + x="230.14722" + sodipodi:role="line">Routeur</tspan><tspan + id="tspan46" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + y="28.550163" + x="230.14722" + sodipodi:role="line">de Poitiers</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583" + x="230.17511" + y="169.30852" + id="text54"><tspan + sodipodi:role="line" + x="230.17511" + y="169.30852" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + id="tspan50">Routeur</tspan><tspan + sodipodi:role="line" + x="230.17511" + y="185.18352" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + id="tspan52">d'Angoulême</tspan></text> + <text + id="text76" + y="124.34998" + x="4.3049607" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="124.34998" + x="4.3049607" + id="tspan74" + sodipodi:role="line">1.1.1.1</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="4.3049607" + y="145.51666" + id="text80"><tspan + sodipodi:role="line" + id="tspan78" + x="4.3049607" + y="145.51666" + style="stroke-width:0.264583">1.1.1.2</tspan></text> + <text + id="text84" + y="166.68335" + x="4.3049607" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="166.68335" + x="4.3049607" + id="tspan82" + sodipodi:role="line">1.1.1.3</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="279.47168" + y="119.05831" + id="text88"><tspan + sodipodi:role="line" + id="tspan86" + x="279.47168" + y="119.05831" + style="stroke-width:0.264583">2.2.2.1</tspan></text> + <text + id="text100" + y="140.22499" + x="279.47168" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="140.22499" + x="279.47168" + id="tspan98" + sodipodi:role="line">2.2.2.2</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="279.47168" + y="161.39168" + id="text104"><tspan + sodipodi:role="line" + id="tspan102" + x="279.47168" + y="161.39168" + style="stroke-width:0.264583">2.2.2.3</tspan></text> + <text + id="text108" + y="39.683331" + x="279.47168" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="39.683331" + x="279.47168" + id="tspan106" + sodipodi:role="line">3.3.3.1</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="279.47168" + y="60.850002" + id="text120"><tspan + sodipodi:role="line" + id="tspan118" + x="279.47168" + y="60.850002" + style="stroke-width:0.264583">3.3.3.1</tspan></text> + <text + id="text124" + y="82.016663" + x="279.47168" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="82.016663" + x="279.47168" + id="tspan122" + sodipodi:role="line">3.3.3.1</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="4.3049636" + y="23.808331" + id="text128"><tspan + sodipodi:role="line" + id="tspan126" + x="4.3049636" + y="23.808331" + style="stroke-width:0.264583">4.4.4.1</tspan></text> + <path + sodipodi:nodetypes="cc" + id="path953" + d="m 61.682973,120.0909 28.124925,5.2841" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#DotS);marker-end:url(#DotS)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1279);marker-end:url(#marker1289)" + d="m 61.682973,141.25757 28.124925,-5.29923" + id="path1275" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1361" + d="M 61.682973,162.42424 89.807898,146.54168" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1365);marker-end:url(#marker1375)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1567);marker-end:url(#marker1597)" + d="m 275.99939,114.7992 -28.12494,10.57577" + id="path1539" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1541" + d="m 275.99939,135.96587 -28.12494,-0.008" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1557);marker-end:url(#marker1587)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1547);marker-end:url(#marker1577)" + d="M 275.99939,157.13254 247.87445,146.54165" + id="path1543" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1797" + d="M 275.99939,35.424189 247.87445,45.999953" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1825);marker-end:url(#marker1855)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1815);marker-end:url(#marker1845)" + d="m 275.99939,56.590847 -28.12494,-0.008" + id="path1799" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1801" + d="M 275.99939,77.757505 247.87445,67.166621" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1805);marker-end:url(#marker1835)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2131);marker-end:url(#marker2141)" + d="M 59.823696,19.34211 90.865827,54.593572" + id="path2127" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path2385" + d="M 211.83154,55.562508 H 126.75513" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2389);marker-end:url(#marker2399)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2679);marker-end:url(#marker2689)" + d="M 211.83154,134.9375 H 126.75513" + id="path2675" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path2985" + d="M 124.35414,124.51902 214.31247,65.90098" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2989);marker-end:url(#marker2999)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3331);marker-end:url(#marker3341)" + d="M 230.18755,119.22735 V 71.192647" + id="path3327" + sodipodi:nodetypes="cc" /> + <rect + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" + id="rect3677-1" + width="7.4895067" + height="14.276128" + x="8.3585291" + y="95.66394" /> + <rect + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" + id="rect4325" + width="7.4895067" + height="14.276128" + x="62.333508" + y="95.66394" /> + <rect + y="95.66394" + x="17.354374" + height="14.276128" + width="7.4895067" + id="rect4315" + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" /> + <rect + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" + id="rect4317" + width="7.4895067" + height="14.276128" + x="26.350214" + y="95.66394" /> + <rect + y="95.66394" + x="35.346024" + height="14.276128" + width="7.4895067" + id="rect4319" + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" /> + <rect + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" + id="rect4321" + width="7.4895067" + height="14.276128" + x="44.341862" + y="95.66394" /> + <rect + y="95.66394" + x="53.337696" + height="14.276128" + width="7.4895067" + id="rect4323" + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" /> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:1.32292px;word-spacing:0px;fill:#000000;stroke-width:0.264583;" + x="8.2714653" + y="107.41964" + id="text3675"><tspan + sodipodi:role="line" + id="tspan3673" + x="8.2714653" + y="107.41964" + style="font-weight:bold;fill:#000000;stroke-width:0.264583;">BONJOUR</tspan></text> + </g> +</svg> diff --git a/internet/TCP-IP/illustrations/paquets-problemes-1.svg b/internet/TCP-IP/illustrations/paquets-problemes-1.svg @@ -0,0 +1,1800 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="2593.584" + height="1063.7404" + viewBox="0 0 686.2191 281.44797" + version="1.1" + id="svg8" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)" + sodipodi:docname="paquets-problemes-1.svg" + inkscape:export-filename="/home/lvilleve/doc/lycee/production/SNT/internet/paquets.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <defs + id="defs2"> + <marker + inkscape:stockid="Arrow1Send" + orient="auto" + refY="0" + refX="0" + id="marker6014" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path6012" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + style="fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:#ef2929;stroke-width:1pt;stroke-opacity:1" + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker5382" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Send"> + <path + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" + style="fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:#ef2929;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + id="path5380" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker4164" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path4162" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker4154" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4152" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker4144" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path4142" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker4134" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4132" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker4124" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path4122" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker4114" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4112" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker4104" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path4102" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker4094" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4092" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker4084" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path4082" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker4074" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4072" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker4064" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path4062" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker4054" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4052" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="Arrow1Send" + orient="auto" + refY="0" + refX="0" + id="marker4044" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4042" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + style="fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:#ef2929;stroke-width:1pt;stroke-opacity:1" + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker4034" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path4032" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker4024" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4022" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker4014" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path4012" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker4004" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path4002" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3994" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3992" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker3984" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3982" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3974" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3972" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker3964" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3962" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3954" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3952" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker3944" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3942" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3934" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3932" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker3924" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3922" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:stockid="Arrow1Send" + orient="auto" + refY="0" + refX="0" + id="marker3222" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3220" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + style="fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:#ef2929;stroke-width:1pt;stroke-opacity:1" + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Send" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Send"> + <path + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" + style="fill:#ef2929;fill-opacity:1;fill-rule:evenodd;stroke:#ef2929;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 Z" + id="path2669" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1876" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1874" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker1866" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1864" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1856" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1854" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker1846" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1844" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1836" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1834" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker1826" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1824" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1816" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1814" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker1806" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1804" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1796" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1794" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker1786" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1784" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1776" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1774" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker1766" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1764" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1756" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1754" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker1746" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1744" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1736" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1734" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker1726" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1724" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1716" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1714" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker1706" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1704" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1696" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1694" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker1686" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1684" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1676" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1674" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker1666" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1664" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1656" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1654" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker1646" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1644" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker3341" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3339" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker3331" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path3329" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker2999" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2997" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker2989" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2987" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2689" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path2687" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2679" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path2677" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker1855" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1853" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1845" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1843" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker1835" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1833" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker1825" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1823" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1815" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1813" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker1805" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1803" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1597" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1595" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker1587" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1585" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1577" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1575" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1567" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1565" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker1557" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1555" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1547" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1545" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker1375" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1373" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="marker1365" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1363" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1289" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1287" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1279" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path1277" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0" + refX="0" + id="DotS" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1022" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.2,0,0,0.2,1.48,0.2)" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0" + refX="0" + id="DotM" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1019" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(0.4,0,0,0.4,2.96,0.4)" /> + </marker> + </defs> + <sodipodi:namedview + fit-margin-bottom="0" + fit-margin-right="0" + fit-margin-left="0" + fit-margin-top="0" + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="0.24689601" + inkscape:cx="1264.577" + inkscape:cy="676.23802" + inkscape:document-units="mm" + inkscape:current-layer="layer1" + inkscape:document-rotation="0" + showgrid="false" + units="px" + inkscape:window-width="1918" + inkscape:window-height="1078" + inkscape:window-x="-1" + inkscape:window-y="-1" + inkscape:window-maximized="1" /> + <metadata + id="metadata5"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + transform="translate(-5.5368598,-31.428331)" + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <rect + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" + id="rect10" + width="45.042149" + height="43.793213" + x="85.958046" + y="113.04089" + ry="10.808706" + rx="10.808706" /> + <rect + rx="10.808706" + ry="10.808706" + y="113.04089" + x="207.66644" + height="43.793213" + width="45.042149" + id="rect12" + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" /> + <rect + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" + id="rect14" + width="45.042149" + height="43.793213" + x="207.66644" + y="33.665901" + ry="10.808706" + rx="10.808706" /> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="4.3049607" + y="124.34998" + id="text76"><tspan + sodipodi:role="line" + id="tspan74" + x="4.3049607" + y="124.34998" + style="stroke-width:0.264583">1.1.1.1</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="279.47168" + y="39.683331" + id="text108"><tspan + sodipodi:role="line" + id="tspan106" + x="279.47168" + y="39.683331" + style="stroke-width:0.264583">3.3.3.1</tspan></text> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#DotS);marker-end:url(#DotS)" + d="m 61.682973,120.0909 28.124925,5.2841" + id="path953" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1275" + d="m 61.682973,141.25757 28.124925,-5.29923" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1279);marker-end:url(#marker1289)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1365);marker-end:url(#marker1375)" + d="M 61.682973,162.42424 89.807898,146.54168" + id="path1361" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1539" + d="m 275.99939,114.7992 -28.12494,10.57577" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1567);marker-end:url(#marker1597)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1557);marker-end:url(#marker1587)" + d="m 275.99939,135.96587 -28.12494,-0.008" + id="path1541" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1543" + d="M 275.99939,157.13254 247.87445,146.54165" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1547);marker-end:url(#marker1577)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1825);marker-end:url(#marker1855)" + d="M 275.99939,35.424189 247.87445,45.999953" + id="path1797" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1799" + d="m 275.99939,56.590847 -28.12494,-0.008" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1815);marker-end:url(#marker1845)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1805);marker-end:url(#marker1835)" + d="M 275.99939,77.757505 247.87445,67.166621" + id="path1801" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path2675" + d="M 211.83154,134.9375 H 126.75513" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2679);marker-end:url(#marker2689)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2989);marker-end:url(#marker2999)" + d="M 124.35414,124.51902 214.31247,65.90098" + id="path2985" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path3327" + d="M 230.18755,119.22735 V 71.192647" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3331);marker-end:url(#marker3341)" /> + <g + transform="translate(95.262289,20.486853)" + id="g1424"> + <rect + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" + id="rect3677-1" + width="7.4895067" + height="14.276128" + x="8.3585291" + y="95.66394" /> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:1.32292px;word-spacing:0px;fill:#000000;stroke-width:0.264583" + x="8.2714653" + y="107.41964" + id="text3675"><tspan + sodipodi:role="line" + id="tspan3673" + x="8.2714653" + y="107.41964" + style="font-weight:bold;fill:#000000;stroke-width:0.264583">B</tspan></text> + </g> + <ellipse + ry="11.454419" + rx="10.877275" + cy="94.241882" + cx="168.73067" + id="path1438" + style="fill:#ffffff;stroke:#ffffff;stroke-width:0.799999;stroke-linecap:round;stroke-linejoin:round;paint-order:fill markers stroke" /> + <path + id="path1440" + d="m 167.96918,92.917371 -1.91408,-9.865317 -5.15904,4.272827 z" + style="fill:#000000;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:#000000;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 169.00597,97.623154 v 7.023466 l 3.36541,0.0717 z" + id="path1444" /> + <path + id="path1442" + d="m 172.65527,95.755865 5.63097,4.852705 2.38273,-2.144245 z" + style="fill:#000000;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <rect + rx="10.808706" + ry="10.808706" + y="261.20767" + x="85.958046" + height="43.793213" + width="45.042149" + id="rect1590" + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" /> + <rect + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" + id="rect1592" + width="45.042149" + height="43.793213" + x="207.66644" + y="261.20767" + ry="10.808706" + rx="10.808706" /> + <rect + rx="10.808706" + ry="10.808706" + y="181.83261" + x="207.66644" + height="43.793213" + width="45.042149" + id="rect1594" + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" /> + <text + id="text1598" + y="272.51672" + x="4.3049598" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="272.51672" + x="4.3049598" + id="tspan1596" + sodipodi:role="line">1.1.1.1</tspan></text> + <text + id="text1602" + y="187.85004" + x="279.47168" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="187.85004" + x="279.47168" + id="tspan1600" + sodipodi:role="line">3.3.3.1</tspan></text> + <path + sodipodi:nodetypes="cc" + id="path1604" + d="m 61.682973,268.25766 28.124923,5.2841" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1756);marker-end:url(#marker1876)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1746);marker-end:url(#marker1866)" + d="M 61.682973,289.42433 89.807896,284.1251" + id="path1606" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1608" + d="M 61.682973,310.591 89.807896,294.70844" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1736);marker-end:url(#marker1856)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1726);marker-end:url(#marker1846)" + d="m 275.99939,262.96596 -28.12494,10.57577" + id="path1610" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1612" + d="m 275.99939,284.13263 -28.12494,-0.008" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1716);marker-end:url(#marker1836)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1706);marker-end:url(#marker1826)" + d="M 275.99939,305.2993 247.87445,294.70841" + id="path1614" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1616" + d="m 275.99939,183.59091 -28.12494,10.57577" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1696);marker-end:url(#marker1816)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1686);marker-end:url(#marker1806)" + d="m 275.99939,204.75758 -28.12494,-0.008" + id="path1618" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1620" + d="M 275.99939,225.92425 247.87445,215.33336" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1676);marker-end:url(#marker1796)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1666);marker-end:url(#marker1786)" + d="M 211.83154,283.10426 H 126.75513" + id="path1622" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1624" + d="m 124.35414,272.68578 89.95833,-58.61806" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1656);marker-end:url(#marker1776)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1646);marker-end:url(#marker1766)" + d="M 230.18755,267.39411 V 219.35939" + id="path1626" + sodipodi:nodetypes="cc" /> + <g + id="g1634" + transform="translate(95.262293,168.65356)"> + <rect + y="95.66394" + x="8.3585291" + height="14.276128" + width="7.4895067" + id="rect1628" + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" /> + <text + id="text1632" + y="107.41964" + x="8.2714653" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:1.32292px;word-spacing:0px;fill:#000000;stroke-width:0.264583" + xml:space="preserve"><tspan + style="font-weight:bold;fill:#000000;stroke-width:0.264583" + y="107.41964" + x="8.2714653" + id="tspan1630" + sodipodi:role="line">B</tspan></text> + </g> + <path + id="path2652" + d="m 111.11032,116.15079 24.39275,-15.39442" + style="fill:none;stroke:#ef2929;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Send)" /> + <rect + style="fill:#8ae234;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" + id="rect3656" + width="12.590157" + height="12.590157" + x="142.70161" + y="262.18906" /> + <rect + style="fill:#8ae234;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" + id="rect3658" + width="12.590157" + height="12.590157" + x="148.66335" + y="235.82886" /> + <rect + y="249.4429" + x="166.99823" + height="12.590157" + width="12.590157" + id="rect3704" + style="fill:#8ae234;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" /> + <rect + y="273.78888" + x="154.09592" + height="12.590157" + width="12.590157" + id="rect3706" + style="fill:#8ae234;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" /> + <rect + y="287.14334" + x="180.47673" + height="12.590157" + width="12.590157" + id="rect3708" + style="fill:#8ae234;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" /> + <rect + style="fill:#8ae234;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" + id="rect3660" + width="12.590157" + height="12.590157" + x="118.41005" + y="292.41074" /> + <rect + style="fill:#8ae234;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" + id="rect3662" + width="12.590157" + height="12.590157" + x="180.41867" + y="220.48853" /> + <rect + style="fill:#8ae234;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" + id="rect3664" + width="12.590157" + height="12.590157" + x="197.32619" + y="231.02411" /> + <rect + style="fill:#8ae234;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" + id="rect3666" + width="12.590157" + height="12.590157" + x="204.56697" + y="201.27203" /> + <rect + style="fill:#8ae234;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" + id="rect3668" + width="12.590157" + height="12.590157" + x="225.80336" + y="200.93074" /> + <rect + style="fill:#75507b;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" + id="rect3670" + width="12.590157" + height="12.590157" + x="225.80336" + y="200.93074" /> + <rect + style="fill:#75507b;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" + id="rect3672" + width="12.590157" + height="12.590157" + x="213.39491" + y="222.28088" /> + <rect + style="fill:#75507b;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" + id="rect3674" + width="12.590157" + height="12.590157" + x="188.90239" + y="205.823" /> + <rect + style="fill:#75507b;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" + id="rect3676" + width="12.590157" + height="12.590157" + x="165.36714" + y="230.69827" /> + <rect + style="fill:#75507b;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" + id="rect3678" + width="12.590157" + height="12.590157" + x="183.42484" + y="249.35233" /> + <rect + style="fill:#75507b;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" + id="rect3680" + width="12.590157" + height="12.590157" + x="130.46011" + y="249.78015" /> + <rect + y="262.18906" + x="155.29178" + height="12.590157" + width="12.590157" + id="rect3696" + style="fill:#75507b;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" /> + <rect + y="287.13818" + x="165.5771" + height="12.590157" + width="12.590157" + id="rect3698" + style="fill:#75507b;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" /> + <rect + y="283.02356" + x="132.62419" + height="12.590157" + width="12.590157" + id="rect3700" + style="fill:#75507b;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" /> + <rect + y="273.63168" + x="190.60161" + height="12.590157" + width="12.590157" + id="rect3702" + style="fill:#75507b;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" /> + <rect + style="fill:#75507b;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" + id="rect3682" + width="12.590157" + height="12.590157" + x="190.60161" + y="273.63168" /> + <rect + style="fill:#fcaf3e;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" + id="rect3684" + width="12.590157" + height="12.590157" + x="147.20467" + y="248.27165" /> + <rect + style="fill:#fcaf3e;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" + id="rect3686" + width="12.590157" + height="12.590157" + x="180.23273" + y="236.79643" /> + <rect + style="fill:#fcaf3e;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" + id="rect3688" + width="12.590157" + height="12.590157" + x="196.71968" + y="217.47043" /> + <rect + style="fill:#fcaf3e;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" + id="rect3690" + width="12.590157" + height="12.590157" + x="126.75513" + y="270.5141" /> + <rect + style="fill:#fcaf3e;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" + id="rect3692" + width="12.590157" + height="12.590157" + x="147.45387" + y="283.97882" /> + <rect + style="fill:#fcaf3e;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" + id="rect3694" + width="12.590157" + height="12.590157" + x="175.74936" + y="271.50531" /> + <rect + y="292.41074" + x="195.07628" + height="12.590157" + width="12.590157" + id="rect3654" + style="fill:#fcaf3e;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;paint-order:fill markers stroke" /> + <path + style="fill:none;stroke:#ef2929;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3222)" + d="m 111.11033,264.3175 24.39275,-15.39442" + id="path3218" /> + <rect + rx="10.808706" + ry="10.808706" + y="165.95758" + x="445.79111" + height="43.793213" + width="45.042149" + id="rect3866" + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" /> + <rect + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" + id="rect3868" + width="45.042149" + height="43.793213" + x="567.49957" + y="165.95758" + ry="10.808706" + rx="10.808706" /> + <rect + rx="10.808706" + ry="10.808706" + y="86.58255" + x="567.49957" + height="43.793213" + width="45.042149" + id="rect3870" + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" /> + <text + id="text3874" + y="177.26668" + x="364.13818" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="177.26668" + x="364.13818" + id="tspan3872" + sodipodi:role="line">1.1.1.1</tspan></text> + <text + id="text3878" + y="92.599968" + x="639.30505" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="92.599968" + x="639.30505" + id="tspan3876" + sodipodi:role="line">3.3.3.1</tspan></text> + <path + sodipodi:nodetypes="cc" + id="path3880" + d="m 421.51651,173.0076 28.12494,5.2841" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4034);marker-end:url(#marker4164)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4024);marker-end:url(#marker4154)" + d="m 421.51651,194.17427 28.12494,-5.29923" + id="path3882" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path3884" + d="m 421.51651,215.34094 28.12494,-15.88256" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4014);marker-end:url(#marker4144)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker4004);marker-end:url(#marker4134)" + d="m 635.83295,167.7159 -28.12494,10.57577" + id="path3886" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path3888" + d="m 635.83295,188.88257 -28.12494,-0.008" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3994);marker-end:url(#marker4124)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3984);marker-end:url(#marker4114)" + d="M 635.83295,210.04924 607.70801,199.45835" + id="path3890" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path3892" + d="M 635.83295,88.340859 607.70801,98.916623" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3974);marker-end:url(#marker4104)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3964);marker-end:url(#marker4094)" + d="m 635.83295,109.50752 -28.12494,-0.008" + id="path3894" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path3896" + d="M 635.83295,130.67419 607.70801,120.0833" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3954);marker-end:url(#marker4084)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3944);marker-end:url(#marker4074)" + d="M 571.6651,187.8542 H 486.58869" + id="path3898" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path3900" + d="m 484.1877,177.43572 89.95833,-58.61806" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3934);marker-end:url(#marker4064)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3924);marker-end:url(#marker4054)" + d="M 590.02111,172.14405 V 124.10933" + id="path3902" + sodipodi:nodetypes="cc" /> + <g + id="g3910" + transform="translate(455.09585,73.403518)"> + <rect + y="95.66394" + x="8.3585291" + height="14.276128" + width="7.4895067" + id="rect3904" + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" /> + <text + id="text3908" + y="107.41964" + x="8.2714653" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:1.32292px;word-spacing:0px;fill:#000000;stroke-width:0.264583" + xml:space="preserve"><tspan + style="font-weight:bold;fill:#000000;stroke-width:0.264583" + y="107.41964" + x="8.2714653" + id="tspan3906" + sodipodi:role="line">B</tspan></text> + </g> + <path + sodipodi:nodetypes="cc" + style="fill:none;stroke:#ef2929;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker4044)" + d="M 470.94388,169.06749 567.13647,102.2903" + id="path3920" /> + <path + id="path5378" + d="M 583.50061,194.72412 474.66736,195.2536" + style="fill:none;stroke:#ef2929;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker5382)" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + style="fill:none;stroke:#ef2929;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker6014)" + d="m 583.04418,96.88952 0.52948,89.34117" + id="path6010" /> + </g> +</svg> diff --git a/internet/TCP-IP/illustrations/paquets-problemes-2.svg b/internet/TCP-IP/illustrations/paquets-problemes-2.svg @@ -0,0 +1,891 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="1280" + height="720" + viewBox="0 0 338.66667 190.5" + version="1.1" + id="svg8" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)" + sodipodi:docname="paquets-problemes-2.svg" + inkscape:export-filename="/home/lvilleve/doc/lycee/production/SNT/internet/paquets.png" + inkscape:export-xdpi="96" + inkscape:export-ydpi="96"> + <defs + id="defs2"> + <marker + inkscape:isstock="true" + style="overflow:visible;" + id="Arrow1Send" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="Arrow1Send"> + <path + transform="scale(0.2) rotate(180) translate(6,0)" + style="fill-rule:evenodd;stroke:#ef2929;stroke-width:1pt;stroke-opacity:1;fill:#ef2929;fill-opacity:1" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + id="path2669" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3341" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path3339" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker3331" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path3329" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker2999" + style="overflow:visible" + inkscape:isstock="true" + inkscape:collect="always"> + <path + id="path2997" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker2989" + style="overflow:visible" + inkscape:isstock="true" + inkscape:collect="always"> + <path + id="path2987" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker2689" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS" + inkscape:collect="always"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path2687" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker2679" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS" + inkscape:collect="always"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path2677" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker2399" + style="overflow:visible" + inkscape:isstock="true" + inkscape:collect="always"> + <path + id="path2397" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker2389" + style="overflow:visible" + inkscape:isstock="true" + inkscape:collect="always"> + <path + id="path2387" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker2141" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS" + inkscape:collect="always"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path2139" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker2131" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS" + inkscape:collect="always"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path2129" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1855" + style="overflow:visible" + inkscape:isstock="true" + inkscape:collect="always"> + <path + id="path1853" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1845" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1843" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1835" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1833" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1825" + style="overflow:visible" + inkscape:isstock="true" + inkscape:collect="always"> + <path + id="path1823" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1815" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1813" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1805" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1803" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1597" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS" + inkscape:collect="always"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1595" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1587" + style="overflow:visible" + inkscape:isstock="true" + inkscape:collect="always"> + <path + id="path1585" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1577" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS" + inkscape:collect="always"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1575" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1567" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS" + inkscape:collect="always"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1565" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1557" + style="overflow:visible" + inkscape:isstock="true" + inkscape:collect="always"> + <path + id="path1555" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1547" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS" + inkscape:collect="always"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1545" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1375" + style="overflow:visible" + inkscape:isstock="true" + inkscape:collect="always"> + <path + id="path1373" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1365" + style="overflow:visible" + inkscape:isstock="true" + inkscape:collect="always"> + <path + id="path1363" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1289" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS" + inkscape:collect="always"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1287" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1279" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS" + inkscape:collect="always"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1277" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="DotS" + style="overflow:visible" + inkscape:isstock="true" + inkscape:collect="always"> + <path + id="path1022" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="DotM" + orient="auto" + refY="0.0" + refX="0.0" + id="DotM" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1019" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.4) translate(7.4, 1)" /> + </marker> + </defs> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="0.48018082" + inkscape:cx="271.01357" + inkscape:cy="379.11488" + inkscape:document-units="mm" + inkscape:current-layer="layer1" + inkscape:document-rotation="0" + showgrid="false" + units="px" + inkscape:window-width="1920" + inkscape:window-height="1080" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" /> + <metadata + id="metadata5"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Calque 1" + inkscape:groupmode="layer" + id="layer1"> + <rect + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" + id="rect10" + width="45.042149" + height="43.793213" + x="85.958046" + y="113.04089" + ry="10.808706" + rx="10.808706" /> + <rect + rx="10.808706" + ry="10.808706" + y="113.04089" + x="207.66644" + height="43.793213" + width="45.042149" + id="rect12" + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" /> + <rect + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" + id="rect14" + width="45.042149" + height="43.793213" + x="207.66644" + y="33.665901" + ry="10.808706" + rx="10.808706" /> + <rect + rx="10.808706" + ry="10.808706" + y="33.665901" + x="85.958061" + height="43.793213" + width="45.042149" + id="rect16" + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" /> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583" + x="108.52254" + y="169.30852" + id="text30"><tspan + sodipodi:role="line" + x="108.52254" + y="169.30852" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + id="tspan32">Routeur</tspan><tspan + sodipodi:role="line" + x="108.52254" + y="185.18352" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + id="tspan36">de Cognac</tspan></text> + <text + id="text42" + y="12.675163" + x="108.2807" + style="font-size:12.7px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583" + xml:space="preserve"><tspan + id="tspan38" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + y="12.675163" + x="108.2807" + sodipodi:role="line">Routeur</tspan><tspan + id="tspan40" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + y="28.550163" + x="108.2807" + sodipodi:role="line">de Niort</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583" + x="230.14722" + y="12.675163" + id="text48"><tspan + sodipodi:role="line" + x="230.14722" + y="12.675163" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + id="tspan44">Routeur</tspan><tspan + sodipodi:role="line" + x="230.14722" + y="28.550163" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + id="tspan46">de Poitiers</tspan></text> + <text + id="text54" + y="169.30852" + x="230.17511" + style="font-size:12.7px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583" + xml:space="preserve"><tspan + id="tspan50" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + y="169.30852" + x="230.17511" + sodipodi:role="line">Routeur</tspan><tspan + id="tspan52" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + y="185.18352" + x="230.17511" + sodipodi:role="line">d'Angoulême</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="4.3049607" + y="124.34998" + id="text76"><tspan + sodipodi:role="line" + id="tspan74" + x="4.3049607" + y="124.34998" + style="stroke-width:0.264583">1.1.1.1</tspan></text> + <text + id="text80" + y="145.51666" + x="4.3049607" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="145.51666" + x="4.3049607" + id="tspan78" + sodipodi:role="line">1.1.1.2</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="4.3049607" + y="166.68335" + id="text84"><tspan + sodipodi:role="line" + id="tspan82" + x="4.3049607" + y="166.68335" + style="stroke-width:0.264583">1.1.1.3</tspan></text> + <text + id="text88" + y="119.05831" + x="279.47168" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="119.05831" + x="279.47168" + id="tspan86" + sodipodi:role="line">2.2.2.1</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="279.47168" + y="140.22499" + id="text100"><tspan + sodipodi:role="line" + id="tspan98" + x="279.47168" + y="140.22499" + style="stroke-width:0.264583">2.2.2.2</tspan></text> + <text + id="text104" + y="161.39168" + x="279.47168" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="161.39168" + x="279.47168" + id="tspan102" + sodipodi:role="line">2.2.2.3</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="279.47168" + y="39.683331" + id="text108"><tspan + sodipodi:role="line" + id="tspan106" + x="279.47168" + y="39.683331" + style="stroke-width:0.264583">3.3.3.1</tspan></text> + <text + id="text120" + y="60.850002" + x="279.47168" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="60.850002" + x="279.47168" + id="tspan118" + sodipodi:role="line">3.3.3.1</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="279.47168" + y="82.016663" + id="text124"><tspan + sodipodi:role="line" + id="tspan122" + x="279.47168" + y="82.016663" + style="stroke-width:0.264583">3.3.3.1</tspan></text> + <text + id="text128" + y="23.808331" + x="4.3049636" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="23.808331" + x="4.3049636" + id="tspan126" + sodipodi:role="line">4.4.4.1</tspan></text> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#DotS);marker-end:url(#DotS)" + d="m 61.682973,120.0909 28.124925,5.2841" + id="path953" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1275" + d="m 61.682973,141.25757 28.124925,-5.29923" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1279);marker-end:url(#marker1289)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1365);marker-end:url(#marker1375)" + d="M 61.682973,162.42424 89.807898,146.54168" + id="path1361" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1539" + d="m 275.99939,114.7992 -28.12494,10.57577" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1567);marker-end:url(#marker1597)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1557);marker-end:url(#marker1587)" + d="m 275.99939,135.96587 -28.12494,-0.008" + id="path1541" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1543" + d="M 275.99939,157.13254 247.87445,146.54165" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1547);marker-end:url(#marker1577)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1825);marker-end:url(#marker1855)" + d="M 275.99939,35.424189 247.87445,45.999953" + id="path1797" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1799" + d="m 275.99939,56.590847 -28.12494,-0.008" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1815);marker-end:url(#marker1845)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1805);marker-end:url(#marker1835)" + d="M 275.99939,77.757505 247.87445,67.166621" + id="path1801" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path2127" + d="M 59.823696,19.34211 90.865827,54.593572" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2131);marker-end:url(#marker2141)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2389);marker-end:url(#marker2399)" + d="M 211.83154,55.562508 H 126.75513" + id="path2385" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path2675" + d="M 211.83154,134.9375 H 126.75513" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2679);marker-end:url(#marker2689)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2989);marker-end:url(#marker2999)" + d="M 124.35414,124.51902 214.31247,65.90098" + id="path2985" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path3327" + d="M 230.18755,119.22735 V 71.192647" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3331);marker-end:url(#marker3341)" /> + <rect + y="95.66394" + x="8.3585291" + height="14.276128" + width="7.4895067" + id="rect3677-1" + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" /> + <rect + y="95.66394" + x="62.333508" + height="14.276128" + width="7.4895067" + id="rect4325" + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" /> + <rect + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" + id="rect4315" + width="7.4895067" + height="14.276128" + x="17.354374" + y="95.66394" /> + <rect + y="95.66394" + x="26.350214" + height="14.276128" + width="7.4895067" + id="rect4317" + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" /> + <rect + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" + id="rect4319" + width="7.4895067" + height="14.276128" + x="35.346024" + y="95.66394" /> + <rect + y="95.66394" + x="44.341862" + height="14.276128" + width="7.4895067" + id="rect4321" + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" /> + <rect + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" + id="rect4323" + width="7.4895067" + height="14.276128" + x="53.337696" + y="95.66394" /> + <text + id="text3675" + y="107.41964" + x="8.2714653" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:1.32292px;word-spacing:0px;fill:#000000;stroke-width:0.264583;" + xml:space="preserve"><tspan + style="font-weight:bold;fill:#000000;stroke-width:0.264583;" + y="107.41964" + x="8.2714653" + id="tspan3673" + sodipodi:role="line">BONJOUR</tspan></text> + <rect + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" + id="rect7800" + width="7.4895067" + height="14.276128" + x="272.94193" + y="5.7056127" /> + <rect + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" + id="rect7802" + width="7.4895067" + height="14.276128" + x="326.91678" + y="5.7056127" /> + <rect + y="5.7056127" + x="281.93777" + height="14.276128" + width="7.4895067" + id="rect7804" + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" /> + <rect + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" + id="rect7806" + width="7.4895067" + height="14.276128" + x="290.93359" + y="5.7056127" /> + <rect + y="5.7056127" + x="299.92935" + height="14.276128" + width="7.4895067" + id="rect7808" + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" /> + <rect + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" + id="rect7810" + width="7.4895067" + height="14.276128" + x="308.9252" + y="5.7056127" /> + <rect + y="5.7056127" + x="317.92102" + height="14.276128" + width="7.4895067" + id="rect7812" + style="fill:#ef2929;stroke:#cc0000;stroke-width:0.613376;paint-order:fill markers stroke" /> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:1.32292px;word-spacing:0px;fill:#000000;stroke-width:0.264583" + x="272.85486" + y="17.461329" + id="text7816"><tspan + sodipodi:role="line" + id="tspan7814" + x="272.85486" + y="17.461329" + style="font-weight:bold;fill:#000000;stroke-width:0.264583">OBJOUUR</tspan></text> + <path + id="path7818" + d="m 60.827202,109.94007 c 38.741376,31.37756 88.822408,49.7306 65.927928,24.99743 -22.89448,-24.73317 -61.175392,20.50448 -23.68938,24.68039 37.48601,4.17591 116.93753,-96.617673 86.49334,-90.886592 -30.44418,5.731084 -53.03506,38.098382 -26.02815,40.209862 27.00691,2.11148 87.68808,-54.727234 71.68034,-61.363222 -16.00774,-6.635988 -41.73575,-7.645569 -23.37974,7.984569 18.35601,15.630139 61.11037,-35.580766 61.11037,-35.580766" + style="fill:none;stroke:#ef2929;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;marker-end:url(#Arrow1Send)" /> + </g> +</svg> diff --git a/internet/TCP-IP/illustrations/paquets.png b/internet/TCP-IP/illustrations/paquets.png Binary files differ. diff --git a/internet/TCP-IP/illustrations/paquets.svg b/internet/TCP-IP/illustrations/paquets.svg @@ -0,0 +1,753 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + inkscape:export-ydpi="96" + inkscape:export-xdpi="96" + inkscape:export-filename="/home/lvilleve/doc/lycee/production/SNT/internet/paquets.png" + sodipodi:docname="paquets.svg" + inkscape:version="1.0 (4035a4fb49, 2020-05-01)" + id="svg8" + version="1.1" + viewBox="0 0 338.66667 190.5" + height="720" + width="1280"> + <defs + id="defs2"> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker3341" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3339" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker3331" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path3329" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2999" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path2997" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2989" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path2987" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker2689" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2687" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker2679" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2677" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2399" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path2397" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker2389" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path2387" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker2141" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2139" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker2131" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path2129" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1855" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1853" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1845" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1843" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1835" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1833" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1825" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1823" /> + </marker> + <marker + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1815" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1813" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker1805" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1803" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1597" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1595" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1587" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1585" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1577" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1575" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1567" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1565" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1557" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1555" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1547" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1545" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1375" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1373" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker1365" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1363" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1289" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1287" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="DotS" + orient="auto" + refY="0.0" + refX="0.0" + id="marker1279" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path1277" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.2) translate(7.4, 1)" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="DotS" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="scale(0.2) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1022" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="DotM" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="DotM"> + <path + transform="scale(0.4) translate(7.4, 1)" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M -2.5,-1.0 C -2.5,1.7600000 -4.7400000,4.0 -7.5,4.0 C -10.260000,4.0 -12.5,1.7600000 -12.5,-1.0 C -12.5,-3.7600000 -10.260000,-6.0 -7.5,-6.0 C -4.7400000,-6.0 -2.5,-3.7600000 -2.5,-1.0 z " + id="path1019" /> + </marker> + </defs> + <sodipodi:namedview + inkscape:window-maximized="1" + inkscape:window-y="-1" + inkscape:window-x="-1" + inkscape:window-height="1078" + inkscape:window-width="1918" + units="px" + showgrid="false" + inkscape:document-rotation="0" + inkscape:current-layer="layer1" + inkscape:document-units="mm" + inkscape:cy="455.60142" + inkscape:cx="621.93642" + inkscape:zoom="0.63043956" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" /> + <metadata + id="metadata5"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title></dc:title> + </cc:Work> + </rdf:RDF> + </metadata> + <g + id="layer1" + inkscape:groupmode="layer" + inkscape:label="Calque 1"> + <rect + rx="10.808706" + ry="10.808706" + y="113.04089" + x="85.958046" + height="43.793213" + width="45.042149" + id="rect10" + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" /> + <rect + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" + id="rect12" + width="45.042149" + height="43.793213" + x="207.66644" + y="113.04089" + ry="10.808706" + rx="10.808706" /> + <rect + rx="10.808706" + ry="10.808706" + y="33.665901" + x="207.66644" + height="43.793213" + width="45.042149" + id="rect14" + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" /> + <rect + style="fill:#d3d7cf;stroke:#000000;stroke-width:1;paint-order:fill markers stroke" + id="rect16" + width="45.042149" + height="43.793213" + x="85.958061" + y="33.665901" + ry="10.808706" + rx="10.808706" /> + <text + id="text30" + y="169.30852" + x="108.52254" + style="font-size:12.7px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583" + xml:space="preserve"><tspan + id="tspan32" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + y="169.30852" + x="108.52254" + sodipodi:role="line">Routeur</tspan><tspan + id="tspan36" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + y="185.18352" + x="108.52254" + sodipodi:role="line">de Cognac</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583" + x="108.2807" + y="12.675163" + id="text42"><tspan + sodipodi:role="line" + x="108.2807" + y="12.675163" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + id="tspan38">Routeur</tspan><tspan + sodipodi:role="line" + x="108.2807" + y="28.550163" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + id="tspan40">de Niort</tspan></text> + <text + id="text48" + y="12.675163" + x="230.14722" + style="font-size:12.7px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583" + xml:space="preserve"><tspan + id="tspan44" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + y="12.675163" + x="230.14722" + sodipodi:role="line">Routeur</tspan><tspan + id="tspan46" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + y="28.550163" + x="230.14722" + sodipodi:role="line">de Poitiers</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:sans-serif;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;stroke-width:0.264583" + x="230.17511" + y="169.30852" + id="text54"><tspan + sodipodi:role="line" + x="230.17511" + y="169.30852" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + id="tspan50">Routeur</tspan><tspan + sodipodi:role="line" + x="230.17511" + y="185.18352" + style="font-size:12.7px;text-align:center;text-anchor:middle;stroke-width:0.264583" + id="tspan52">d'Angoulême</tspan></text> + <text + id="text76" + y="124.34998" + x="4.3049607" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="124.34998" + x="4.3049607" + id="tspan74" + sodipodi:role="line">1.1.1.1</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="4.3049607" + y="145.51666" + id="text80"><tspan + sodipodi:role="line" + id="tspan78" + x="4.3049607" + y="145.51666" + style="stroke-width:0.264583">1.1.1.2</tspan></text> + <text + id="text84" + y="166.68335" + x="4.3049607" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="166.68335" + x="4.3049607" + id="tspan82" + sodipodi:role="line">1.1.1.3</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="279.47168" + y="119.05831" + id="text88"><tspan + sodipodi:role="line" + id="tspan86" + x="279.47168" + y="119.05831" + style="stroke-width:0.264583">2.2.2.1</tspan></text> + <text + id="text100" + y="140.22499" + x="279.47168" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="140.22499" + x="279.47168" + id="tspan98" + sodipodi:role="line">2.2.2.2</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="279.47168" + y="161.39168" + id="text104"><tspan + sodipodi:role="line" + id="tspan102" + x="279.47168" + y="161.39168" + style="stroke-width:0.264583">2.2.2.3</tspan></text> + <text + id="text108" + y="39.683331" + x="279.47168" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="39.683331" + x="279.47168" + id="tspan106" + sodipodi:role="line">3.3.3.1</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="279.47168" + y="60.850002" + id="text120"><tspan + sodipodi:role="line" + id="tspan118" + x="279.47168" + y="60.850002" + style="stroke-width:0.264583">3.3.3.1</tspan></text> + <text + id="text124" + y="82.016663" + x="279.47168" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + xml:space="preserve"><tspan + style="stroke-width:0.264583" + y="82.016663" + x="279.47168" + id="tspan122" + sodipodi:role="line">3.3.3.1</tspan></text> + <text + xml:space="preserve" + style="font-size:12.7px;line-height:1.25;font-family:'Source Code Pro';-inkscape-font-specification:'Source Code Pro';letter-spacing:0px;word-spacing:0px;stroke-width:0.264583" + x="4.3049636" + y="23.808331" + id="text128"><tspan + sodipodi:role="line" + id="tspan126" + x="4.3049636" + y="23.808331" + style="stroke-width:0.264583">4.4.4.1</tspan></text> + <path + sodipodi:nodetypes="cc" + id="path953" + d="m 61.682973,120.0909 28.124925,5.2841" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#DotS);marker-end:url(#DotS)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1279);marker-end:url(#marker1289)" + d="m 61.682973,141.25757 28.124925,-5.29923" + id="path1275" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1361" + d="M 61.682973,162.42424 89.807898,146.54168" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1365);marker-end:url(#marker1375)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1567);marker-end:url(#marker1597)" + d="m 275.99939,114.7992 -28.12494,10.57577" + id="path1539" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1541" + d="m 275.99939,135.96587 -28.12494,-0.008" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1557);marker-end:url(#marker1587)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1547);marker-end:url(#marker1577)" + d="M 275.99939,157.13254 247.87445,146.54165" + id="path1543" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1797" + d="M 275.99939,35.424189 247.87445,45.999953" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1825);marker-end:url(#marker1855)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1815);marker-end:url(#marker1845)" + d="m 275.99939,56.590847 -28.12494,-0.008" + id="path1799" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path1801" + d="M 275.99939,77.757505 247.87445,67.166621" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker1805);marker-end:url(#marker1835)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2131);marker-end:url(#marker2141)" + d="M 59.823696,19.34211 90.865827,54.593572" + id="path2127" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path2385" + d="M 211.83154,55.562508 H 126.75513" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2389);marker-end:url(#marker2399)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2679);marker-end:url(#marker2689)" + d="M 211.83154,134.9375 H 126.75513" + id="path2675" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path2985" + d="M 124.35414,124.51902 214.31247,65.90098" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker2989);marker-end:url(#marker2999)" /> + <path + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#marker3331);marker-end:url(#marker3341)" + d="M 230.18755,119.22735 V 71.192647" + id="path3327" + sodipodi:nodetypes="cc" /> + </g> +</svg> diff --git a/internet/TCP-IP/tableau-TCP-IP.odt b/internet/TCP-IP/tableau-TCP-IP.odt Binary files differ. diff --git a/internet/TCP-IP/tableau-TCP-IP.pdf b/internet/TCP-IP/tableau-TCP-IP.pdf Binary files differ.